> I'd like to do something like this:
> <welcome-file-list>
[quoted text clipped - 4 lines]
>
> But it fails because of the query string. Is there a way to do this?
You could map a servlet that redirects to that URL.

Signature
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
Chris Lott - 10 Jan 2006 01:41 GMT
Thanks... looks like I am going to have to learn a little bit of java--
I just need this one small tweak on a vendor's app :)
Tim B - 10 Jan 2006 02:10 GMT
> Thanks... looks like I am going to have to learn a little bit of java--
> I just need this one small tweak on a vendor's app :)
another possibility is to map a jsp which redirects to that url using the
<jsp:forward> tag, e.g.
<jsp:forward page="mytarget.jsp">
<jsp:param name="sort_order" value="title"/>
</jsp:forward>
this would probably be simpler than using a servlet if you don't know Java