- or download this
#!c:\perl\bin\perl.exe
# hello1.pm - simple Hello module
...
}
1;
- or download this
#!c:\perl\bin\perl.exe
use lib 'hello1.pm';
...
-> dispatch_to('hello1::(?:sayHello)')
-> handle
;
- or download this
#!c:\perl\bin\perl.exe
# hw_client.pl - Hello client
...
-> sayHello($name)
-> result ;
print "welcome";
- or download this
nCalling the SOAP Server to say hello
The SOAP Server says: Hello latha
welcome