in reply to Caturing incoming XML from SOAP server
use vars qw(@ISA); @ISA = qw(SOAP::Server::Parameters); sub sendMsg2Vbs { my $self = shift; my $envelope = pop;
$envelope is a SOAP::SOM object
you can get the raw xml with $envelope->context->request->content
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Caturing incoming XML from SOAP server
by gackles (Novice) on Feb 26, 2016 at 21:05 UTC | |
by Anonymous Monk on Feb 27, 2016 at 10:01 UTC | |
by gackles (Novice) on Feb 27, 2016 at 15:25 UTC | |
by Anonymous Monk on Feb 28, 2016 at 07:56 UTC |