Mike_v has asked for the wisdom of the Perl Monks concerning the following question:
--------------------------------------------------------------------------use SOAP::Lite +trace => [qw(method fault headers result debug)]; $uri = "http://webservice.proc.req.lbg.com/"; $proxy = "http://10.161.3.159/LBGRequestProcessorWEB/LBGOIMRequestPr +ocessorService"; @params = (SOAP::Data->name("arg0" => \SOAP::Data->value (SOAP::Data->name(actionType => ""), SOAP::Data->name(additionalOperationType =>""), SOAP::Data->name(originatingSystem => ""), SOAP::Data->name(recipientId => ""), SOAP::Data->name(requestId => ""), SOAP::Data->name(requestType => ""), SOAP::Data->name(resourceType => "") ), ), ); $method = SOAP::Data->name('processRequest') ->attr({xmlns => $uri}) ; $soap = SOAP::Lite -> uri($uri) -> on_action( sub { '' } ) -> proxy($proxy) ; $result = $soap->call($method => @params);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: SOAP call tweaks required
by Corion (Patriarch) on Dec 07, 2010 at 12:35 UTC | |
by Mike_v (Novice) on Dec 07, 2010 at 13:22 UTC | |
by Corion (Patriarch) on Dec 07, 2010 at 13:24 UTC | |
by Mike_v (Novice) on Dec 07, 2010 at 14:12 UTC | |
by Anonymous Monk on Dec 07, 2010 at 14:20 UTC | |
Re: SOAP call tweaks required
by ruoso (Curate) on Dec 08, 2010 at 13:37 UTC | |
by Anonymous Monk on Dec 08, 2010 at 13:48 UTC | |
by ruoso (Curate) on Dec 08, 2010 at 14:59 UTC | |
by Anonymous Monk on Dec 08, 2010 at 15:57 UTC | |
by ruoso (Curate) on Dec 08, 2010 at 16:31 UTC | |
|