in reply to Soap Lite Error
Hi again ecuguru. :)
I should preface this by saying that I don't have SOAP::Lite installed nor the time to do so, but your syntax appears ... well, a little "hinky" to me. I'm not sure why you've got your -> surrounded by spaces when near the identifier service and NOT surrounded by spaces near the identifier som. What happens if you get rid of those spaces, such that:
sub soapGet(){ my $service = SOAP::Lite->service('http://ip/Info.asmx?WSDL'); $service->GetHospitalInfo(); my $som = $service->call; if ($som->fault) { print "SOAP FAULT:\n"; print Dumper $som; exit; }
$,=42;for(34,0,-3,9,-11,11,-17,7,-5){$*.=pack'c'=>$,+=$_}for(reverse s +plit//=>$* ){$%++?$ %%2?push@C,$_,$":push@c,$_,$":(push@C,$_,$")&&push@c,$"}$C[$# +C]=$/;($#C >$#c)?($ c=\@C)&&($ C=\@c):($ c=\@c)&&($C=\@C);$%=$|;for(@$c){print$_^ +$$C[$%++]}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Soap Lite Error
by ecuguru (Monk) on Mar 15, 2006 at 18:51 UTC |