![]() |
|
good chemistry is complicated, and a little bit messy -LW |
|
PerlMonks |
Re^3: Getting soap client/server to workby jfroebe (Parson) |
on Dec 04, 2006 at 21:41 UTC ( #587744=note: print w/replies, xml ) | Need Help?? |
Figured it out! The URI was wrong! :) Working:
print SOAP::Lite
->uri('http://localhost/Demo')
->proxy('http://localhost/cgi-bin/soap/hibye.cgi')
->hi()
->result;
print SOAP::Lite
->uri('http://localhost/cgi-bin/soap/Demo')
->proxy('http://localhost/cgi-bin/soap/hibye.cgi')
->hi()
->result;
No one has seen what you have seen, and until that happens, we're all going to think that you're nuts. - Jack O'Neil, Stargate SG-1
In Section
Seekers of Perl Wisdom
|
|