jdudleyh has asked for the wisdom of the Perl Monks concerning the following question:
Any XML::Compile monks out there?
I've been using XML::Compile for many months to test web services. Today I added yet another web service to test that is fairly similar to the dozen others I've tested. For some reason my script is not functioning with this new web service.
The structure from explain() is two hashes "Header" and "Body". My %params hash contains the programmatically constructed hash that reflects these two hashes and their contents. However, when I display the trace request the contents of my hash are not mapped into the request resulting in the following XML:
<?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/env +elope/"> <SOAP-ENV:Header/> <SOAP-ENV:Body/> </SOAP-ENV:Envelope>
I get a few "warning: unused values" during the actual WSDL11 call to the web service operation
"use Log::Report mode => 'DEBUG';" wasn't terribly helpful either
Thanks for your suggestions as always
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML::Compile not mapping my params hash
by kcott (Archbishop) on Feb 05, 2014 at 08:21 UTC | |
by markov (Scribe) on Feb 05, 2014 at 13:00 UTC | |
by Anonymous Monk on Feb 05, 2014 at 10:35 UTC | |
by jdudleyh (Acolyte) on Feb 06, 2014 at 01:47 UTC | |
by Anonymous Monk on Feb 05, 2014 at 10:39 UTC | |
|
Re: XML::Compile not mapping my params hash
by markov (Scribe) on Feb 05, 2014 at 10:51 UTC | |
by jdudleyh (Acolyte) on Feb 06, 2014 at 02:01 UTC | |
|
Re: XML::Compile not mapping my params hash (reproducible)
by Anonymous Monk on Feb 05, 2014 at 07:40 UTC |