public Response createJmsQueue(@Context UriInfo uriInfo, Document document)
{
try
{
JMSServerConfigParserImpl parser = new JMSServerConfigParserImpl();
TopicConfiguration topic = parser.parseTopicConfiguration(document.getDocumentElement());
HornetQTopic hqTopic = HornetQDestination.createTopic(topic.getName());
String topicName = hqTopic.getAddress();
ClientSession session = manager.getSessionFactory().createSession(false, false, false);
try
{