Mufaddal,
Wouldnt it be nice a feature like this that one can turn on or off
globally in a container like tomcat ? The existing way to granularly do
it should remain, but a global way to do it would be nice ..
Feel free to submit a patch :)
-chris
---
Wouldnt it be nice a feature like this that one can turn on or off
globally in a container like tomcat ? The existing way to granularly do
it should remain, but a global way to do it would be nice ..
On Tuesday, November 18, 2003, at 09:13 AM, Christopher Schultz wrote:
Mufaddal,
Are there som
Mufaddal,
Are there some
configuration settings in Tomcat 4.1.x that can be set in say the
server.xml or web.xml that can be used ?
Nope. Tomcat won't look through your responses for things that look like
URLs and append all the things you need (like sessison id, etc.).
However, if you are usin
In order to enable URL rewriting as opposed to storing cookies
automatically we need to use the encodeURL(String url) or
encodeRedirectURL(String url) method in the Servlets and/or JSPs. Is
there a more easier way to do this as opposed to going thru the entire
webapp and doing this for every UR
cc:
Subject: RE: Customize Url Rewriting +
QUESTION
07/30/2001
12:33
MoreElements()) {
String name = (String) names.nextElement();
out.println(" " + name + " = " + session.getAttribute(name));
}
}
}
/********/
/* POST method.
> cc:
Subject: RE: Customize Url Rewriting +
QUESTION
07/30/2
Yes you can, I'm developping a URLRewriter servlet because of the problemSSS
I
encounter using mod_rewrite alone :(
I Load it on startup and manage myself the url rewriting by using
response.sendRedirect or
myMainApplicatioSerlvet.doGet(request,response) + some simple rules ;)
Using servlet alias