Web service developers often have the need to see the SOAP messages being used to invoke web services along with the results of those messages. The goal of the SOAP Monitor utility is to provide a way for these developers to monitor the SOAP messages being used without requiring any special configuration or restarting of the server.
It's a utility what can be found in the org.apache.axis.utils package. It provides the monitoring capability described above to Web service developers.
It's a good opportunity for using this utility that you hope to monitor the SOAP messages for debugging. You can see all SOAP messages of what you want to monitor without any additional developments, special configurations or restarting of the application server.
Please note that it doesn't display any protocol specific data such as HTTP protocol headers. If you need to do this, you should use the TCP Monitor (tcpmon). Please see the Axis User's Guide for details on tcpmon.
Open and edit the "webapps/axis/WEB-INF/users.lst".
The default account for administrator is "admin", set a password to anything you want.
ex.) Like as follows; - i.e. "admin password".
user1 pass1 user2 user3 pass3 admin password
Before running this utility, you'll need to make sure that your CLASSPATH includes:
% java org.apache.axis.utils.SOAPMonitor [-u admin] [-w password] [-l axisURL]
or
% javaw org.apache.axis.utils.SOAPMonitor [-u admin] [-w password] [-l axisURL]
Try login with the account which you specified as an administrator.
Click services to enable monitoring, then push "Turn On" button.
The following screen should be displayed.
Click services to disable monitoring, then push "Turn Off" button.
The following screen should be displayed.
Push "Save changes" button to save the current state.
The following screen should be displayed.
Push "Monitoring" tab to start monitoring with the current settings.
The following screen should be displayed.
Item | SOAPMonitorApplet(Old version) | SOAPMonitor(This version) |
---|---|---|
App Type | Applet | Swing application |
Security | N/A (No authentication) | OK (Authentication added) |
Install & Use |
|
Just do "java org.apache.axis.utils.SOAPMonitor" (within the axis.jar)
|