SocketServerInstanceImpl instance = createInstance(channel);
//no remote server is hooked up, so this will timeout
ILogon logon = instance.getService(ILogon.class);
try {
logon.logon(new Properties());
fail("Exception expected"); //$NON-NLS-1$
} catch (TeiidComponentException e) {
assertTrue(e.getCause().getCause() instanceof TimeoutException);
}
}