Questions tagged [savon]

Savon is a SOAP client for the Ruby programming language.

Savon is a SOAP client for the Ruby community.

508 questions
0
votes
1 answer

Sending base64binary (image) via SOAP with ruby / savon

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…
mswiszcz
  • 980
  • 1
  • 8
  • 26
0
votes
1 answer

How to call a SOAP Web Service using Ruby Savon?

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):
Boris Lopez
  • 516
  • 8
  • 14
0
votes
1 answer

How to generate repeating xml elements in Savon?

soapUI generates this comment Zero or more repetitions in many places in the request XML that it builds. This is part of the XML request.
rohitmishra
  • 8,739
  • 7
  • 33
  • 34
0
votes
2 answers

Calling Webservice method

I have this method on a web service I'm consuming, using SAVON 3 on Rails 3 web app
OtavioLipari
  • 85
  • 1
  • 8
0
votes
2 answers

savon HTTPI POST EOFError: end of file reached

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}},…
Gagan
  • 4,278
  • 7
  • 46
  • 71
0
votes
1 answer

Read SOAP contents by given WSDL description

I've been given a service API of wsdl, I've never done it and not sure what I should do with it. The file is a description of what they gonna send us:
phil88530
  • 1,499
  • 3
  • 19
  • 27
0
votes
1 answer

Savon 2.1 adding attributes to message XML tags

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…
Julio G Medina
  • 692
  • 1
  • 7
  • 17
0
votes
1 answer

Issues using Savon in Ruby on Rails

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…
keybored
  • 5,194
  • 13
  • 45
  • 70
0
votes
1 answer

I am looking into how to create a SOAP client in ruby that is WS-I compatible. What should someone new to SOAP use?

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…
0
votes
0 answers

HTTP error (406): Ruby on Rails and Savon

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…
Uriel Hernández
  • 731
  • 3
  • 9
  • 23
0
votes
1 answer

SOAP request works on PHP but not working on Ruby (gem: Savon2)

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…
Arti
  • 407
  • 5
  • 15
0
votes
1 answer

Rails Savon Soap HTTP error (500)

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,…
murugesan
  • 31
  • 7
0
votes
1 answer

HTTPI::SSLError and Yodlee

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…
0
votes
1 answer

How to create a object to access a Complex type names in WSDL using savon

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…
0
votes
1 answer

Ruby SOAP data type base64Binary error

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 =…
James
  • 680
  • 2
  • 8
  • 22