priya10 has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w # hw_client.pl - Hello client use warnings; use SOAP::Lite; my $name = shift; print "\n\nCalling the SOAP Server to say hello\n\n"; print "The SOAP Server says: "; print SOAP::Lite -> uri('urn:Example1') -> on_action(sub{sprintf '%s/%s', @_ }) -> proxy('http://localhost/HelloWorld.asmx') -> sayHello(SOAP::Data->name(name => $name)->type->('string') -> uri('urn:Example1')) -> result . "\n\n";
gives me this error message
Use of uninitialized value in subroutine entry at hello_client.pl line 11. Undefined subroutine &main:: called at hello_client .pl line 11 Please help me!!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Calling a .NET web service from perl scripts
by Khen1950fx (Canon) on Mar 15, 2011 at 21:05 UTC | |
|
Re: Calling a .NET web service from perl scripts
by SuicideJunkie (Vicar) on Mar 15, 2011 at 20:59 UTC |