-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expect 100-continue does not appear to work #675
Comments
Yup, this is very broken. |
zack-shoylev
added a commit
to rackspace/jclouds
that referenced
this issue
Oct 13, 2016
…est that requires re-athentication because of java protocol code JCLOUDS-1179 This fix also addresses the same problem with other providers No currently working tests because of square/okhttp#675 This is a common problem in other tools as well https://curl.haxx.se/mail/lib-2004-08/0002.html
ghost
pushed a commit
to jclouds/jclouds
that referenced
this issue
Oct 13, 2016
…est that requires re-athentication because of java protocol code JCLOUDS-1179 This fix also addresses the same problem with other providers No currently working tests because of square/okhttp#675 This is a common problem in other tools as well https://curl.haxx.se/mail/lib-2004-08/0002.html
I started looking into this. Seems relatively straightforward. We need to add some special support in HTTP/2, since the |
swankjesse
pushed a commit
that referenced
this issue
Dec 23, 2016
This will stall reading the response body until the server returns an intermediate '100 Continue' response. Closes: #675
swankjesse
pushed a commit
that referenced
this issue
Dec 24, 2016
This will stall reading the response body until the server returns an intermediate '100 Continue' response. Closes: #675
swankjesse
pushed a commit
that referenced
this issue
Dec 27, 2016
This will stall reading the response body until the server returns an intermediate '100 Continue' response. Closes: #675
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This maybe my misunderstanding of HttpURLConnection API or HTTP protocol itself, but I can't get okhttp do Expect 100-continue handshake as described in rfc [1]. Identical code using standard HttpURLConnection implementation appears to work. [2] has is an example that shows both okhttp and jdk tests I did
[1] http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html
[2] https://github.com/ifedorenko/bug430772/blob/master/src/test/java/bug430772/Expect100ContinueTest.java
The text was updated successfully, but these errors were encountered: