in reply to Web Service error
with this client#!perl use strict; use SOAP::Transport::HTTP; SOAP::Transport::HTTP::CGI -> dispatch_to('Demo') -> handle; package Demo; sub test { my ($self,$msg) = @_; return "msg : $msg\n"; }
poj#!perl use SOAP::Lite; print SOAP::Lite -> uri('http://localhost/Demo') -> proxy('http://localhost/read_xml.cgi') -> test('hello server') -> result;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Web Service error
by chuck882 (Initiate) on Aug 21, 2014 at 20:27 UTC |