Just started using JAX-WS. I created 2 test web services in the one WAR file as follows....
package com.djs;
import javax.jws.WebService;
@WebService()
pub
Dave,
I guess you are missing the servlet-mapping for the two end points you have.
Add the following to your web.xml and try again. Let me know if this solve the problem.
AddTwoInts
com.sun.xml.ws.transport.http.servlet.WSServlet
AddTwoInts
/AddTwoInts
SayHello
com.sun.xml.ws.transport.http.servlet.WSServlet
SayHello
/SayHello