TopicConnection c = (TopicConnection)getConnectionFactory().createConnection();
TopicSession s = c.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
try
{
s.createQueue("TestQueue");
ProxyAssertSupport.fail("should throw IllegalStateException");
}
catch (javax.jms.IllegalStateException e)
{
// OK