Help for this page

Select Code to Download


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