in reply to Re^3: 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//)
so running the hibye.pl script from the command prompt should generate a message.#!/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"); } ~
|
|---|