The moose likes Servlets and the fly likes ServletContext Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "ServletContext" Watch "ServletContext" New topic
Author

ServletContext

Saritha Pilla
Greenhorn

Joined: Feb 25, 2000
Posts: 15
Hi ,
Can somebody tell me how to configure a servlet context for a given Application in JavaWebServer 2.0?
Thank You
Saritha
varalakshmi allamaraju
Greenhorn

Joined: May 26, 2000
Posts: 2
Enter the following code in the deployment descriptor.
<context-param>
<param-name>some name</param-name>
<param-value>some value</param-value>
</context-param>
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: ServletContext