Heavy metal SOAP client

learn more… | top users | synonyms

0
votes
1answer
15 views

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: <?xml version="1.0" encoding="utf-8"?> ...
0
votes
0answers
9 views

Savon sslv3 alert handshake failure even after ssl_verify_mode :none

I am trying to make a soap call using Savon in ruby and it fails with error "Conn close because of connect error SSL_connect returned=1 errno=0 state=SSLv3 read finished A: sslv3 alert handshake ...
0
votes
0answers
11 views

SAVON to create a new record through SOAP API

I am using Savon to interact with SOAP API. I have used version 2 and its working fine with operations which will fetch data and display in the rails view. Now I was supposed to provide, create and ...
0
votes
1answer
24 views

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 ...
0
votes
1answer
32 views

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 ...
0
votes
0answers
24 views

Adding attributes to Savon (2.2.0) SOAP Headers

I am working against a WSDL service that only seems to return if there is an xmlns attribute set in one of the authentication tags sent in the headers. I am using Savon 2.2.0 and the following will ...
0
votes
1answer
31 views

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 ...
0
votes
1answer
85 views

Issue Sending SOAP requests with Savon gem in ruby

I am using the Savon gem to communicate to a soap api from a tax company called vertex. The api endpoints can be found here https://sandbox.ondemand.vertexinc.com/vertex-ws/listVertexServices.jsp. I ...
0
votes
0answers
12 views

Does SAVON support client side certificates authentication

I'm evaluating savon for consuming webservices... but I dont find any information if I can use a SSL client side certificate to authenticate against the server that provides the SOAP webservices. I ...
0
votes
0answers
22 views
0
votes
0answers
59 views

Connection Issues with savon gem and SSL

I am using the savon gem to try and connect to a soap api. I have a class method that does the below: def self.echo client = Savon.client( :open_timeout => 50, ...
0
votes
0answers
29 views

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 ...
0
votes
0answers
37 views

Rails Savon and Fiber

I am using Savon gem to call soap API and this is my code : bids = BidsPackage.find(params[:packageid]) fiber = Fiber.new { client = Savon.client(wsdl: ...
0
votes
1answer
115 views

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 ...
0
votes
1answer
121 views

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 = ...
0
votes
1answer
150 views

RoR: Error when connecting affilinet web services (logon function) using savon (ruby on rails) -> Deserialization Failed

I try to logon at the affilinet web services via the provided logon function. I'm working in a Rails 3 environment (3.0.x). I utilize the ruby on rails gem Savon in version 2 which in turn uses soap ...
1
vote
0answers
132 views

Savon 2.1.0 basic auth not functioning

I am trying to access a SOAP service which has the following charateristics: 1. WSDL is available without authentication 2. The service is accessible over https with basic_auth 3. According to the ...
2
votes
0answers
35 views

Requests through another machine

Is it possible to make requests for example with Savon through sth. like ssh-tunnel. I can run this stuff from my stage server which IP is whitelisted in the service I'm sending requests to. But ...
0
votes
1answer
142 views

Cucumber / Savon omit or remove logging output

While running a cucumber test I am getting (in addition to the test results) a lot of debug/log related output in the form: D, [2013-03-06T12:21:38.911829 #49031] DEBUG -- : SOAP request: D, ...
1
vote
1answer
102 views

Undefined strip for Hash with custom headers on Savon 2.1.0

I'm having an exception when trying to build custom headers with Savon 2.1.0 for Authentication, here is the sample code to reproduce the issue, I'll appreciate any help on this subject. require ...
0
votes
0answers
56 views

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 ...
0
votes
1answer
49 views

Ruby gem that supports wsHttpBinding?

Is there a ruby gem that supports wsHttpBinding? I have checked the latest Savon but I'm not sure how to check if the support exists.
-2
votes
1answer
50 views

access variables in array?

I have a Savon SOAP session where I get a response that is converted to an array. Part of this response is then stored in an variable package containing a hash like this; { ...
0
votes
1answer
116 views

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. <complexType name="CEvent"> <annotation> <documentation>The base ...
0
votes
1answer
123 views

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 ...
-3
votes
1answer
86 views

How can I use SOAP (Savon) in Ruby? - Moving from PHP [closed]

I need to do this in Ruby: $client = new SoapClient(null, array('location' => 'https://mydomain.com/index.php', 'uri' => 'https://mydomain.com/', ...
0
votes
1answer
135 views

How do I correctly call Magento SOAP API with Ruby Savon for Category Product Links?

I am trying to call the catalog_product_link.list API method using Savon. However, I keep receiving the error Error cannot find parameter. Here is what I am using, though I have tried several ...
0
votes
1answer
49 views

Passing Rails SOAP response error from model back to controller

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 ...
2
votes
1answer
182 views

Rails - Savon set multiple namespaces

I'm using savon version 2 (with Ruby on Rails )to invoke a webservice and i need to inject some additional namespaces to my Envelope. Something like: <soapenv:Envelope ...
0
votes
0answers
129 views

Ruby/Savon SOAP request double-escapes spaces in URL

I'm trying to send a SOAP request using ruby/Savon to the following URL: http://msc-app02.sccny0.local:10201/CSI SNG API/ApiService.asmx?WSDL Using that url directly in the Savon::Client call fails ...
1
vote
1answer
110 views

Force rebuild the SOAP-Header after authenticating

My SOAP-Server expects every request to have a valid token in the soap-header to authenticate the soap-client. This token is only valid for a certain period of time, so I have to expect it to be ...
0
votes
2answers
72 views

Savon is not logging it's output to production.log, even with logging enabled and set to :info

I have all three environments (test, development, production) displaying log output at the :info level, through config.log_level = :info in their respective .rb files. When I start my local Rails ...
0
votes
1answer
66 views

Rails console error - savon gem

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 ...
2
votes
2answers
628 views

Savon breaks out of the box with “TypeError: can't convert String into Hash”

I just installed Savon 2.0.2 on Rails 3.2.11. When I try to create a new client in the console, I get TypeError: can't convert String into Hash: 1.9.3-p362 :003 > client = ...
1
vote
1answer
139 views

Constructing this SOAP header properly?

I'm attempting to build a proper SOAP header: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sen="https://webservices.averittexpress.com/SendWebImageService"> ...
0
votes
0answers
90 views

Perform authentication to Polarion webservice with Savon

I am attempting to follow the discussion here using Ruby and Savon. I am able to retrieve a session ID, but whenever I perform a request from the clients that require authentication (tracker), I ...
0
votes
1answer
202 views

Ruby on Rails 3.2.11 Savon v2.0.2 breaks my app

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, ...
2
votes
1answer
164 views

How to use certificates in savon 2.0.2

I recently update on savon 2.0.2 and I'm using it for sending some xml via soap. I have to use certificates but after updating the syntax of the new savon version the certificates are ignored. Could ...
0
votes
0answers
70 views

How to use SSL in SAVON

I want to consume the SOAP apis using SSL in the SAVON gem, but I am facing the below error while trying to access the soap services. client = Savon.client(wsdl: "https://xxx?WSDL") ...
0
votes
1answer
113 views

How to resolve UnExpected Subelement

I'm trying to call a simple operation with Savon, but it keeps throwing Savon::SOAPFault ((soapenv:Server) org.apache.axis2.databinding.ADBException: Unexpected subelement OperationRequest): Here's ...
2
votes
0answers
121 views

NTLM support for Savon

I'm using Savon to communicate with SharePoint using web services. Everything is working fine if SharePoint web application supports basic authentication, but if I change it to NTLM it fails. It fails ...
2
votes
1answer
216 views

ruby-savon communicate with mono-wcf

i am new to mono wcf, and i came across some problems about my code. recent, i use ruby-savon to get data from wcf host on mono. and this is my ruby code: client = Savon::Client.new do ...
4
votes
1answer
1k views

undefined method `configure' for Savon:Module

I'm getting the above error in a gem with this code snippet Savon.configure do |config| config.log = false config.log_level = :error HTTPI.log = false end This code used to pass in past runs ...
0
votes
0answers
138 views

undefined method `strip_namespaces?' for Nori:Class in Savon

I am getting an error on connecting savon with wsdl: undefined method `strip_namespaces?' for Nori:Class My code is: require "rubygems" require "savon" client = ...
1
vote
1answer
133 views

Savon - SOAP - ruby - 400 Bad Request

I'm trying to use Savon to make a SOAP request with Ruby, but I'm receiving a 400 Bad Request response from the server. This is the request I'm trying to make (according to soapUI): ...
3
votes
2answers
291 views

Best practice to store web service password

Scenario: A web application (RoR 3.2) needs to talk with a remote web service (SOAP, using Savon gem). The web service requires username and password. Communication is SOAP, traffic is through a ...
0
votes
0answers
38 views

ShopWindow SOAP Issues in Ruby

I am trying to use the WSDL services for the ShopWindow API: http://wiki.affiliatewindow.com/index.php/ProductServe_API This is my first foray into dealing with SOAP and WSDL and I am not having much ...
1
vote
1answer
290 views

Ruby Savon set SOAP header element

I am trying to add an API Key element to a SOAP header using Savon, but am fighting a losing battle. I am fairly new to Ruby and the little I do know is self taught. According their API docs this is ...
2
votes
1answer
112 views

Can the Ruby HTTPI library be configured to follow redirects?

I am using the Savon library which in turn uses HTTPI, but HTTPI considers only HTTP status codes 200..299 as successful. Unfortunately, the SOAP server I am connecting to uses HTTP 302 Found to ...
0
votes
2answers
441 views

NameError (uninitialized constant Savon::Request)

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 ...

1 2 3 4 5