Object[] objects = client.invoke(new QName("http://cxf.apache.org/jra", "getCustomers"),
new GetCustomers());
assertNotNull(objects);
Customers c = (Customers) objects[0];
Customer customer = c.getCustomer().iterator().next();
assertEquals("Dan Diephouse", customer.getName());
GetCustomer getCustomer = new GetCustomer();
getCustomer.setId(customer.getId());
objects = client.invoke(new QName("http://cxf.apache.org/jra", "getCustomer"), getCustomer);