vmassol     01/08/30 05:13:49

  Modified:    cactus/conf/sample/conf/test/share web.xml
  Log:
  add trailing "/" to URLs so that HttpURLConnection does not handle status code > 400 
as errors and throw a FileNotFoundException
  
  Revision  Changes    Path
  1.2       +2 -2      jakarta-commons/cactus/conf/sample/conf/test/share/web.xml
  
  Index: web.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/cactus/conf/sample/conf/test/share/web.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- web.xml   2001/06/17 18:12:10     1.1
  +++ web.xml   2001/08/30 12:13:49     1.2
  @@ -26,12 +26,12 @@
   
       <servlet-mapping>
           <servlet-name>ServletRedirector</servlet-name>
  -        <url-pattern>/ServletRedirector</url-pattern>
  +        <url-pattern>/ServletRedirector/</url-pattern>
       </servlet-mapping>
   
       <servlet-mapping>
           <servlet-name>JspRedirector</servlet-name>
  -        <url-pattern>/JspRedirector</url-pattern>
  +        <url-pattern>/JspRedirector/</url-pattern>
       </servlet-mapping>
   
   </web-app>
  
  
  

Reply via email to