} catch (TeiidProcessingException e) {
}
DQP dqp = connection.getService(DQP.class);
try {
ResultsFuture<?> future = dqp.begin();
future.get();
fail("exception expected"); //$NON-NLS-1$
} catch (Exception e) {
assertTrue(e.getMessage().indexOf("Component not found:") != -1); //$NON-NLS-1$
}