Using Spring boot configuration i have the exception
Caused by: java.net.MalformedURLException: no protocol: /CustomerService
How to put a relative (to the deployed webapp) url?
@Bean
public EndpointImpl endpoint(ICustomerService customerService) {
EndpointImpl endpoint = new EndpointImpl(cxfBus, new WCustomerService(customerService) );
endpoint.publish("/CustomerService");
return endpoint;
}
Looks like you need to pass a valid URL as a string to publish as you can see that in the below function. It is a snippet of EndpointImpl.java. Hope this helps.