hi all,
i made a web application through netbeans and in its web.xml file i set the session timeout as according to my requirement(let's say 1 min.)and then i made a class implementing sessionlistener and in its session destroyed method i removed the atribute(say empno) from session.
The whole application works fine but problem arised due to the fact that session timeout is applied on every other webapplication.
is there any way to assign session timeout to only a single application.
Thanks

In web server like Tomcat there is a web.xml located at <tomcat_home>\conf\web.xml
The <session-timeout> tag there is applied to all the web applications by default

This value can be overridden in web.xml of each web application which is located at <tomcat_home>\webapps\<your_app>\WEB-INF\web.xml

You can also override programmatically using HttpSession.setMaxInactiveInterval(int interval);
for each session

Check for the web server that you are using.
Hope this will help you

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.