@Test
public void testCamel1145Route() throws Exception {
URL wsdlURL = new URL("http://localhost:9000/PersonService/?wsdl");
PersonService ss = new PersonService(wsdlURL, new QName("http://camel.apache.org/non-wrapper", "PersonService"));
Person client = ss.getSoap();
GetPerson request = new GetPerson();
request.setPersonId("hello");
GetPersonResponse response = client.getPerson(request);
assertEquals("we should get the right answer from router", "Bill", response.getName());
assertEquals("we should get the right answer from router", "Test", response.getSsn());
assertEquals("we should get the right answer from router", "hello world!", response.getPersonId());