V
Venkat Alla
I have the following code in a script that I am trying to use at work -
#!/usr/local/bin/ruby
require 'rubygems'
require 'soap/wsdlDriver'
wsdl = 'myURL'
driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
I have a working perl snippet given, which uses SOAP::Lite. I want to
use ruby to code my script, but unable to go past the above lines.
Here is the error I am receiving -
at depth 0 - 20: unable to get local issuer certificate
OpenSSL::SSL::SSLError: certificate verify failed
I am stuck for hours trying to figure a way out. Please help.
Thanks in advance.
#!/usr/local/bin/ruby
require 'rubygems'
require 'soap/wsdlDriver'
wsdl = 'myURL'
driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
I have a working perl snippet given, which uses SOAP::Lite. I want to
use ruby to code my script, but unable to go past the above lines.
Here is the error I am receiving -
at depth 0 - 20: unable to get local issuer certificate
OpenSSL::SSL::SSLError: certificate verify failed
I am stuck for hours trying to figure a way out. Please help.
Thanks in advance.