Savon at Rubygems Savon at Github Official Documentation
5
votes
4answers
180 views
Why do instance variables seemingly disappear when inside a block?
Forgive me, guys. I am at best a novice when it comes to Ruby. I'm just curious to know the explanation for what seems like pretty odd behavior to me.
I'm using the Savon library to interact with a ...
4
votes
2answers
491 views
how to set savon default timeout value
I am using savon to make some api calls but its taking long time to respond because of that i am getting time out errors.so is there any way to change the default value of timeout. I am using savon ...
4
votes
3answers
3k views
Ruby Savon: `connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (OpenSSL::SSL::SSLError)
I'm having a terrible time getting SSL to verify a certificate. I'm completely ignorant on how certificates work so that's a major handicap to begin with. Here's the error I get when running the ...
4
votes
1answer
496 views
How to use objects with xsi:types in Savon
I'm trying to use Savon to make some SOAP requests, but I'm afraid I need to go beyond the basics somewhat.
I need to send something along the lines of:
<env:Body>
<wsdl:methodName>
...
3
votes
1answer
210 views
Ruby Savon binding problems
I am consuming webservices with Savon and the WSDL comes with 2 bindings. How do I specify which binding to use in Savon? One of them is http and the other one is https. I am trying to use the https ...
3
votes
1answer
279 views
Savon: How to change header from being <env:Header> to <soap:Header> or something different
In Savon, is there a way to change
<env:Header>
to be
<soap:Header>
or anything different?
I've tried in the request block putting an additional header tag like this:
...
3
votes
1answer
178 views
Savon fault response in SOAP Reques: “The message with Action 'x' cannot be processed at the receiver…”
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
...
3
votes
1answer
716 views
Savon SSL Issue
I'm struggling to get the Savon gem to connect to one of our servers. I keep getting an error stating I can't get past the ssl. I've read numerous tutorials and fixes but none seem to work.
Any ...
3
votes
1answer
277 views
Java vs Ruby for SOAP handling
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 ...
3
votes
2answers
553 views
View Savon Request XML without Sending to Server
I'm using the Savon gem to make a SOAP request using code similar to what's below. It's working, but I would like to view/capture the request XML without actually making a call to their server. I can ...
3
votes
4answers
4k views
Why is “wsdl” namespace interjected into action name when using savon for ruby soap communication?
I'm trying to access a SOAP service i don't control. One of the actions is called ProcessMessage. I follow example and generate a SOAP request, but I get an error back saying that the action doesn't ...
2
votes
3answers
56 views
How do I add an attribute to a SOAP header with Savon?
I need to add this attribute (xmlns:wsa="http://www.w3.org/2005/08/addressing") to the soap header, like this:
<env:Header xmlns:wsa="http://www.w3.org/2005/08/addressing">
</env:Header>
...
2
votes
1answer
58 views
Is there a SOAP gem that doesn't depend on nokogiri?
I have tried the savon gem and it works fine.
Unfortunately, I cannot use it for the actual application as we cannot use Nokogiri. I looked at soap4r and it seems to be very old. I also looked at ...
2
votes
0answers
194 views
Savon ruby gem adds ins0 to tags
Using the savon gem, I get the following request XML:
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...
2
votes
1answer
51 views
Losing xml data when parsing date and time in Savon
I'm using Savon in my RoR app.
This is my call to the service:
client = Savon::Client.new(MY_SOAP_CLIENT)
response = client.request :wsdl, :get_history do
soap.body = ...
2
votes
3answers
139 views
What is the difference between these two SOAP requests?
I am sending a request to a SOAP API and unfortunately my knowledge of SOAP is limited. The following two requests both return a response but the response differs. The not working example returns a ...
2
votes
1answer
148 views
How to specify BasicHttpBinding with Savon (RoR)
Im getting this error:
(a:6016) The message with Action 'xxx'
cannot be processed at the receiver,
due to a ContractFilter mismatch at
the EndpointDispatcher. This may be
because of either ...
2
votes
2answers
783 views
Parsing Savon SOAP response with multiRef
I am attempting to access a SOAP service using the Ruby gem Savon. I can connect to the service and make a request and receive the response, but I cannot parse the response.
The response contains ...
2
votes
3answers
969 views
“HTTPI tried to user the httpi adapter” error using Savon SOAP library
I am using Savon to write a Ruby interface to a SOAP service. It appears to be working, but I am getting a couple of DEBUG messages appearing on the command line
D, [2011-02-15T16:33:32.664620 ...
2
votes
0answers
613 views
Ruby 'savon_model' gem soap request - initial request is anonymous. Second authenticated request returns successful response but times out
I am just starting out in the ruby on rails world and have managed to get the below model to make a request and return a response. It uses the 'savon_model' gem which has 'savon', 'httpi' and ...
2
votes
1answer
889 views
Ruby Savon Gem change logging configuration
I've tried changing the logging on Savon when running it against a WSDL, but have been unsuccessful in changing the logging level.
I read the docs: ...
2
votes
1answer
1k views
Parsing SOAP response using SAVON response.to_hash conversion method
I am having trouble parsing a SOAP response.
Here is my code:
require 'rubygems'
require 'savon'
client = Savon::Client.new "http://1.2.3.4/xyz/abcd/fsds.wsdl"
res = client.query_unpaid_assesments ...
2
votes
2answers
828 views
Successfully calling a WCF Service from Ruby? Anyone?
I'm trying to integrate a rails application with a WCF service. I've tried soap4r and Savon with no love at all. As far as I can tell, none of the Ruby libraries support the newest version of SOAP.
...
2
votes
2answers
3k views
Talking with a SOAP service using Savon gem in Ruby
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: ...
1
vote
1answer
89 views
How to call this secure webservice WDSL from Savon in Ruby?
I have some working PHP example (see below) for accessing a secure webservice. I am trying to access the webservice with Savon. First, I tried:
>> client = ...
1
vote
1answer
73 views
API Call With Savon SOAP Client Results In ContractFilter mismatch at the EndpointDispatcher Error
I've run into an issue where the Savon Ruby Gem generates a SOAP API call that fails, however when I copy and paste the exact same XML message into SOAP-UI it succeeds.
I send this message:
<?xml ...
1
vote
1answer
58 views
Test local web service with Savon
I'm writing a gem to add support for SOAP services to Ruby (I hate myself for doing this but, you know, legacy systems are feeling lonely and gotta talk to someone), and I'm wondering if there's a way ...
1
vote
0answers
142 views
Filter products with API Magento in Ruby on Rails with Savon gem (SOAP)
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 ...
1
vote
0answers
53 views
Ruby Savon compared to Java Axis
I'm trying to use the Yodlee soap APIs. They give examples with Apache Axis
Any perspectives on using Ruby and Savon versus Java and Axis?
With Ruby/Savon, it seems that the best thing to do is to ...
1
vote
2answers
176 views
Ruby: Savon SOAP Requests receives 400 and 415 errors
I am trying to make a SOAP request using the ruby library Savon.
I am using the following code:
require "savon"
Savon.configure do |config|
config.soap_version = 2 # use SOAP 1.2
...
1
vote
1answer
85 views
Ruby Savon Requests
@rubiii has previously shown (Savon soap body problem) that you can customize Savon requests with
class SomeXML
def self.to_s
"<some>xml</some>"
end
end
client.request ...
1
vote
1answer
122 views
Send UTF-16 encoded SOAP request with Ruby and Savon
How do I encode the request in UTF-16? Here's what I have:
# Create Savon client
@client = Savon::Client.new do
wsdl.document = File.expand_path("account_list.wsdl", __FILE__)
end
# Set ...
1
vote
0answers
102 views
savon soap request execution expired
I have a very simple ruby script that looks like this:
require 'savon'
client = Savon::Client.new do
wsdl.document = "http://server/app/app.svc?wsdl"
end
If I then do something like:
...
1
vote
1answer
99 views
How do I get the SAVON (ROR) SOAP Header to match my C# service requirements?
I have some code on my C# webservice, that checks the header string contains a valid user.
The code is:
MessageHeaders headers = OperationContext.Current.IncomingMessageHeaders;
String soapHeader = ...
1
vote
1answer
103 views
Savon body problem
require "savon"
client = Savon::Client.new "http://www.brenda-enzymes.org/soap2/brenda.wsdl"
response = client.request (:get_km_value) do |soap|
soap.body = {'ecNumber' => '1.1.1.1'}
end
x = ...
1
vote
2answers
202 views
Cannot call web service methods via SOAP Connection (SAVON) in Ruby on Rails. Where am i going wrong?
I seem to be getting this error message:
(a:ActionNotSupported) The message with Action 'GetServices' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. ...
1
vote
0answers
44 views
Savon Issue Relating to Corrupt Requests
I updated my Savon version to 0.9.6 and my server requests seem to be malforming. Before the update, I was using Savon 0.9.2.
I have a similar problem as someone mentioned in the post below, ...
1
vote
1answer
75 views
Ruby: How to prefix Namespaces in hash
I am in a situation where I need to find out the level of the hash and apply a namespace for all elements in that level.
This is the scenario:
I have an object which is populated with my data.
...
1
vote
0answers
120 views
Savon SOAP: How to avoid 'soap:' prefix on request body tags?
Savon is currently producing tags like this:
<soap:orderid>R211758537</soap:orderid>
How do I get tags like this, without the soap prefix?
<orderid>R211758537</orderid>
...
1
vote
1answer
159 views
Savon: How can I specify a custom XML in a hash body for a SOAP request?
In a SOAP Request, I need to specify repeated keys with different values like this:
soap.body = {:query => {
:fields => {
:string => 'Email',
:string => 'FirstName',
...
1
vote
1answer
592 views
Can't get Savon to form the right XML
I've used SOAP before but many, many years ago and try to stay clear if I can help it.
Short story...
Using "Soap Client" OS X app I can get the response I wish.
If I use client.request ...
1
vote
0answers
91 views
Soap Action not parsed as expected
For some reason, if I try:
response = client.request 'Security_Authenticate' do
It doesn't work, the response returns any random fault message.
However, if I specify the SOAP Action URL:
response ...
1
vote
2answers
230 views
Case problem in SOAP message tag names using savon
I'm using Ruby 1.9.2 with savon 0.9.2 on Windows 7 Professional 64 bit.
I need to call a web SOAP service that requires a security token that I get from a second web SOAP service. The code I use is ...
1
vote
1answer
219 views
Savon + Rails 2 How to modify XML's request structure
I'm using Savon to develop a Web Service Client. Since I'm a beginner I decided to try at first with an example WDSL, which in my case is:
http://www.webservicex.com/CurrencyConvertor.asmx?wsdl
...
1
vote
2answers
280 views
How to perform simple web service client with Ruby and Savon
I'm trying to develop a simple example of a web service client in Ruby using Savon.
This is what I got so far:
class WebServiceController < ApplicationController
def index
puts ...
1
vote
1answer
746 views
Savon soap body problem
I am using savon 0.9.2 and ruby 1.8.7.
I am trying to make a complex type soap request.
I need to figure out how to code the soap body for the below type of request using ruby and savon. Basically ...
1
vote
1answer
1k views
SOAP + SSL + Ruby Savon - HTTPClient::ConnectTimeoutError: execution expired
I am trying to get a simple ruby script to send requests to a SOAP API but I am not able to get responses back.
This is what I am trying to do:
require 'date'
require 'savon'
# Create the client
...
1
vote
1answer
606 views
Soap Custom XMl in Ruby with Savon
I need the request body to look as such:
<env:Body>
<abc:request token="0" id="1" version="4">
<category domain_id="630643"/>
</abc>
</env:Body>
How do I add the ...
1
vote
1answer
268 views
Is there a dummy guide for using Savon with Ruby?
Does anyone have a real dummy guide to using Savon with Ruby to consume SOAP web services?
1
vote
1answer
295 views
Savon/Ruby question: Variable context in block when initializing Client WSDL
I am creating a class to wrap around a Savon SOAP connection, as follows:
class SOAPConnection
attr_reader :url, :namespace
def initialize(url, namespace)
@url = url
@namespace = ...