DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15750>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15750 JAXRPCHandler is invalid Summary: JAXRPCHandler is invalid Product: Axis Version: 1.1beta Platform: All OS/Version: All Status: NEW Severity: Major Priority: Other Component: Basic Architecture AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] To read API document about javax.xml.rpc.handler.Handler, when handlerRequest/Response return false or throw JAXRPCException, stop execute remain handler and end point service. But it didn't work correctory. Following code in JAXRPCHandler doesn't treat it correctly: if (!msgContext.getPastPivot()) { impl.handleRequest(msgContext); } else { impl.handleResponse(msgContext); } Please fix it.