jdudleyh has asked for the wisdom of the Perl Monks concerning the following question:
I have a script using XML::Compile (SOAP/WSDL 1.1) that is working fairly well. My only problem is, the connection is based on the SOAP address in the WSDL. I need the flexibility to change between different test servers. I've tried the following (amongst other things) to change the server without success:
my $call = $wsdl->compileClient ( operation=>'ServiceRequest', transport=>XML::Compile::Transport::SOAPHTTP->new ( address=>'http://new.server.name:18082/ServiceRequest' ), );
Overriding the value here generates a 404 Not Found.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML::Compile Changing Server Endpoint
by Anonymous Monk on Jun 29, 2013 at 03:53 UTC | |
by jdudleyh (Acolyte) on Jul 02, 2013 at 22:05 UTC | |
by runrig (Abbot) on Jul 02, 2013 at 22:22 UTC | |
by jdudleyh (Acolyte) on Jul 03, 2013 at 14:53 UTC | |
|
Re: XML::Compile Changing Server Endpoint
by runrig (Abbot) on Jun 28, 2013 at 21:40 UTC |