sessionService1 = client.newSessionService(TestConstants.sesServiceName1);
msgCallback1 = new MsgCallback(sessionService1);
response = sessionService1.createSession(request, msgCallback1);
// disable service
SCMgmtClient clientMgmt = new SCMgmtClient(TestConstants.HOST, TestConstants.PORT_SC0_TCP);
clientMgmt.attach();
clientMgmt.disableService(TestConstants.sesServiceName1);
clientMgmt.detach();
// execute
request.setMessageInfo(TestConstants.echoCmd);
response = sessionService1.execute(request);
Assert.assertEquals("message body is not the same length", request.getDataLength(), response.getDataLength());