protected void assertValidContext(CamelContext context) {
assertNotNull("No context found!", context);
}
protected void startService() {
Object implementor = new PersonImpl();
String address = "http://localhost:9000/PersonService/";
Endpoint.publish(address, implementor);
}