Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Convert SOAP service from CGI to Mod-Perl (ModPerl::Registry)

by banco (Initiate)
on Oct 01, 2010 at 17:55 UTC ( [id://862997]=perlquestion: print w/replies, xml ) Need Help??

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>
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://862997]
Approved by ikegami
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (11)
As of 2024-04-18 11:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found