serverConnection.start();
//Set up the consumer
Connection clientConnection = getConnection("test", "client", "guest");
Session clientSession = clientConnection.createSession(true, Session.SESSION_TRANSACTED);
Queue responseQueue = clientSession.createTemporaryQueue();
MessageConsumer clientResponse = clientSession.createConsumer(responseQueue);
clientConnection.start();
// Client
Message request = clientSession.createTextMessage("Request");