On Thu, Nov 22, 2007 at 05:24:03PM +0100, Rainer Jung wrote:
> Christoph P. Kukulies wrote:
> >Thanks for the replies.
> >
> >I managed it finally with ProxyPass and ProxyPassReverse
> >
> >What has caused all the headache was the fact that
> >the backend server (application server that ran the for
agreed ..Diagnostic tools are a good ideaAlso if you determine you're using too
many threads take a look at implementing ThreadPools which allows you to
configure min_spare_threads, max_threads and max_spare_threads/ connector
http://marc.info/?l=tomcat-user&m=103598932529887&w=2
HTH/Martin_
Hello
into one apache http server i can to map one directory to oen alias
can i make it into tomcat?
i only uses into this server tomcat without apache
thanks
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscrib
>From Apache httpd.conf
Directory information such as location and permissions are configured via the
Directory directive
http://httpd.apache.org/docs/1.3/mod/core.html#directoryMartin
__Disclaimer and confidentiality
noteEverything in this e-mail an
> If you were using apache infront of tomcat you can use the proxy to do
> this for you I think
>
> ProxyPass / ajp13://localhost:8009/app/
>
> any requests for '/' go to '/app/' on tomcat
David,
I'm experimenting Apache2.2+mod_proxy_* in front of Tomcat5.5.
I have simply put:
ProxyPass /blog/
add another CNAME (Canonical Name) for
http://foo.example.comhttp://httpd.apache.org/docs/1.3/vhosts/examples.html#purename
Martin __Disclaimer and
confidentiality noteEverything in this e-mail and any attachments relates to
the official business of
Hi,
I have a servlet defined in web.xml and this is how I defined it
controllerServlet
tests.servlets.ControllerServlet
controllerServlet
/control
I am trying to call this servlet from a JSP page using HTML form.
Th
You have to look at it from the client side since that's where the path
to the resource is constructed. If you'd like the more stable server
relative path to a form, then do this in your jsp:
form body ..
${request.contextPath} returns the server relative path of your webapp
a
Let say that the tag will have to generate the image with a text given as an
attribute, and it takes "time" so I want the page to continue:
.
-Original Message-
From: David Cassidy [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 22, 2007 6:08 PM
To: Tomcat Users List
Subject: Re: