-
Notifications
You must be signed in to change notification settings - Fork 615
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
URI-reference is not quoted in Soapaction HTTP header #80
Comments
I also found this issue, I'm using savon with a ws published by JDK6, when calling the JDK6's ws using savon, it reports warning: com.sun.xml.internal.ws.transport.http.HttpAdapter fixQuotesAroundSoapAction |
shouldn't the http header be handled by the http client? this looks like a simple problem to solve, but i would appreciate if you guys could point me in the right direction. please note, that v0.8.0 uses the httpi gem. |
Most HTTP headers aren't required to be quoted - the requirement is specific to the SOAPAction header. You'll need to include the quotes in the value you give to your HTTPI::Request. |
thanks! let me check if this works with both HTTPClient and Curb. |
hope this commit fixes your problem: |
please try savon 0.8.0.beta.1 |
released v0.8.0 which should solve this problem. |
Per section 6.1.1 of the SOAP 1.1 spec, the SOAPAction HTTP header must have double quotes surrounding the URI-reference (if present).
The text was updated successfully, but these errors were encountered: