Trying to do a XML dump for soap using AXIS

Hi there,

I'm trying to get a dump of the XML I am generating for a SOAP transaction. I've done a bit of a seach, and it seems that I need to put the following in my JRX-RPC security file

<xwss:SecurityConfiguration>

:

<xwss:SecurityConfiguration dumpMessages="true">

The only problem being..... My jrxrpc jar doesn't appear to have a security file.

I thought therefore it was probably just inheriting the information from my Java setup. So I wanted to change Java\jdk1.5.0_06\jre\lib\security, but there is nothing in there that looks remotely like the xml above.

Can anyone give me a pointer exactly where I should be putting these things?

Thanks very much

Dianne

[742 byte] By [dogmaca] at [2007-11-27 6:47:17]
# 1
You do not need to go into security to get a simple XML dump.Axis has a number of tools, like SoapMonitor and TCPMonitor.Consult the Axis docs.
karma-9a at 2007-7-12 18:20:00 > top of Java-index,Java Essentials,New To Java...
# 2

To use the TCPMonitor:

Say you are running your axis service on localhost port 8080

Launch TCPMonitor, i.e.:

java -classpath c:\axis-1_4\lib\axis.jar org.apache.axis.utils.tcpmon 1234 127.0.0.1 8080

Now edit your XXXServiceLocator class so that the address points to port 1234 instead of 8080

Now TCPMonitor will log all request/response pairs and forward your requests on for you to the correct port.

YoGeea at 2007-7-12 18:20:00 > top of Java-index,Java Essentials,New To Java...