After installing mod_jk to test my server under a productions system, I
found
that if the URI contains a %2f in the URL path, mod_jk2, or possibly
Apache,
ignores the URI mapping to the Web Application Server (Tomcat 4.1.30)
Note: I am using the latest source release of mod_jk2, Apache 2.0.50 a
> - The user would configure logging in Tomcat using a separate configuration file,
>simplifying the actual Tomcat configuration. I am assuming that the DTD for
>sevlet.xml is not part of the Servlet spec so it can be modified without fear of
>contradicting the spec.
>
> Anyway,
I had a similar problem with 3.1. The problem was that I was capturing
the servlet request, service() and reading the input stream which consisted
of XML. When I was done, I was not calling close and I was always left
with a TIME_WAIT socket. Closing the stream fixed the problem, but I
had this pr
I have developed a servlet that receives request by overiding
httpServlet#service() and sends a response. The traffic back
an forth is a small XML formatted block ( < 1K ). To test my
servlet, I have a simple java application that formats requests
and sends them to the Servlet through URL Connec