I want to give users of my code a way to provide a certificates file
or silence the warning (by passing nil). However, when I use
wsdl2ruby (from the developer's version) to build a service for this
WSDL file:
https://secure2.e-xact.com/vplug-in/transaction/rpc-enc/service.asmx?wsdl
Then run the following code:
exact = ServiceSoap.new
exact.options["protocol.http.ssl_config.ca_file"] = nil
I get an exception:
NotImplementedError: SSL not supported
Any idea what I'm doing wrong here?
Thanks.
James Edward Gray II
No help on this one? Is this a bug in the development version of
SOAP?
James Edward Gray II
You probably missing the http-access2 client that has SSL support.
Grab it and install it from http://dev.ctor.org/http-access2 (v 2.0.6
should be fine).
Also verify you run the latest fix release of soap4r
http://dev.ctor.org/download/ soap4r-20061022.tar.gz
emil
This was my issue. Yes. Thanks much.
James Edward Gray II