in reply to Re: Using Net::SSLeay and Soap
in thread Using Net::SSLeay and Soap

I'm not sure if this will fix it or not but I think you need to specify an "on_action" property. This can either go in your use SOAP::Lite statement like:
use SOAP::Lite on_action => sub{join '', @_};
or I think you can also do it in your call like:
my $soap = SOAP::Lite->new(%options)->uri($uri)->proxy($server)->on_ac +tion(sub{join ' ', @_});
You'll have to try it out and see whether you need to put the '/' on the end of the proxy address to get it to look right.

The perldoc for SOAP::Lite talks a bit about communicating with .Net (look at "To use SOAP::Lite client and .NET server") which I'm guessing is applicable to you.

HTH --b

Replies are listed 'Best First'.
Re^3: Using Net::SSLeay and Soap
by Hammy (Scribe) on Sep 16, 2004 at 20:18 UTC
    Is Love too strong a term here! Our processes still do not work, but I am getting an XML document back from them that indicates an exception error in their service. The error at least indicates that the connection is made and the certificate is recognized. Thank You - Thank You