I have a rails application in development that is taking a submitted form, sending it via a SOAP call using the SAVON gem, and is then receiving back an error message.
My question is: how do I pass that returned error message received in the model…
i try this comand on rails console:
client = Savon.client("http://www.webservicex.net/uszip.asmx?WSDL")
but this erros appears:
TypeError: can't convert String into Hash
and i already have add 'savon' gem to my gemfile and the version of savon is…
I upgraded to Savon v2.0.2 from 1.1.0 and it broke my app. I made the necessary adjustments to the code to account for the changes in the Error callbacks (Savon::SOAP::Fault to Savon::SOAPFault, Savon::HTTP::Error to Savon::HTTPError, etc) and…
I'm trying to use this Ruby wrapper https://github.com/mattetti/Pvwatts but I have an issue with my controller app/controllers/projects_controller.rb (relevant excerpts)
require 'rubygems'
require 'savon'
class ProjectsController <…
I am trying to configure my rails app to talk to a soap webservice using this code:
client = Savon::Client.new do
wsdl.document = "http://services.carsolize.com/BookingServices/dynamicdataservice.svc?wsdl"
end
response = client.request…
I am trying to establish a connection using the ruby gems Savon and execute SOAP requests and responses. The thing is that I am getting the file each time by doing this:
client = Savon.client("http://www.webservicex.net/uszip.asmx?WSDL")
Now in the…
I always use SoapUI before moving on with Savon to see if my URL is correct. Now this time I was given a URL that (probably from a project developed and hosted on a Windows machine), let's say it is this…
I am trying to establish a connection using the SOAP gem, called Savon. I can't make sense from the documentation on the website, I have this URL: "https://www.example.com/loginWeb/rvu.aspx", and this credentials username: "user", password:…
i've successfully used savon with a site that has wsdl but now i have a site that only supplies the xsd so i can't execute
client = Savon.client("http://service.example.com?wsdl")
Can savon import and use for data extraction? I think there would be…
the below code, generates the following xml.
as you may see the the smaller/greater signs are not showing as '<' or '>' and the server is not happy about this.
any hint/suggestions are appreciated.
Thanks!
…
I'm currently trying to build a provisioning service of a kind for a local instance of Open-Xchange, using Rails 2.3.8, Savon and OX's SOAP API.
Via the console, I can issue the following commands that will work;
>> client =…
Having a hard time getting up and running with rails (3.1) app on private vps (Ubuntu 10.04.4 LTS).
Getting error below when using savon to call a soap service
OpenSSL::SSL::SSLError (SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello…