I'm trying to communicate with a soap service and I know that I should send a SOAP Envelope like this:
POST /webpay_test/SveaWebPay.asmx HTTP/1.1
Host: webservices.sveaekonomi.se
Content-Type: text/xml; charset=utf-8
Content-Length:…
I'm attempting to modify one of the namespaces in my Savon SOAP call. Here is how my request looks:
HTTPI GET request to www.intg.pathway.verosapps.com (excon)
SOAP request: https://www.intg.pathway.verosapps.com/VerosPathway.svc
SOAPAction:…
I'm trying to consume a web service with a certificate, sending a XML/SOAP, via SSL with mutual authentication. I've tried savon and net/http, but I'm stopped with the same error:
SSL_CTX_use_PrivateKey: key values mismatch…
I'm working on a SOAP API which has two operations, and each operation requires API keys and bunch of other attributes. So, I've been able to make request via SOAPUI, but I'm having trouble translating that into ruby code using savon gem(Version…
Is it possible to make Savon allow redirects? I am currently receiving a 302 HTTP Error, but in reality this should just be a redirect instead of an error.
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 SOAP service, the "Authorization" header needs to be…
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 at line
newclient.http.auth.ntlm(username,…
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 VPN (no SSL for SOAP).
I need to store the password…
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 redirect its clients to other URLs. Is there a way I…
I'm trying to parse XML in Ruby using Nori, which internally uses Nokogiri.
The XML has some tags repeated and the library parses repeated tags as Arrays and non-repeated tags as normal elements (Hash)
a
…
I need to connect to a web service that has wsse security and need to generate all the hashes and tokens by hand because savon doesn't have this functionality yet.
The thing that drives me insane is the signature.
…
I am using this code for my rails app with the API of Magento. Everything is fine except for one thing, i need filter the products by arguments of the Magento API but i don't know how :(
Obviously i have tested with more solutions (array, hash,…
This is how I am creating a a client:
@client = Savon::Client.new do
wsdl.document = my_document
wsdl.endpoint = my_endpoint
end
and this is how I'm getting a response:
@response = @client.request :the_action do
soap.body = xml
soap.body =…
I'm using Savon for a Web Service Client implementation.
However, I get this message:
(a:ActionNotSupported) The message
with Action 'SearchCars' cannot be
processed at the receiver, due to a
ContractFilter mismatch at the
…
I need to make a decision between using Ruby vs. Java for SOAP integration. My entire web application is built on Ruby on Rails, and there is a significant back-end component that has to integrate with legacy systems using SOAP.
Java has extensive…