stevel 2002/10/30 11:44:29 Modified: java/src/org/apache/axis/transport/http AdminServlet.java AxisServlet.java java/src/org/apache/axis/monitor SOAPMonitorService.java Log: adding xdoclet markup to the files, so we can autogenerate web.xml. We do not actually do that for axis yet; this little hack is here so that if you have your own webapp that uses xdoclet to create its web.xml, you can include the axis source to get the axis stuff in there too. Plus we may want xdoclet in the future, as it is brill. Revision Changes Path 1.22 +4 -0 xml-axis/java/src/org/apache/axis/transport/http/AdminServlet.java Index: AdminServlet.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/transport/http/AdminServlet.java,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- AdminServlet.java 18 Sep 2002 16:10:30 -0000 1.21 +++ AdminServlet.java 30 Oct 2002 19:44:28 -0000 1.22 @@ -76,6 +76,10 @@ * Right now just starts and stops the server. * * @author Glen Daniels ([EMAIL PROTECTED]) + * @author Steve Loughran + * xdoclet tags are not active yet; keep web.xml in sync + * @web.servlet name="AdminServlet" display-name="Axis Admin Servlet" load-on-startup="100" + * @web.servlet-mapping url-pattern="/servlet/AdminServlet" */ public class AdminServlet extends AxisServletBase { 1.149 +6 -0 xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java Index: AxisServlet.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java,v retrieving revision 1.148 retrieving revision 1.149 diff -u -r1.148 -r1.149 --- AxisServlet.java 23 Oct 2002 18:06:19 -0000 1.148 +++ AxisServlet.java 30 Oct 2002 19:44:28 -0000 1.149 @@ -96,6 +96,12 @@ /** * * @author Doug Davis ([EMAIL PROTECTED]) + * @author Steve Loughran + * xdoclet tags are not active yet; keep web.xml in sync + * @web.servlet name="AxisServlet" display-name="Apache-Axis Servlet" + * @web.servlet-mapping url-pattern="/servlet/AxisServlet" + * @web.servlet-mapping url-pattern="*.jws" + * @web.servlet-mapping url-pattern="/services/*" */ public class AxisServlet extends AxisServletBase { protected static Log log = 1.2 +5 -1 xml-axis/java/src/org/apache/axis/monitor/SOAPMonitorService.java Index: SOAPMonitorService.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/monitor/SOAPMonitorService.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SOAPMonitorService.java 6 Sep 2002 01:21:08 -0000 1.1 +++ SOAPMonitorService.java 30 Oct 2002 19:44:29 -0000 1.2 @@ -82,7 +82,7 @@ * the server socket (so the applet will know how to * connect back to the server). * - * Each time a socket conneciton is established, a new + * Each time a socket connection is established, a new * thread is created to handle communications from the * applet. * @@ -93,6 +93,10 @@ * display by the applet. * * @author Brian Price ([EMAIL PROTECTED]) + * xdoclet tags are not active yet; keep web.xml in sync + * @web.servlet name="SOAPMonitorService" display-name="SOAPMonitorService" load-on-startup="100" + * @web.servlet-mapping url-pattern="/SOAPMonitor" + * @web.servlet-init-param name="SOAPMonitorPort" value="5001" */ public class SOAPMonitorService extends HttpServlet {