"HelloPortType"));
ep.setEndpoint("HelloPortTypeImplPort");
comp.setEndpoints(new CxfBcEndpointType[] {ep});
jbi.activateComponent(comp, "servicemix-cxfbc");
CxfSeComponent seComp = new CxfSeComponent();
CxfSeEndpoint endpoint = new CxfSeEndpoint();
endpoint.setPojo(new HelloPortTypeImpl());
seComp.setEndpoints(new CxfSeEndpoint[] {endpoint});
jbi.activateComponent(seComp, "servicemix-cxfse");
URL wsdl = getClass().getResource("/HelloWorld-DOC.wsdl");
assertNotNull(wsdl);
HelloService helloService = new HelloService(wsdl, serviceName);
HelloPortType port = helloService.getHelloPort();