We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I found the line, to fix it in, it's on lib/savon/wsdl_stream.rb line 35 @section = nil unless @namespaces[namespace] == "http://schemas.xmlsoap.org/wsdl/soap/" replace that line with @section = nil unless @namespaces[namespace].start_with? "http://schemas.xmlsoap.org/wsdl/soap"
that will allow the namespace to be "http://schemas.xmlsoap.org/wsdl/soap12/"
The text was updated successfully, but these errors were encountered:
start_with? is a rails extension. i replaced it with a regex: http://github.com/rubiii/savon/commit/48046ed22e8212ecb689c43ec6aa94570027a413
this fix will be included in the next release.
Sorry, something went wrong.
released version 0.7.5 including a fix for this problem.
fix for issue savonrb#34 (soap_actions returns empty for wsdl12)
48046ed
added note about issue savonrb#34
9e18596
No branches or pull requests
I found the line, to fix it in, it's on
lib/savon/wsdl_stream.rb line 35
@section = nil unless @namespaces[namespace] == "http://schemas.xmlsoap.org/wsdl/soap/"
replace that line with
@section = nil unless @namespaces[namespace].start_with? "http://schemas.xmlsoap.org/wsdl/soap"
that will allow the namespace to be "http://schemas.xmlsoap.org/wsdl/soap12/"
The text was updated successfully, but these errors were encountered: