Soap error message

Hi,

I want to use soap and I installed gem soap4r-1.5.8.

But I require ‘soap/driver’ and ‘soap/wsdlDriver’

it will show error message.

RuntimeError: XML processor module not found…

Does somebody can tell me how to fix it?

Thanks,

Hi,
Are you using ruby version 1.9.x than it requires to add patch in
‘gems/soap4r-1.5.8/lib/xsd/xmlparser.rb’ line 66 from
c.downcase == name
to
c.to_s.downcase == name

Priyanka P. wrote in post #1039212:

Hi,
Are you using ruby version 1.9.x than it requires to add patch in
‘gems/soap4r-1.5.8/lib/xsd/xmlparser.rb’ line 66 from
c.downcase == name
to
c.to_s.downcase == name

Thanks I will try it.