use of org.apache.activemq.artemis.tests.integration.rest.util.RestAMQConnection in project activemq-artemis by apache.
the class RestDeserializationTest method deployAndconfigureRESTService.
private void deployAndconfigureRESTService(String warFileName) throws Exception {
jmsServer.createTopic(false, "ordersTopic", (String[]) null);
File warFile = getResourceFile("/rest/" + warFileName, warFileName);
deployWebApp("/restapp", warFile);
server.start();
String uri = server.getURI().toASCIIString();
System.out.println("Sever started with uri: " + uri);
restConnection = new RestAMQConnection(uri);
}
Aggregations