in reply to Re^2: SOAP::Lite Quickstart demo Use of uninitialized value in pattern match (m//)
in thread SOAP::Lite Quickstart demo Use of uninitialized value in pattern match (m//)

That message is not necessarily a problem - though it might indicate something is wrong. Does the script give any normal output when you do that?

  • Comment on Re^3: SOAP::Lite Quickstart demo Use of uninitialized value in pattern match (m//)

Replies are listed 'Best First'.
Re^4: SOAP::Lite Quickstart demo Use of uninitialized value in pattern match (m//)
by philosophia (Sexton) on Jul 10, 2006 at 19:22 UTC
    No. Running 'perl hibye.pl' just returns me to a command prompt.

    The SOAP Server script -hibye.cgi - it is trying to contact looks like

    #!/usr/bin/perl -w # -- SOAP::Lite -- guide.soaplite.com -- Copyright (C) 2001 Paul Kulch +enko -- 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"; } sub languages { return ("Perl", "C", "sh"); } ~
    so running the hibye.pl script from the command prompt should generate a message.