* Description: exchange message after server was aborted with operation timeout = 30<br>
* Expectation: throws SCServiceException
*/
@Test(expected = SCServiceException.class)
public void t33_execute() throws Exception {
SCMessage request = new SCMessage(TestConstants.pangram);
request.setCompressed(false);
SCMessage response = null;
sessionService1 = client.newSessionService(TestConstants.sesServiceName1);
msgCallback1 = new MsgCallback(sessionService1);
response = sessionService1.createSession(request, msgCallback1);
ctrl.stopServer(srvCtxs.get(TestConstants.sesServerName1));