I tried to set up logger properties for this purpose,
but I don't get any output from any org.apache.axis.transport.*
class. My log4j.properties is shown below.
I'm working from a suggestion made here:
http://mail-archives.apache.org/mod_mbox/axis-java-user/200806.mbox/%3c30a5f9d51c0d9d47bd8d89c85b
I am out of the office until 01/02/2014.
Note: This is an automated response to your message "Re: How to assign to
an "any" element" sent on 31/12/2013 3:29:32.
This is the only notification you will receive while this person is away.
---
Hello, I am trying to capture XML sent from my web service client
(using Axis2) to the server via HTTPS. It seems like it should be
easy enough to dump out the XML before it's encrypted, but I haven't
been able to figure out the right flags or whatever it takes.
If anyone has a suggestion, I'll app
To follow up, in case someone else bumps into this.
PayloadType PT = ...;
Foo foo = ...; // This is the thing I want to attach to PT
OMElement [] A = new OMElement [1];
A [0] = foo.getOMElement (Foo.MY_QNAME, OMAbstractFactory.getOMFactory ());
PT.setExtraElement (A);
OMElement, Foo.MY_QNAME,