Help for this page

Select Code to Download


  1. or download this
    Alias /perl/  /var/www/perl/
    <Location /perl>
    ...
        Order allow,deny
        Allow from all
    </Location>
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    #   -> proxy('http://my.domain.com/cgi-bin/hello.cgi') # mod_cgi
       -> hello()
       -> result . "\n";
    
  3. or download this
    package Hello;
      
    ...
    }
    
    1;
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    SOAP::Transport::HTTP::CGI
        -> dispatch_to('Hello')
        -> handle;
    
  5. or download this
    SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 200 OK<br>
    Connection: close<br>
    ...
    <s-gensym3 xsi:type="xsd:string">hello, world</s-gensym3><br>
    </helloResponse></soap:Body></soap:Envelope><br>
    <b>hello, world</b>