I created a one-table JPA project very easily using the excellent reverse engineering tools in MyE! (So cool.)
And, I have it auto-deployed and synchronized in Tomcat. Cool again.
—
But, oops, I forgot to actually add the JAX-WS stuff. I have no WSDL, etc.
So, how do I add/refactor this JAP project so I can then deploy it as a JAX WS Service?
So far, my web.xml only has …
<?xml version=”1.0″ encoding=”UTF-8″?>
<web-app xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns=”http://xmlns.jcp.org/xml/ns/javaee” xsi:schemaLocation=”http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd” version=”4.0″>
<display-name>WebServiceJAXWS</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
—
Thanks very much in advance for your help and suggestions.