* proxies can be configured the same way as HTTP-centric WebClients and response status and headers can
* also be checked. HTTP response errors can be converted into typed exceptions.
*/
public void useSimpleProxy() {
String webAppAddress = "http://localhost:" + port + "/services/personservice";
PersonService proxy = JAXRSClientFactory.create(webAppAddress, PersonService.class);
new PersonServiceProxyClient(proxy).useService();
}