Tagged Questions

SOAP4R is a SOAP implementation for Ruby developed by Hiroshi Nakamura. It is part of the standard library of Ruby 1.8.7, but was removed from 1.9.2.

learn more… | top users | synonyms

5
votes
4answers
2k views

Ruby/Rails and Sharepoint Web Services

I'm trying to consume Sharepoint webservices with ruby. I've basically given up trying to authenticate with NTLM and temporarily changed the Sharepoint server to use basic authentication. I've been ...
3
votes
1answer
790 views

soap4r custom headers

I've been working with soap4r and trying to use the SOAP::Header::SimpleHandler, I'm trying to get it to put a custom header on the outgoing message, but I can't work out how to get it to include ...
3
votes
2answers
1k views

Ruby Soap4R Web Service, .NET Consumer

Does anyone know how to generate WSDL from a Web Service in Ruby using Soap4R. I have a fairly simple Web Service (SOAP::RPC::StandaloneServer) and would like to consume from .NET . Thanks
2
votes
2answers
219 views

soap service on the top of rails3

hello is there a way to create soap service with rails3 application. I have an old application with clients communicates via soap , and I need to create new analogue of service on rails 3 framework . ...
2
votes
3answers
426 views

sslv3 alert unexpected message when using soap4r

I am working against the level3 SOAP API. Everything was working wonderfully until recently when OpenSSL was updated. Here is the full output of the error message: OpenSSL::SSL::SSLError ...
2
votes
2answers
790 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
1answer
433 views

How do I add a name.value to the header when generating a soap message from ruby with soap4r

I've created a driver from wsdl When I invoke my request, I would like the header to contain an element, i.e, I want to see something like the following: REPLACE_WITH_ACTUAL blah ...
2
votes
3answers
460 views

Mongrel cluster and multi-applications problem

we're running in this issue. We're using a web service (using soap4r) to run some kind of searches and the problem appears when the webservice server is down and our aplication is trying to connect to ...
1
vote
1answer
283 views

How to create sub category on Magento APi

I am currently using Magento ver. 1.5.0.1. Can anyone tell me how do i create a sub category using soapv2. Here my code format category_data = { "name" => "LIGHTING", "is_active" => 1 } ...
1
vote
2answers
183 views

Ruby: Soap4r: How do I get the raw request sent to my soap server?

I have a connection open and am doing: values = [1, 'test'] connection.return_response_as_xml = true response = connection.send(method_name.to_sym(), *values) and that works fine and all. but I ...
1
vote
1answer
324 views

no such file to load — soap4r — why?

I migrated to 1.8.7 Ruby and now I keep getting this error and it is driving me crazy. I try installing it manually using gem install soap4r and also include it as a config.gem 'soap4r' and rake ...
1
vote
1answer
524 views

Having issue while using soap4r, unable to add namespace, encoding style to soap envelope

I am having problems with one of the soap service I'm using. I am using soap4r for consuming the soap service. But somehow they are expecting something else than what I am sending. This is what I'm ...
1
vote
2answers
119 views

Thread lockup in ruby with Soap4r

This is related to a question I asked here: http://stackoverflow.com/questions/1569651/thread-locking-in-ruby-use-of-soap4r-and-qt However it is particular to one part of that question and is ...
1
vote
2answers
466 views

Exact Target integration with Ruby examples?

Anyone used Ruby or Rails to integrate with Exact Target's API or have a good example of using WSSE with SOAP4r?
0
votes
0answers
20 views

soap with attachement request schema issue when use soap4r

When I used soap4r to call a remote web service with attachment, I met some issue. My scenario is: I have a remote web service on jboss, this web service needs a input file attachment and other 2 ...
0
votes
1answer
36 views

Ruby webservices - xmlparser issue

After trying to set up webservice setup using Ruby I encountered problems with xmlparser. As I see - it is common problem (e.g. Ruby soap4r wsdl2ruby.rb errors), but it's solution, however simple, ...
0
votes
1answer
113 views

Consuming Web Services with Ruby/Powershell

Currently I am using Ruby as the core programming language for Configuration Management support. Since the new release of Ruby (1.9.3) i was not able to use gem configuration to consume web services ...
0
votes
1answer
109 views

Parse WSDL file with SOAP4R

Is there any example of WSDL Parser using SOAP4R? I'm trying to list all operations of WSDL file but I can't figure it out :( Can you post me some tutorial? Thx
0
votes
0answers
29 views

SOAP4R ignored element issue

wsdl = "http://url/file.wsdl" driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver puts driver This statement produces error. Please suggest me some possibilities to rectify this problem ...
0
votes
0answers
47 views

Create a header with attributes SOAP4R, RUBY

I need to create a header with SOAP4R (soap webservice client) like this: <soap:Header> <PayloadInfo Username="string" Password="string" IDParceiro="int" ...
0
votes
1answer
47 views

Change dependent gem

I need switching gem on which other gem relies. So in particular: i have adwords4r gem which relies to old soap4r(which has issues on 1.9.2). I want to change gem on which adwords4r relies to other ...
0
votes
0answers
42 views

Deploying soap4r web-services on apache2

I'm trying to deploy a ruby application to an apache2 web server (on Ubuntu 11.04 server OS). This ruby app uses the soap4r gem to deal with web service requests, and runs perfectly on WeBrick when I ...
0
votes
1answer
194 views

How to use SOAP::RPC::Driver with basic http authentication with SOAP4r

I am generating the stubs in runtime with driver=SOAP::RPC::Driver.new wsdl_path. How should I initialize/configure the driver in order to use http basic authentication? I have tried ...
0
votes
1answer
247 views

I get these errors trying to build a web service client in Ruby

I am trying to build a web service client in Ruby. When I try to invoke the following soap4r ruby script to generate web service client code: wsdl2ruby.rb --wsdl *[web_service_url]* --type client ...
0
votes
1answer
303 views

How to deal with Savon Responses?

I do not understand the people who prefer Savon to Soap4r. How can I get the attributes of the returned object in a Savon response? With soap4r it's as clean as invoking a getter! Apparently, in ...
0
votes
0answers
97 views

How to create soap header using xsd2ruby

Please help me. I try to create soap header using xsd2ruby. command line: xsd2ruby.rb --xsd cwmp-1-2.xsd --classdef cwmp --mapping_registry --mapper --force cwmp.rb: # ...
0
votes
1answer
344 views

How to create a configurable products using Magento Core API

I have no problem importing simple products using Magento Core API (SOAP). How can I create configurable products using the same API? There is no documentation on this at all. A small example would be ...
0
votes
2answers
397 views

How to hide the soap4r gem warnings

I write the ruby code to access the magento core api, with the help of soap4r gem. When i run the code it works perfectly, but the problem is it should giving the lots of soap warnings. ...
0
votes
0answers
98 views

Problem generating object from xml using soap4r

i´m new in ruby and i´m using soap4r to generate automatically classes from a xsd, and the process seems ending correctly. The problem is when i use the method xml2obj, the result object contains two ...
0
votes
0answers
102 views

1067 process terminated unexpectedly?

why does this error message come when I am trying to stop a windows service ? "1067 process terminated unexpectedly" The services starts a Sinatra webserver which requires 'soap4r' (which requires ...
0
votes
1answer
129 views

How to I set a http header for a soap call in soap4r?

How to I set a http header for a soap call in soap4r ? @drv = SOAP::RPC::Driver.new('x', 'y') How do I set a http header "vmware_soap_session" to call the calls that are going out of @drv ?
0
votes
1answer
119 views

How do I set a cookie in for a soap request?

This is the first time I am getting with soap (Ruby's soap4r). I am trying to develop and plugin for vShpere Client. (ruby sdk http://communities.vmware.com/thread/162318). I would like to know how I ...
0
votes
1answer
70 views

Ruby: How to close a SOAP4R Connection?

I am making a client like this: client = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver And I get a SOAP::RPC::Driver class... how do i tell it to close itself?
0
votes
1answer
193 views

Ruby: How to load a WSDL file into some data structure?

I have a WSDL file and want to load it into ruby somehow so I can navigate through it. Anyone know how to do this?
0
votes
1answer
373 views

How to use SSL Web Services in a Rails application

I having a hard time to consume this webservice https://www.arello.com/webservice/verify.cfc?wsdl in my rails application. I successfully generated the ruby files with the wsdl2ruby.rb but when un run ...
0
votes
1answer
663 views

Rails : soap4r - Error while running wsdl2ruby.rb

when I execute Mathieu$ /Users/Mathieu/.gem/ruby/1.8/bin/wsdl2ruby.rb path --wsdl https://www.arello.com/webservice/verify.cfc?wsdl --type client --force I get at depth 0 - 20: unable to get local ...
0
votes
1answer
482 views

Soap4r : the requested address is not valid in the its context

I was wondering if somebody has seen this error before? C:/Ruby/lib/ruby/gems/1.8/gems/httpclient-2.1.5.2/lib/httpclient/session.rb:675:in `initialize': The requested address is not valid in its ...
0
votes
1answer
142 views

How do I pass objects to RPC style web services when working with soap4r at runtime?

I am creating a proxy for a soap web service at runtime using soap4r. proxy = SOAP::WSDLDriverFactory.new("http://www.example.com/endpoint?wsdl").create_rpc_driver How do I execute a rpc with a ...
0
votes
1answer
270 views

'SSL not supported' when calling https web service in Ruby

I am trying to run the following code to call a webservice from ruby but get an error 'SSL not supported'. I have httpclient 2.1.5.2 installed. require 'soap/wsdlDriver' def ...
0
votes
1answer
629 views

Accessing SOAP Service with soap4r not able to access contents of returned objects

So I need to access this service from my rails app. I'm using soap4r to read the WSDL and dynamically generate methods for accessing the service. From what I've read, I should be able to chain ...
0
votes
2answers
206 views

Passing a blank XSD::QName using soap4r

I have overridden the SimpleHandler to pass a username and password using soap4r. the problem is that I am forced to give a QName, and this is causing the result to fail because it's not in the right ...
0
votes
1answer
428 views

Confused about soap4r custom headers

I am trying to set up a web service to Celltrust's SMS Gateway. I have their SDK and I'm trying to use soap4r to create the custom headers that it needs. I'm not sure exactly what I need to do to ...
0
votes
1answer
468 views

Generate XML with soap4r without invoking the web service?

I have set up a soap4r client for a web service, and it's working fairly well. We're using it to send data from one database to another (don't bother asking about that... I know it's not optimal), ...
0
votes
1answer
1k views

Connecting to Bing Maps SDK from a Rails app

I am attempting to connect to Bing Maps SDK through a RoR application. My goal is to calculate driving distance between two locations after geocoding them. I am new to SOAP and ROR so I may be ...