http://qs321.pair.com?node_id=133983

dooberwah has asked for the wisdom of the Perl Monks concerning the following question:

I'm trying to connect to a Daemon using SOAP::Lite. My Daemon is set up much like the one in this example (the example is from the SOAP Cookbook, on the SOAP::Lite homepage).
As a client, how do I specify which port to connect on?

Originally posted as a Categorized Question.

  • Comment on Connecting to a Daemon using SOAP::Lite

Replies are listed 'Best First'.
Re: Connecting to a Daemon using SOAP::Lite
by IlyaM (Parson) on Dec 23, 2001 at 03:13 UTC
    The short answer is, when specifying proxy, supply the PORT in the url, like so:
    use SOAP::Lite +autodispatch => uri => 'http://www.soaplite.com/Temperatures', proxy => 'http://services.soaplite.com:PORT/temper.cgi';
    You should goread SOAP::Lite Guide. It has complete examples of both clients and servers. Normally Cookbook should be read after this guide.
    A reply falls below the community's threshold of quality. You may see it by logging in.