timecatalyst has asked for the wisdom of the Perl Monks concerning the following question:
But when I try to run the script, I keep getting the error: Status: 411 Length Required. ...and the script terminates. I have an idea what the error itself means in a client-server context, but it appears that the server is coming up with this own its own. Any help would be much appriciated.#!perl -w use SOAP::Transport::HTTP; SOAP::Transport::HTTP::CGI -> dispatch_to('Demo') -> handle; package Demo; sub hi { return "hello, world"; } sub bye { return "goodbye, cruel world"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::Transport::HTTP::CGI 411 Error
by themage (Friar) on Nov 17, 2006 at 09:37 UTC | |
by timecatalyst (Acolyte) on Nov 20, 2006 at 17:08 UTC | |
|
Re: SOAP::Transport::HTTP::CGI 411 Error
by mda2 (Hermit) on Nov 17, 2006 at 20:34 UTC |