> 1. The SOAPMonitor has a bug. For some reason the response frame > (outgoing messages) does not show the headers (the request frame does).
It's actually not a bug. To understand why, look at the following part of axis2.xml (I'm showing the content of the default axis2.xml file here; your's likely looks similar): <phaseOrder type="OutFlow"> <!-- user can add his own phases to this area --> <phase name="soapmonitorPhase"/> <phase name="OperationOutPhase"/> <!--system predefined phase--> <!--these phase will run irrespective of the service--> <phase name="RMPhase"/> <phase name="PolicyDetermination"/> <phase name="MessageOut"/> <phase name="Security"/> </phaseOrder> The SOAP monitor uses a handler that is placed at the beginning of the handler chain (for outgoing messages). In particular it is executed before the Security phase. That is why you can't see the security headers. Andreas --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org For additional commands, e-mail: java-dev-h...@axis.apache.org