Hi, I am building a client for a web service using Axis2 1.8.1 and Rampart 1.7.1 with axis2.xml (partial) shown below. When I run in debug mode I am not getting a call to my password callback class.
Also is there a way to view the final SOAP request that is sent out after rampart adds security elements? I am able to view the SOAP request prior to Rampart security (by running the code in debug mode). Thanks, Prasanth --------------------------------------------------------------------------------------------------- <axisconfig name="AxisJava2.0"> <module ref="rampart" /> <!-- ================================================= --> <!-- Parameters --> <!-- ================================================= --> <parameter name="OutflowSecurity"> <action> <items>UsernameToken Timestamp</items> <user>prasanth</user> <passwordCallbackClass>com.nqadmin.callreports.client.PasswordCallback</passwordCallbackClass> </action> </parameter> ---------------------------------------------------------------------------------------------------