Questions tagged [handsoap]

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.

10 questions
3
votes
1 answer

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 = JIRA::JIRAService.new…
nictrix
  • 1,483
  • 1
  • 17
  • 34
2
votes
1 answer

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 handsoap and have yet to fully test it for my…
vinothini
  • 2,606
  • 4
  • 27
  • 42
2
votes
0 answers

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: xxxxxxxxxx yyyyyyyyy
1
vote
2 answers

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 be thin or something similar) with them?
goutham
  • 848
  • 2
  • 13
  • 27
1
vote
1 answer

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 maintainable ruby proxy classes for savon or handsoap?
Anil
  • 11
  • 3
1
vote
1 answer

ruby handsoap documentation

Does anybody know some nice documentation about the ruby "handsoap" gem to get me started? Thanks
Gabriel
0
votes
1 answer

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 troelskn-handsoap I get: ERROR: Could not find a valid…
tiiin4
  • 539
  • 4
  • 7
  • 19
0
votes
3 answers

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.
Steve McKinney
  • 3,183
  • 1
  • 23
  • 26
0
votes
1 answer

Convert Handsoap::SoapResponse to particular class in ruby

I am using HandSoap to make client code for JAX-WS SOAP API. I am able to extract XML from SoapResponse using Nokigiri gem but I am unable to convert that response to any particular class. Is there any way in ruby to convert Handsoap::SoapResponse…
Raheel
  • 4,953
  • 4
  • 34
  • 40
0
votes
3 answers

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 stored. Hmm.. I should also check out invoke to see…
Gabriel