Unable to access Java SOAP service when deployed using Docker
I have this simple Java SOAP service which works fine in the local machine. import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebService; import javax.xml.ws.Endpoint; @WebService public class EchoService { @WebMethod public String echo(@WebParam(name = "message") String message) { return message; } public…