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've done the following:
sudo gem update rails sudo gem install savon rails dummy cd dummy script/console
On the console I tried the following:
require 'savon' client = Savon::Client.new('http://demo.sympa.org/sympa/wsdl') response = client.login{|soap| soap.body = {'email'=>'my@mail.com', 'pwd' => 'my_password'}}
I got the following error:
Retrieving WSDL from: http://demo.sympa.org/sympa/wsdl NoMethodError: undefined method `ssl?' for #<URI::Generic:0xa6e74a4 URL:> from /usr/local/lib/ruby/gems/1.8/gems/savon-0.7.2/lib/savon/request.rb:91:in `soap' from /usr/local/lib/ruby/gems/1.8/gems/savon-0.7.2/lib/savon/client.rb:36:in `method_missing'
The text was updated successfully, but these errors were encountered:
hey man,
thanks for letting me know about this issue. i added a patch for your problem to the current dev branch. the commit: http://github.com/rubiii/savon/commit/79104caf49b7742ffce653507831d462f81aa9c4
going to release a new version (including this patch) next weekend.
Sorry, something went wrong.
released version 0.7.3 including a patch for this issue.
fix for issue savonrb#28 (ssl? undefined on URI::Generic)
79104ca
No branches or pull requests
I've done the following:
On the console I tried the following:
I got the following error:
The text was updated successfully, but these errors were encountered: