Open jheintz opened 12 years ago
Reference to secure auth and cookies See http://easyerl.blogspot.com/2008/10/secure-cookies-for-your-web-application.html for overview for overview and http://www.cse.msu.edu/~alexliu/publications/Cookie/cookie.pdf for details
(Rails uses this strategy for "remember me")
We need to offer a non-multipart send. (for POST/PUT).
We currently have these post() signatures:
I suggest adding the following as well:
I anticipate the complexity will be in handling parameters (encoding and content type issues).
See for example this code, particularly the reset multipart data calls: https://github.com/sonatype/async-http-client/blob/master/api/src/main/java/com/ning/http/client/RequestBuilderBase.java#L479