URL wsdl = getClass().getResource("/wsdl/calculator.wsdl");
// start external service
JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();
factory.setServiceClass(CalculatorPortType.class);
factory.setServiceBean(new CalculatorImpl());
factory.setWsdlURL(wsdl.toString());
factory.setServiceName(new QName("http://apache.org/cxf/calculator",
"CalculatorService"));
factory.setBindingId("http://schemas.xmlsoap.org/wsdl/soap12/");
String address = "http://localhost:9001/bridgetest";