Hi, I've upgraded to apache 2.0.48/mod_jk2/jakarta-tomcat-4.1.29 and the mappings in workers2.properties don't work correctly anymore. I was working with apache-2.0.46/mod_jk2/jakarta-tomcat-4.1.24. My uri mapping are : [uri:/*.jsp] worker=ajp13:localhost:8009 [uri:/servlet/*] worker=ajp13:localhost:8009 Jsp are working but not servlet. If I put a generic mapping [uri:/*], jsp and servlet don't work. If I put : [uri:/*.jsp] worker=ajp13:localhost:8009 [uri:/servlet/TheNameOfMyServlet] worker=ajp13:localhost:8009 The servlet works but I don't want to have to put a mapping for each servlet. Any idea ?