@Test
public void testEcho()
{
ResteasyClient client = new ResteasyClientBuilder().build();
ResteasyWebTarget target = client.target("http://localhost:9095");
HelloString proxy = target.proxy(HelloString.class);
String hello = proxy.sayHi("hello");
Assert.assertEquals("hello", hello);
}