in reply to Re: Re: RPC::XML::Client question
in thread RPC::XML::Client question
Did you check if the $client is built properly? You could add another print Dumper($client);. I just think the line my $client = RPC::XML::Client->new('http://localhost:8000/'); looks doggy, don't you need to specify the name of the service in the URL? Something like 'http://localhost:8000/cgi-bin/rpcserver'.
And you could also invoke the perl debugger and step into the send_request method, and see step by step what is happenning inside the module. Are you on Linux? If so, you could just invoke the ddd visual debugger by specifying -perl on the commandline, together with the name of your script.
And you could also invoke the perl debugger and step into the send_request method, and see step by step what is happenning inside the module. Are you on Linux? If so, you could just invoke the ddd visual debugger by specifying -perl on the commandline, together with the name of your script.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re-4: RPC::XML::Client question
by Sinister (Friar) on Jan 06, 2004 at 14:58 UTC |
In Section
Seekers of Perl Wisdom