wc.accept(MediaType.APPLICATION_XML);
List<Person> persons = getPersons(wc);
// Get individual persons using JSON
System.out.println("Getting individual persons using JSON...");
wc.reset().accept(MediaType.APPLICATION_JSON);
for (Person person : persons) {
// Move forward, for example, given that web client is currently
// positioned at
// personServiceURI and a current person id such as 4, wc.path(id)
// will point