> I have a page url like this:
> http://servername:8080/test/Data?abc=2&cwe=n
[quoted text clipped - 14 lines]
> <url-pattern>/mynewname</url-pattern>
> </servlet-mapping>
You cannot put parameters in a servlet mapping.
You can say
<servlet-mapping>
<servlet-name>Data</servlet-name>
<url-pattern>/mynewname</url-pattern>
</servlet-mapping>

Signature
Lew
Owen Jacobson - 12 Dec 2007 04:39 GMT
> franca...@yahoo.com wrote:
> > I have a page url like this:
[quoted text clipped - 17 lines]
>
> You cannot put parameters in a servlet mapping.
But you might put either another servlet in front (to generate the
appropriate parameters), add a request filter (likewise), or put
apache in front and use mod_rewrite to change one URL to the other
before your servlet container sees it.
-o