Re: Help please - Session timeout problem

2002-10-16 Thread Bill Leath

Thanks.

Bill

Luis Manuel Menes Barajas wrote:

> Or you can use the custom tags from jakarta project (Taglibs), this contains
> a set of session tag, and work very well
>
> --
> Luis Manuel Menes Barajas, [EMAIL PROTECTED] on 10/15/2002
>
> On 15 Oct 2002 16:23:23 -0700, Dave Patton wrote:
> >I believe you can use Tomcat's built-in admin application to set
> >session
> >timeouts as well.  You can also specify them in your web.xml file for
> >each application.  But the only way to check outside the application
> >is
> >to write a webapp that has access to all the ServletContext objects
> >running in Tomcat, from which you can get the Session and call the
> >method getMaxInactiveInterval.  That's all I can think of -- Anyone
> >else?
> >
> >Dave Patton
> >
> >On Tue, 2002-10-15 at 16:07, Bill Leath wrote:
> >>Thanks Dave,
> >>
> >>Do you know of any way to check outside an application?  Like on
> >>the linux command
> >>line or through a web interface?
> >>
> >>Thanks again,
> >>
> >>Bill
> >>
> >>Dave Patton wrote:
> >>
> >>>check int HttpSession.getMaxInactiveInterval()
> >>>
> >>>On Tue, 2002-10-15 at 13:44, Bill Leath wrote:
> Hello,
> 
> I am having a problem with sessions timing out using Tomcat 4.1
> on linux
> 7.2.  I have set the following line in the server.xml file:
> connectionTimeout="12"  I then stopped and restarted
> Tomcat.
> 
> I have two questions:
> 1)Is there any way to verify that connectionTimeout is now
> 12?
> 2)Is there some other place where the server.xml
> connectionTimeout is
> overwritten?
> 
> Thanks in advance.
> 
> Bill
> 
> 
> --
> To unsubscribe, e-mail:    [EMAIL PROTECTED]>
> For additional commands, e-mail:  [EMAIL PROTECTED]>
> >>>
> >>>--
> >>>To unsubscribe, e-mail:    >>>[EMAIL PROTECTED]>
> >>>For additional commands, e-mail:  >>>[EMAIL PROTECTED]>
> >>
> >>
> >>--
> >>To unsubscribe, e-mail:    >>[EMAIL PROTECTED]>
> >>For additional commands, e-mail:  >>[EMAIL PROTECTED]>
> >
> >
> >--
> >To unsubscribe, e-mail:    >[EMAIL PROTECTED]>
> >For additional commands, e-mail:  >[EMAIL PROTECTED]>
>
> --
> To unsubscribe, e-mail:   
> For additional commands, e-mail: 


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Help please - Session timeout problem

2002-10-15 Thread Luis Manuel Menes Barajas

Or you can use the custom tags from jakarta project (Taglibs), this contains
a set of session tag, and work very well

--
Luis Manuel Menes Barajas, [EMAIL PROTECTED] on 10/15/2002


On 15 Oct 2002 16:23:23 -0700, Dave Patton wrote:
>I believe you can use Tomcat's built-in admin application to set
>session
>timeouts as well.  You can also specify them in your web.xml file for
>each application.  But the only way to check outside the application
>is
>to write a webapp that has access to all the ServletContext objects
>running in Tomcat, from which you can get the Session and call the
>method getMaxInactiveInterval.  That's all I can think of -- Anyone
>else?
>
>Dave Patton
>
>On Tue, 2002-10-15 at 16:07, Bill Leath wrote:
>>Thanks Dave,
>>
>>Do you know of any way to check outside an application?  Like on
>>the linux command
>>line or through a web interface?
>>
>>Thanks again,
>>
>>Bill
>>
>>Dave Patton wrote:
>>
>>>check int HttpSession.getMaxInactiveInterval()
>>>
>>>On Tue, 2002-10-15 at 13:44, Bill Leath wrote:
Hello,

I am having a problem with sessions timing out using Tomcat 4.1
on linux
7.2.  I have set the following line in the server.xml file:
connectionTimeout="12"  I then stopped and restarted
Tomcat.

I have two questions:
1)Is there any way to verify that connectionTimeout is now
12?
2)Is there some other place where the server.xml
connectionTimeout is
overwritten?

Thanks in advance.

Bill


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 
>>>
>>>--
>>>To unsubscribe, e-mail:   >>[EMAIL PROTECTED]>
>>>For additional commands, e-mail: >>[EMAIL PROTECTED]>
>>
>>
>>--
>>To unsubscribe, e-mail:   >[EMAIL PROTECTED]>
>>For additional commands, e-mail: >[EMAIL PROTECTED]>
>
>
>--
>To unsubscribe, e-mail:   [EMAIL PROTECTED]>
>For additional commands, e-mail: [EMAIL PROTECTED]>



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Help please - Session timeout problem

2002-10-15 Thread Dave Patton

I believe you can use Tomcat's built-in admin application to set session
timeouts as well.  You can also specify them in your web.xml file for
each application.  But the only way to check outside the application is
to write a webapp that has access to all the ServletContext objects
running in Tomcat, from which you can get the Session and call the
method getMaxInactiveInterval.  That's all I can think of -- Anyone
else?

Dave Patton

On Tue, 2002-10-15 at 16:07, Bill Leath wrote:
> Thanks Dave,
> 
> Do you know of any way to check outside an application?  Like on the linux command
> line or through a web interface?
> 
> Thanks again,
> 
> Bill
> 
> Dave Patton wrote:
> 
> > check int HttpSession.getMaxInactiveInterval()
> >
> > On Tue, 2002-10-15 at 13:44, Bill Leath wrote:
> > > Hello,
> > >
> > > I am having a problem with sessions timing out using Tomcat 4.1 on linux
> > > 7.2.  I have set the following line in the server.xml file:
> > > connectionTimeout="12"  I then stopped and restarted Tomcat.
> > >
> > > I have two questions:
> > > 1)Is there any way to verify that connectionTimeout is now 12?
> > > 2)Is there some other place where the server.xml connectionTimeout is
> > > overwritten?
> > >
> > > Thanks in advance.
> > >
> > > Bill
> > >
> > >
> > > --
> > > To unsubscribe, e-mail:   
> > > For additional commands, e-mail: 
> >
> > --
> > To unsubscribe, e-mail:   
> > For additional commands, e-mail: 
> 
> 
> --
> To unsubscribe, e-mail:   
> For additional commands, e-mail: 


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Help please - Session timeout problem

2002-10-15 Thread Bill Leath

Thanks Dave,

Do you know of any way to check outside an application?  Like on the linux command
line or through a web interface?

Thanks again,

Bill

Dave Patton wrote:

> check int HttpSession.getMaxInactiveInterval()
>
> On Tue, 2002-10-15 at 13:44, Bill Leath wrote:
> > Hello,
> >
> > I am having a problem with sessions timing out using Tomcat 4.1 on linux
> > 7.2.  I have set the following line in the server.xml file:
> > connectionTimeout="12"  I then stopped and restarted Tomcat.
> >
> > I have two questions:
> > 1)Is there any way to verify that connectionTimeout is now 12?
> > 2)Is there some other place where the server.xml connectionTimeout is
> > overwritten?
> >
> > Thanks in advance.
> >
> > Bill
> >
> >
> > --
> > To unsubscribe, e-mail:   
> > For additional commands, e-mail: 
>
> --
> To unsubscribe, e-mail:   
> For additional commands, e-mail: 


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Help please - Session timeout problem

2002-10-15 Thread Dave Patton

check int HttpSession.getMaxInactiveInterval()

On Tue, 2002-10-15 at 13:44, Bill Leath wrote:
> Hello,
> 
> I am having a problem with sessions timing out using Tomcat 4.1 on linux
> 7.2.  I have set the following line in the server.xml file:
> connectionTimeout="12"  I then stopped and restarted Tomcat.
> 
> I have two questions:
> 1)Is there any way to verify that connectionTimeout is now 12?
> 2)Is there some other place where the server.xml connectionTimeout is
> overwritten?
> 
> Thanks in advance.
> 
> Bill
> 
> 
> --
> To unsubscribe, e-mail:   
> For additional commands, e-mail: 


--
To unsubscribe, e-mail:   
For additional commands, e-mail: