Package org.jboss.invocation.pooled.interfaces

Examples of org.jboss.invocation.pooled.interfaces.PooledMarshalledInvocation


      ClassLoader oldCl = currentThread.getContextClassLoader();
      try
      {

         // Deserialize the transaction if it is there
         PooledMarshalledInvocation mi = (PooledMarshalledInvocation) invocation;
         invocation.setTransaction(importTPC(mi.getTransactionPropagationContext()));
         ObjectName mbean = (ObjectName) Registry.lookup(invocation.getObjectName());
         if( mbean == null )
         {
            System.err.println("NoSuchObjectException: "+invocation.getObjectName());
            throw new NoSuchObjectException("Failed to find target for objectName: "+invocation.getObjectName());
View Full Code Here


/*     */   {
/* 367 */     Thread currentThread = Thread.currentThread();
/* 368 */     ClassLoader oldCl = currentThread.getContextClassLoader();
/*     */     try
/*     */     {
/* 373 */       PooledMarshalledInvocation mi = (PooledMarshalledInvocation)invocation;
/* 374 */       invocation.setTransaction(importTPC(mi.getTransactionPropagationContext()));
/* 375 */       ObjectName mbean = (ObjectName)Registry.lookup(invocation.getObjectName());
/* 376 */       if (mbean == null)
/*     */       {
/* 378 */         System.err.println("NoSuchObjectException: " + invocation.getObjectName());
/* 379 */         throw new NoSuchObjectException("Failed to find target for objectName: " + invocation.getObjectName());
View Full Code Here

TOP

Related Classes of org.jboss.invocation.pooled.interfaces.PooledMarshalledInvocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.