Gokul has asked for the wisdom of the Perl Monks concerning the following question:
the program is
#!/usr/bin/perl use SOAP::Lite; $var1=1234; $var2=3456; my $accno = "$var1"; my $pinno = "$var2"; my $ret= SOAP::Lite ->proxy('http://192.168.0.107:8080/ws4ee/services/BankingService?wsdl' +) ->loginUser($accno,$pinno) ->result;
Can anyone have some solutions???
Edit g0n - added code & p tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: String Conversion Error in Webservices
by jhourcle (Prior) on Jul 12, 2005 at 11:35 UTC | |
|
Re: String Conversion Error in Webservices
by gellyfish (Monsignor) on Jul 12, 2005 at 11:27 UTC |