}
@Test
public void testJaxWsBean() throws Exception {
HttpPost post = new HttpPost("http://localhost:9090/customerservice/customers");
post.addHeader("Accept" , "text/xml");
String body = "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"
+ "<soap:Body><GetPerson xmlns=\"http://camel.apache.org/wsdl-first/types\">"
+ "<personId>hello</personId></GetPerson></soap:Body></soap:Envelope>";
StringEntity entity = new StringEntity(body, "ISO-8859-1");