Package org.jboss.test.pooled.interfaces

Examples of org.jboss.test.pooled.interfaces.StatelessSession.noop()


         for (int i = 0; i < iterations; i++)
         {
            try
            {
               StatelessSession obj = home.create();
               obj.noop();
              
            }
            catch(Throwable t)
            {
               //t.printStackTrace();
View Full Code Here


      log.debug("Created StatelessSessionWithPooledSSL");
      Principal p = bean.echoCaller("testClientCertSSLAccess");
      log.debug("bean.echoCaller(testClientCertSSLAccess) = " + p);
      try
      {
         bean.noop();
         fail("Should not have been able to call noop");
      }
      catch(RemoteException e)
      {
         log.debug("noop failed as expected", e);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.