| Author |
mapping a servlet to multiple urls.
|
kamal krishna bhatt
Ranch Hand
Joined: Apr 26, 2011
Posts: 41
|
|
how can we map a servlet to the number of urls in web.xml but condition is url name should be fully qualified i.e. like http://x.x.x.x/abc/pqr and can we write all these urls in a separate file and fill them in to web.xml.
|
 |
Stoian Azarov
Ranch Hand
Joined: Jun 01, 2011
Posts: 111
|
|
HTH
|
 |
kamal krishna bhatt
Ranch Hand
Joined: Apr 26, 2011
Posts: 41
|
|
ya that is right but it is not working when i give URL as <url-pattern>http://x.x.x.x/project1/test</url-pattern>
....
works fine only when i give URL as <url-pattern>/test</url-pattern>
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56179
|
|
|
Right. You do not include the protocol and domain in the mapping. Just the path relative to the deployed application.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: mapping a servlet to multiple urls.
|
|
|