@Test
public void testEcho()
{
RegisterBuiltin.register(ResteasyProviderFactory.getInstance());
HelloClient client = ProxyFactory.create(HelloClient.class, "http://localhost:9095");
Assert.assertEquals(SPACES_REQUEST, client.sayHi(SPACES_REQUEST));
Assert.assertEquals(QUERY, client.compile(QUERY));
}