[Jboss-cvs] JBossAS SVN: r54974 - trunk/server/src/main/org/jboss/ejb/plugins

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 1 10:02:53 EDT 2006


Author: thomas.diesler at jboss.com
Date: 2006-08-01 10:02:51 -0400 (Tue, 01 Aug 2006)
New Revision: 54974

Modified:
   trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstanceInterceptor.java
Log:
failsave injection of JAXRPC MessageContext

Modified: trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstanceInterceptor.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstanceInterceptor.java	2006-08-01 12:42:50 UTC (rev 54973)
+++ trunk/server/src/main/org/jboss/ejb/plugins/StatelessSessionInstanceInterceptor.java	2006-08-01 14:02:51 UTC (rev 54974)
@@ -149,7 +149,7 @@
       }
 
       // Service Endpoint invocation
-      else if (mi.getValue(InvocationKey.SOAP_MESSAGE_CONTEXT) != null)
+      else if (mi.getValue(InvocationKey.SOAP_MESSAGE_CONTEXT) instanceof MessageContext)
       {
          ctx.setMessageContext((MessageContext)mi.getValue(InvocationKey.SOAP_MESSAGE_CONTEXT));
          AllowedOperationsAssociation.pushInMethodFlag(IN_SERVICE_ENDPOINT_METHOD);




More information about the jboss-cvs-commits mailing list