dblevins 2005/06/18 02:21:39
Modified: modules/core/src/java/org/openejb/slsb
HandlerChainInterceptor.java
Log:
Use axis handler chain impl temporarily
Revision Changes Path
1.3 +5 -3
openejb/modules/core/src/java/org/openejb/slsb/HandlerChainInterceptor.java
Index: HandlerChainInterceptor.java
===================================================================
RCS file:
/scm/openejb/openejb/modules/core/src/java/org/openejb/slsb/HandlerChainInterceptor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- HandlerChainInterceptor.java 28 Apr 2005 02:27:20 -0000 1.2
+++ HandlerChainInterceptor.java 18 Jun 2005 06:21:39 -0000 1.3
@@ -51,6 +51,7 @@
import java.util.List;
import java.util.Map;
import java.util.Stack;
+import java.io.ObjectStreamClass;
import javax.xml.rpc.JAXRPCException;
import javax.xml.rpc.handler.Handler;
import javax.xml.rpc.handler.HandlerChain;
@@ -90,7 +91,8 @@
return next.invoke(invocation);
}
- HandlerChain handlerChain = new HandlerChainImpl(handlerInfoList,
roles);
+ HandlerChain handlerChain = new
org.apache.axis.handlers.HandlerChainImpl(handlerInfoList);
+ // new HandlerChainImpl(handlerInfoList, roles);
InvocationResult invocationResult;
try {