I'm using SOAP api for allegro.pl (polish alternative for ebay.com) and I've a litte problem with sending images through SOAP. I was asking the same question at official forum but unfortunately no-one has replied.
Anyway, working (piece of) code…
I am trying to call a web service using Savon.
The request I am trying to generate is this (this is a valid request that is working, generated with wizdler):
…
I tried to use the SOAP service using savon v2.0.3 and its throwing error which I am not able to debug.
I have the following code
client = Savon.client(wsdl: $APP_CONFIG["billing_url"])
response = client.call({{method_name_in_symbolic_form}},…
I am currently trying to add an atribute to one of the xml elements I am generating for the SOAP request I am making.
I see savon has an attributes hash, but that only adds attributes to the soap message tag. Is there an equivalent feature that I…
I've inherited some Ruby on Rails code and am trying to get it up and running locally. I've seen it work on other people's machines but for me it is throwing an exception. The exception is Savon::UnknownOptionError in DevicesController#index.
What…
Both SOAP and WS-I compatibility are new to me. I have looked around and like the docs at savonrb.com. Is Savon WS-I compatible? Is there a better library that I should be using? Please, keep in mind good documentation is key since I will be doing…
Well I'm using Savon to consume a wash_out SOAP server.
Everything seems all right because I can send my SOAP messages and the server can save them into a mysql database.
My problem comes after my client send the request because I'm receiving an…
I am trying to perform SOAP request called DoProduct. This method is updating specific product. I looked through WSDL (http://api.istore.pl/#op.idp182160) and found out that I need one Product object and session key.
Everything working perfectly…
I am using Savon for connecting web services
client = Savon::Client.new("https://nsd-preview.nimsoftondemand.com/servicedesk/webservices/ServiceRequest?wsdl")
client.http.auth.ssl.verify_mode = :none
client.wsdl.soap_actions
throws error like
W,…
I've encountered a strange problem. I'm using Savon to connect to Yodlee's API but when trying to initiate the client object I get:
HTTPI::SSLError: SSL_connect SYSCALL returned=5 errno=0 state=unknown state
I've already tried stuff like…
I am a newbie for SAVON and ruby this is my first assignment from my client. So any help is greatly appreciated.
The base used for all events. All events extend this…
I have a SOAP web service created with washout that has an action with a parameter of type base64Binary(Which I assume is the equivalent of byte[] in C#).
I'm sending the following variable to my web service parameter:
file_data =…