User: patriot1burke
  Date: 02/03/10 22:25:45

  Modified:    src/main/org/jboss/invocation/jrmp/server JRMPInvokerHA.java
  Log:
  fixes after client-interceptor break
  
  Revision  Changes    Path
  1.12      +3 -3      
jbossmx/src/main/org/jboss/invocation/jrmp/server/JRMPInvokerHA.java
  
  Index: JRMPInvokerHA.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jbossmx/src/main/org/jboss/invocation/jrmp/server/JRMPInvokerHA.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- JRMPInvokerHA.java        14 Feb 2002 01:31:01 -0000      1.11
  +++ JRMPInvokerHA.java        11 Mar 2002 06:25:45 -0000      1.12
  @@ -40,7 +40,7 @@
    * into the JMX base
    *
    * @author <a href="mailto:[EMAIL PROTECTED]>Bill Burke</a>
  - * @version $Revision: 1.11 $
  + * @version $Revision: 1.12 $
    */
   public class JRMPInvokerHA
      extends JRMPInvoker
  @@ -151,7 +151,7 @@
            invocation.setTransaction(importTPC(((MarshalledInvocation) 
invocation).getTransactionPropagationContext()));
   
            // Extract the ObjectName, the rest is still marshalled
  -         ObjectName mbean = (ObjectName) Registry.lookup((Integer) 
invocation.getContainer());
  +         ObjectName mbean = (ObjectName) Registry.lookup((Integer) 
invocation.getObjectName());
   
            long clientViewId = 
((Long)invocation.getValue("CLUSTER_VIEW_ID")).longValue();
   
  @@ -164,7 +164,7 @@
            
            HARMIResponse rsp = new HARMIResponse();
   
  -         HATarget target = (HATarget)beanMap.get((Integer) 
invocation.getContainer());
  +         HATarget target = (HATarget)beanMap.get((Integer) 
invocation.getObjectName());
            if (target == null) {
               throw new IllegalStateException("The bean hashCode not found");
            }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to