java - How can I remove port from the endpoint? -
i write simple web service. after deploying endpoint url this: http://mycomputer1:80/mywebservices/myservice
@webservice(name="myservice", servicename = "mywebservices") public interface imyservice{ // code }
how can remove port 80 endpoit next url: http://mycomputer1:80/mywebservices/myservice
port 80 default port http, endpoint work without specifying port. no need work "remove" it.
Comments
Post a Comment