I'm using savon 0.9.7 and ruby 1.8.7, I make this request:
client = Savon::Client.new do
wsdl.document = "http://localhost:3000/wsdl/service.asmx?WSDL"
end
response = client.request "Body3DGeneration" do
soap.body = {
:path => 'adsa',
…
I'm having issues calling a 3rd party SOAP client and I'm not sure what to investigate next. I was given their certificate and key to authenticate with. Any advice is much appreciated.
The client is not a public CA, so the root certificate has to be…
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 =…
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 = headers.GetHeader("VerifyUser",…
Using the Savon SOAP library for Ruby, how can I add the common "env:mustUnderstand" attribute to the Security tag in the header of a SOAP request? By default, it isn't included in the tag.
Here is my current test code:
require 'rubygems'
require…
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 send_fax_response only. The working returns a…
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 :foo_web_serivce, :language_count, :body => { :foo_app_id =>…
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 a contract mismatch
(mismatched Actions between…
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
My controller is very simple:
require 'savon'
class…
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 one of the complextypes in the request extends…
I'm trying to mock a SOAP request made with Savon. I can't seem to correctly mock the Savon response with my supplied fixture.
Versions:
savon (2.2.0)
wasabi (~> 3.1.0)
I had to lock the WSDL parser Wasabi to ‘3.1.0’ because of this:…
With SoapUI, I am successfully connecting to a SOAP API with details such as:
Initial WSDL: http://11.11.1.11:7303/FOO/BAR/BAZ
Username: foo
Password: bar
Domain: example
But I am not sure how to do this with Savon. I am trying this (not quite…
I have a Ruby (2.6.5) on Rails (5.2.3) application which is already successfully using Savon (2.12) to interact with FlightAware's FlightXML 2 API via SOAP/WSDL. However, I'm running into an issue while attempting to write Minitest tests for this…