This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
hi all, i have done a project in servlet... in that i have to give the url of servlet like.. http://computerName:8080/servlet/packageName.servletName now my problem is if i want to give my project to someone else the URl is going to change on his comp now i want to generalize my url so that if i copy it anywhere it should work what should i do??? Tankx in advance Bhupendra [This message has been edited by Mahajan Bhupendra (edited August 27, 2001).] [This message has been edited by Mahajan Bhupendra (edited August 27, 2001).]
<B>Bhupendra Mahajan</B>
Marcos Maia
Ranch Hand
Joined: Jan 06, 2001
Posts: 977
posted
0
I didn�t understand exactly what you mean but you coul�d use the init parameter from the web.xml file to pass a parameter without need to change the code. <init-param> <param-name>xxxxxxx</param-name> <param-value>xxxxxxxxxx</param-value> </init-param>