I have written both a request handler and a response handler for calling a
web service using Apache Axis 1.4.
The request handler is working, but when the web service returns a soap
fault, my response handler is not getting called (I have set breakpoints in
both the "onFault" and "invoke" methods of the response handler, which
extends "org.apache.axis.handlers.BasicHandler").
Any help will be greatly appreciated!

Here is what my WSDD looks like:

[code]
<deployment xmlns="http://xml.apache.org/axis/wsdd/";
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>
   <transport name="http"
pivot="java:org.apache.axis.transport.http.HTTPSender"/>
   <globalConfiguration>
      <requestFlow>
         <handler name="MyRequestHandler"
type="java:com.mycompany.MyRequestHandler"/>
      </requestFlow>
      <responseFlow>
         <handler name="MyResponseHandler"
type="java:com.mycompany.MyResponseHandler"/>
      </responseFlow>
   </globalConfiguration>
</deployment>
[/code]

Thanks!
Jonathan
-- 
View this message in context: 
http://www.nabble.com/JDeveloper-10.1.3.3.0%3A-Problem-with-Apache-Axis-1.4-response-handler-tp22477102p22477102.html
Sent from the Axis - Dev mailing list archive at Nabble.com.

Reply via email to