final SessionRequestMessage deathMsg = new SessionRequestMessage();
deathMsg.Session = BitWorks.convertUUIDToByteArray(sessionKey);
deathMsg.setRequestAsUUID(UUID.randomUUID());
deathMsg.metaSetKillSession(true);
inMsg = client.execute(deathMsg);
Assert.assertNotNull(inMsg.Session);
Assert.assertTrue(inMsg instanceof SessionResponseMessage);
//try to use the killed session
final ScriptRequestMessage scriptMessage = new ScriptRequestMessage();