If the "happyaxis" validation page displays an exception instead of a status page, the likely cause is that you have multiple XML parsers on your classpath. Clean up your classpath by eliminating extraneous parsers.
To enable Axis administration, complete the following steps:
<parameter name="enableRemoteAdmin" value="true"/>
Web Services Server
Run configuration (Run->Configurations) and add vmparam to set the system property axis.development.system
To enable SOAP monitoring, complete the following steps:
globalConfiguration
element to the axis.wsdd
deployment file in the project source path:
<globalConfiguration> <requestFlow> <handler type="java:org.apache.axis.handlers.JWSHandler"> <parameter name="scope" value="session"/> </handler> <handler type="java:org.apache.axis.handlers.JWSHandler"> <parameter name="scope" value="request"/> <parameter name="extension" value=".jwr"/> </handler> <handler type="java:org.apache.axis.handlers.SOAPMonitorHandler"/> </requestFlow> <responseFlow> <handler type="java:org.apache.axis.handlers.SOAPMonitorHandler"/> </responseFlow> </globalConfiguration>
Note: The port used by the SOAP monitor service to comminicate with applets is configurable. Edit
the web.xml
file for the Axis web application to change the port to be used.