Tagged Questions
0
votes
1answer
202 views
How do I move from SOAP:RPC:Driver to Savon
As discussed elsewhere the SOAP::RPC::Driver which was available in Ruby 1.8 has been removed in Ruby 1.9. People suggested using the Savon gem, but I can't find any tutorials on how to convert ...
0
votes
1answer
85 views
getting load error while trying to use jira4r-jh gem in irb
I downloaded the jira4r-jh gem and tried to test it from irb, but as soon as I type
require 'jira4r-jh'
I get a load error complaining about a missing gem.
I am using ruby 1.8.7
1
vote
1answer
583 views
How do I use Ruby's SOAP::Attachment class?
So I'm writing a Ruby client for a SOAP web service, and I've figured out how to call a simple method:
# WebServiceClient.rb
require 'soap/wsdlDriver'
wsdl_url = 'http://urlmadness?wsdl'
service = ...