Package net.timewalker.ffmq3.jndi

Examples of net.timewalker.ffmq3.jndi.FFMQJNDIContext


          hasCreatedASession = true;
          ActivityWatchdog.getInstance().unregister(this);
        }
       
        // Use an internal hook to bridge the local session to the remote peer
        localSession.setNotificationProxy(new RemoteNotificationProxy(localSession.getId(),transport));
       
        return new CreateSessionResponse();
    }
View Full Code Here


          catch (JMSException e)
          {
              // Ignore
          }
         
          engine = new FFMQEngine(TestUtils.LOCAL_ENGINE_NAME,settings,null);
          engine.deploy();
         
//          engine.deleteQueue("TEST1");
//          engine.deleteQueue("TEST2");
//          engine.deleteTopic("TEST1");
View Full Code Here

   
    protected final void initDestination() throws JMSException
    {
        // Security : a consumer destination may only be set at creation time
        //            so we check permissions here once and for all.
        LocalConnection conn = (LocalConnection)session.getConnection();
        if (conn.isSecurityEnabled())
        {
            if (destination instanceof Queue)
            {
                String queueName = ((Queue)destination).getQueueName();
                if (conn.isRegisteredTemporaryQueue(queueName))
                {
                    // OK, temporary destination
                }
                else
                if (queueName.equals(FFMQConstants.ADM_REQUEST_QUEUE))
                {
                    // Only the internal admin thread can consume on this queue
                    if (conn.getSecurityContext() != null)
                        throw new FFMQException("Access denied to administration queue "+queueName,"ACCESS_DENIED");
                }
                else
                if (queueName.equals(FFMQConstants.ADM_REPLY_QUEUE))
                {
                    conn.checkPermission(Resource.SERVER, Action.REMOTE_ADMIN);
                }
                else
                {
                    // Standard queue
                    conn.checkPermission(destination,Action.CONSUME);
                }
            }
            else
            if (destination instanceof Topic)
            {
                String topicName = ((Topic)destination).getTopicName();
                if (conn.isRegisteredTemporaryTopic(topicName))
                {
                    // OK, temporary destination
                }
                else
                {
                    // Standard topic
                    conn.checkPermission(destination,Action.CONSUME);
                }
            }
        }
       
        // Lookup a local destination object from the given reference
View Full Code Here

        return new CloseConsumerResponse();
    }
   
    private RollbackMessageResponse processRollbackMessage( RollbackMessageQuery query ) throws JMSException
    {
      LocalConnection localConnection = getLocalConnection();
     
        LocalSession localSession = (LocalSession)localConnection.lookupRegisteredSession(query.getSessionId());
        if (localSession != null)
        {
            // Rollback undelivered prefetched messages
            List undeliveredMessageIDs = new ArrayList();
            undeliveredMessageIDs.add(query.getMessageId());
View Full Code Here

            System.out.println("Received : "+totalReceived);
            fail("Some messages were not received !");
          }
 
          // Check for remaining messages
          LocalQueue localQueue = engine.getLocalQueue(params.destinationName);
          assertEquals(0,localQueue.getSize());
      }
      catch (Exception e)
      {
        if (connection != null)
          connection.close();
View Full Code Here

                  break;
              Thread.sleep(100);
          }
         
          // When in non-transacted mode, the ack is sent _after_ message processing so we need to wait a bit
          LocalQueue localQueue = engine.getLocalQueue(params.destinationName);
          if (!params.receiverTransacted)
          {
            while (localQueue.getSize() > 0)
              Thread.sleep(10);
          }
         
          long endTime = System.currentTimeMillis();
          double rate = (double)totalExpected*1000/(endTime-startTime);
          System.out.println((endTime-startTime)+" ms ("+rateFormat.format(rate)+" msg/s)");

          int totalReceived = 0;
          for (int n = 0 ; n < receivers.length ; n++)
              totalReceived += receivers[n].getReceivedCount();
 
          // Close receivers
          for (int n = 0 ; n < receivers.length ; n++)
              receivers[n].close();
          for (int n = 0 ; n < receivers.length ; n++)
              terminateThread(receivers[n]);

          // Close connection
          listenerConnection.close();
          producerConnection.close();
         
          // Check for errors
          for (int n = 0 ; n < receivers.length ; n++)
              assertFalse(receivers[n].isInError());
          for (int n = 0 ; n < senders.length ; n++)
              assertFalse(senders[n].isInError());
         
          // Check received message count
          if (totalExpected != totalReceived)
          {
            System.out.println("Expected : "+totalExpected);
            System.out.println("Received : "+totalReceived);
            fail("Some messages were not received !");
          }
         
          // Check for remaining messages
            assertEquals(0,localQueue.getSize());
      }
      catch (Exception e)
      {
        if (listenerConnection != null)
          listenerConnection.close();
View Full Code Here

            System.out.println("Received : "+totalReceived);
            fail("Some messages were not received !");
          }
         
          // Check for remaining messages
            LocalQueue localQueue = engine.getLocalQueue(params.destinationName);
            assertEquals(0,localQueue.getSize());
      }
      catch (Exception e)
      {
        if (receiverConnections != null)
        {
View Full Code Here

                  break;
              Thread.sleep(100);
          }
         
          // When in non-transacted mode, the ack is sent _after_ message processing so we need to wait a bit
          LocalQueue localQueue = engine.getLocalQueue(params.destinationName);
          if (!params.receiverTransacted)
          {
            while (localQueue.getSize() > 0)
              Thread.sleep(10);
          }
         
          long endTime = System.currentTimeMillis();
          double rate = (double)totalExpected*1000/(endTime-startTime);
          System.out.println((endTime-startTime)+" ms ("+rateFormat.format(rate)+" msg/s)");

          int totalReceived = 0;
          for (int n = 0 ; n < receivers.length ; n++)
              totalReceived += receivers[n].getReceivedCount();

          // Close receivers
          for (int n = 0 ; n < receivers.length ; n++)
              receivers[n].close();
          for (int n = 0 ; n < receivers.length ; n++)
              receivers[n].join(5*1000);

          // Close connection
          for (int n = 0 ; n < receiverConnections.length ; n++)
              receiverConnections[n].close();
          for (int n = 0 ; n < sendersConnections.length ; n++)
              sendersConnections[n].close();
         
          // Check for errors
          for (int n = 0 ; n < receivers.length ; n++)
              assertFalse(receivers[n].isInError());
          for (int n = 0 ; n < senders.length ; n++)
              assertFalse(senders[n].isInError());
         
          // Check received message count
          if (totalExpected != totalReceived)
          {
            System.out.println("Expected : "+totalExpected);
            System.out.println("Received : "+totalReceived);
            fail("Some messages were not received !");
          }
         
          // Check for remaining messages
            assertEquals(0,localQueue.getSize());
      }
      catch (Exception e)
      {
        if (receiverConnections != null)
        {
View Full Code Here

                  break;
              Thread.sleep(100);
          }
         
          // When in non-transacted mode, the ack is sent _after_ message processing so we need to wait a bit
          LocalTopic localTopic = engine.getLocalTopic(params.destinationName);
          if (!params.receiverTransacted)
          {
              while (localTopic.getSize() > 0)
                  Thread.sleep(10);
          }

          long endTime = System.currentTimeMillis();
          double rate = (double)totalExpected*1000/(endTime-startTime);
          System.out.println((endTime-startTime)+" ms ("+rateFormat.format(rate)+" msg/s)");

          int totalReceived = 0;
          for (int n = 0 ; n < receivers.length ; n++)
              totalReceived += receivers[n].getReceivedCount();
         
          int topicSize = localTopic.getSize();
          if (topicSize > 0)
          {
              System.out.println("Expected : "+totalExpected);
              System.out.println("Received : "+totalReceived);
              System.out.println(localTopic);
              System.out.println(localTopic.getConsumersSummary());              
              TestUtils.dumpThreads();
              TestUtils.hang();
          }
         
          // Close receivers
View Full Code Here

                break;
            Thread.sleep(100);
        }

        // When in non-transacted mode, the ack is sent _after_ message processing so we need to wait a bit
        LocalTopic localTopic = engine.getLocalTopic(params.destinationName);
        if (!params.receiverTransacted)
        {
          while (localTopic.getSize() > 0)
            Thread.sleep(10);
        }
       
        long endTime = System.currentTimeMillis();
        double rate = (double)totalExpected*1000/(endTime-startTime);
        System.out.println((endTime-startTime)+" ms ("+rateFormat.format(rate)+" msg/s)");

        int totalReceived = 0;
        for (int n = 0 ; n < receivers.length ; n++)
            totalReceived += receivers[n].getReceivedCount();

        int topicSize = localTopic.getSize();
        if (topicSize > 0)
        {
            System.out.println("Expected : "+totalExpected);
            System.out.println("Received : "+totalReceived);
            System.out.println(localTopic);
            System.out.println(localTopic.getConsumersSummary());              
            TestUtils.dumpThreads();
            TestUtils.hang();
        }
       
        // Close receivers
View Full Code Here

TOP

Related Classes of net.timewalker.ffmq3.jndi.FFMQJNDIContext

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.