Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Any help would be much appreciated, thanks.use SOAP::Lite; print SOAP::Lite -> uri('http://internalserver/WebServices/Mail.WSDL') ->proxy('What Goes here') ->SendMail ("email address", "Test subject", "Test Message") ->result; # If I take the proxy line out or put in 'false' I get an error tellin +g me I need it. # VB equivalent Set soapClient = CreateObject("MSSOAP.SoapClient") soapClient.mssoapinit "http://internalserver/WebServices/Mail.WSDL" soapClient.ConnectorProperty("UseProxy") = False soapClient.SendMail "Email address", "Test subject", "Test message"
Edit: BazB, changed title; was "SOAP:Lite"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using SOAP::Lite without a proxy
by meetraz (Hermit) on Oct 30, 2003 at 20:46 UTC | |
by Anonymous Monk on Oct 30, 2003 at 23:09 UTC | |
by jasonk (Parson) on Oct 31, 2003 at 01:44 UTC |