This Blog has moved to http://www.falsepositives.com/

False Positives Adventures in Technology, SciFi and Culture from Toronto

Thursday, October 14, 2004

Hide .jsp Names from the URL

Via Dex Tip of the DayHiding .jsp Names from the URL:

There are instances when .jsp names need to be hidden from the URL. This can be done using various design techniques. But if your application is small and simle enough that it doesn't even require a servlet, you can hide a real URL by defining a mapping in the web.xml file. Here is a snippet from the web.xml file:


<servlet>
<servlet-name>admin.jsp</servlet-name>
<jsp-file>/admin.jsp</jsp-file>
</servlet>

<servlet-mapping>

<servlet-name>admin.jsp</servlet-name>
<url-pattern>/company.myco.admin</url-pattern>
</servlet-mapping>

Now the url can point to /company.myco.admin, which would actually take the user to /admin.jsp.

Extra thanks to Puneet Sangal, whom authored the tip, and the Tip Bank


Please Note that this Blog (False Positives) has moved to http://www.falsepositives.com/

0 Comments:

Post a Comment

<< Home