Re: [OT] SOAP::Lite help

2007-03-13 Thread Martin Moss
When I try this I am getting this SOAP::Transport::new: () SOAP::Serializer::new: () SOAP::Deserializer::new: () SOAP::Parser::new: () SOAP::Lite::new: () SOAP::Deserializer::new: () SOAP::Parser::new: () SOAP::Schema::new: () And then it just hangs here indefinitely. Would this be a server

Re: [OT] SOAP::Lite help

2007-03-13 Thread John ORourke
Not really mod_perl but possibly of interest - here's my version, untested: #!/usr/bin/perl use SOAP::Lite +trace; use Data::Dumper; $soapobj=SOAP::Lite->service('https://myserver.myhost.com/services/EndUser?wsdl'); $soapresult=$soapobj->getUser('wombat104'); if($soapresult->fault){ print "FAU

SOAP::Lite help

2007-03-13 Thread Martin Moss
All, I have a Php script which I wish to convert to perl require_once('SOAP/Client.php'); $wsdl_url = 'https://myserver.myhost.com/services/EndUser?wsdl'; $WSDL = new Soap_WSDL($wsdl_url); $soap = $WSDL->getProxy(); $soap->setCredentials('','password'); $username = "wombat104";