++++ Michael D. Kirkpatrick wrote on 01.04.2003 17:05 ++++
in general I would not recommend to set the string in the web.xml.I am not quite sure if this question is suitable for this mailing list. If not, please forgive me.
[snip]
So here is my question. How can I capture the original query string or make the query string in web.xml dynamic?
first part of your question: you can read out any parameter of a post or get string by request.getParameter(String parametername);
second part: there are multiple ways to manipulate the request parameters: java -> request.setAttribute(String attributename, String value); or by hidden fields in html forms or with select-fields which are submitted . . .
I would suggest:
read out the site the user is coming from with
String mysite = request.getParameter("site");
(of course you have to add this to the string somewhere on the original page)
write it to newly generated links:
out.println("passwordsubmitter.jsp?site=" + mysite);
or sth like this . . .
there's one on the apache.org site I think -> struts . . .I am also looking for mailing lists for the following: Struts Questions
no mailing but extremely cool & helpful people there and also mailing mechanisms to keep track of your threads:General Java Questions J2EE Questions
http://forums.java.sun.com/
Have fun,If anyone can point me in the right direction, it would be greatly appreciated.
Thanks in advance.
Henning
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
