how to use a relative endoint address?

81 Views Asked by At

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; 
} 
1

There are 1 best solutions below

2
On

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.

public void More ...publish(String address) {
127        canPublish();
128        URL url;
129        try {
130            url = new URL(address);
131        } catch (MalformedURLException ex) {
132            throw new IllegalArgumentException("Cannot create URL for this address " + address);
133        }