WARNING: This tutorial is being written! Do not hesitate to report any errors or suggestions.
The procedure for creating a new NWS project through Eclipse is relatively simple. You simply have to follow the next procedure.
WEB-INF/classes
WEB-INF/lib
WEB-INF/sources
WEB-INF/web.xml
01 <?xml version="1.0" encoding="UTF-8"?> 02 <!DOCTYPE web-app PUBLIC 03 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" 04 "http://java.sun.com/dtd/web-app_2_3.dtd"> 05 06 07 <web-app> 08 09 <display-name>Virtual Caddy - NWS Sample</display-name> 10 <description>NWS Sample</description> 11 12 <servlet> 13 <servlet-name>NWS Servlet</servlet-name> 14 <servlet-class>corelib.services.web.server.ControllerServlet</servlet-class> 15 </servlet> 16 17 <servlet-mapping> 18 <servlet-name>NWS Servlet</servlet-name> 19 <url-pattern>*.wp</url-pattern> 20 </servlet-mapping> 21 22 </web-app>
Dominique LIARD - © 2007 SARL Infini Software - All rights reserved Other brands and product names in these documents are the property of their respective owners.