Tagged Questions
Handsoap is a library for creating SOAP clients in Ruby. It takes a minimalistic approach. Instead of a full abstraction layer, it is more like a toolbox with which you can write SOAP bindings.
2
votes
1answer
49 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 ...
1
vote
0answers
79 views
using Ruby handsoap craft AuthHeader
How would I go about adding an authheader to the soap header of a request using handsoap?
so for example I want:
<soap:Header>
<AuthHeader xmlns="thenamespace">
...
1
vote
2answers
230 views
using handsoap or Savon
I created wsdl server with soap4r but facing unicode problems with it.
so thought of trying savon or handsoap.
Is there any resource where i can find how to define services and
start a server(may ...
1
vote
2answers
1k views
Any Savon Ruby SOAP gem tutorials out there?
I've seen the documentation but I'm wondering if anyone's written up or come across a tutorial for using the Savon gem in Rails to consume external SOAP services.
The documentation is more for ...
1
vote
1answer
1k views
ruby handsoap documentation
Does anybody know some nice documentation about the ruby "handsoap" gem to get me started?
Thanks
0
votes
0answers
33 views
ruby jiraSOAP net-http ssl verify
How can I specify for net/http to not verify the SSL certificate, when loading through Handsoap and jiraSOAP.. see code below:
require 'jiraSOAP'
Handsoap.http_driver = :net_http
api = ...
0
votes
1answer
88 views
Missing these required gems: troelskn-handsoap SOAP Client
I followed the instructions in the Handsoap wiki.
However, when I try to run my application I get this error:
Missing these required gems:
troelskn-handsoap
And if I run:
gem install ...
0
votes
3answers
485 views
Is there wsdl to ruby proxy code generators for savon or handsoap gems?
Based on their design philosophy, it sounds like they want gem users to hand code ruby proxy classes. I still feel that they could have provided generators.
Any suggestions on how to generate ...
0
votes
3answers
607 views
Faking web requests in Rails test without Fakeweb
I'm using the Handsoap gem with Httpclient gem as the driver in a Rails app.
How can I prevent network calls from Handsaop/Httpclient gems in test cases?
FakeWeb doesn't support Httpclient.
0
votes
3answers
512 views
ruby handsoap wiredump
How can see the wiredump of a soap using the 'handsoap' library?
I use the on_before_dispatch hook, and right now I am looking at the SoapService variables to see where such a request might be ...