QueueConnection c = (QueueConnection)getConnectionFactory().createConnection();
QueueSession s = c.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
try
{
s.createTopic("TestTopic");
ProxyAssertSupport.fail("should throw IllegalStateException");
}
catch (javax.jms.IllegalStateException e)
{
// OK