User: jules_gosnell
  Date: 01/09/17 12:56:48

  Modified:    src/resources/web/WEB-INF web.xml
  Log:
  Servlet mappings must start with a '/', if not a '*' according to Greg
  (Jetty author) and the Servlet Spec (I'll dig out the quote if anyone
  takes me to task on this one).
  Jetty is rather strict on this one. So I am having to be likewise.
  
  Revision  Changes    Path
  1.15      +2 -2      jbosstest/src/resources/web/WEB-INF/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/src/resources/web/WEB-INF/web.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- web.xml   2001/09/09 07:09:15     1.14
  +++ web.xml   2001/09/17 19:56:48     1.15
  @@ -123,7 +123,7 @@
       </servlet-mapping>
       <servlet-mapping>
           <servlet-name>IncludeServlet</servlet-name>
  -        <url-pattern>IncludeServlet</url-pattern>
  +        <url-pattern>/IncludeServlet</url-pattern>
       </servlet-mapping>
       <servlet-mapping>
           <servlet-name>SecureIncludeServlet</servlet-name>
  @@ -139,7 +139,7 @@
       </servlet-mapping>
       <servlet-mapping>
           <servlet-name>UnsecureEJBServlet</servlet-name>
  -        <url-pattern>UnsecureEJBAccess</url-pattern>
  +        <url-pattern>/UnsecureEJBAccess</url-pattern>
       </servlet-mapping>
       <servlet-mapping>
           <servlet-name>SecureEJBServletMT</servlet-name>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to