Re: I have /subapp/a and /subapp/b. Can i have different sessions for them?

2012-05-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Teo, On 5/18/12 3:37 PM, Teo wrote: > Let's say i have 2 main entry points into my application: /subapp/a > and /subapp/b. They are part of the same webapp but they are > somehow different and i want to distinguish between them. Having a > separate se

Re: TC7: trigger seeding of SecureRandom

2012-05-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jamie, On 5/21/12 3:18 AM, Jamie wrote: > We've just upgraded out web app to TC7. It seems the following is > being outputted repeatedly on the console for each page load: > > trigger seeding of SecureRandom done seeding SecureRandom Hmm. > Closer

Re: Threads in Tomcat

2012-05-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Vance, On 5/18/12 12:29 PM, Vance - wrote: > The servlet I have in mind for modification is the one responsible > for performing the search as well as for getting the next page of > search results. If one or more of the wikis is unavailable, I want >

Re: aliases attribute tomcat7

2012-05-21 Thread Pid
On 17/05/2012 07:11, Michael Ravits wrote: > Hey Pidster, > > This is the tag I've used: > > aliases="/img/images=/home/michaelr/images,/img/thumbs=/home/michaelr/thumbs"> > > It could have been a permissions problem but I gather that if docBase > works, this must work as well permission wise.

Re: DefaultServlet socketWrite hang

2012-05-21 Thread Filip Hanik Mailing Lists
if you look deeper under the hood of Java NET/IO you will see that there is no configurable timeout for writing blocking IO. The best thing you can do is upgrade to Tomcat 6, and use the NIO connector (protocol="org.apache.coyote.http11.Http11NioProtocol") as that has a configurable timeout for

RE: Threads in Tomcat

2012-05-21 Thread Casper Wandahl Schmidt
A little late for the party but nonetheless: I'm using Quartz for something similar. I use a framework that has a startup and shutdown hook. This I where I configure Quartz and launch the thread/worker (in startup hook) and shutting it down nicely (in shutdown hook). This way you don't have to

Re: TC7: trigger seeding of SecureRandom

2012-05-21 Thread Pid
On 21/05/2012 08:18, Jamie wrote: > Hi There > > We've just upgraded out web app to TC7. It seems the following is being > outputted repeatedly on the console for each page load: > > trigger seeding of SecureRandom > done seeding SecureRandom Can you post the full information from the log file,

Re: Isapi redirector log file is always empty - IIS 7.5 - Tomcat 7.0.26 - Isapi 1.2.30 - Win2008 R2

2012-05-21 Thread Pid
On 18/05/2012 00:58, ann ramos wrote: > Hi, > > I have set up our system to do SSO. The setup works fine because whenever > the user access the system, they are automatically logged in to the system. > > Following are the steps that I used to set up Isapi: > 1. Manually created the folders "Apa

TC7: trigger seeding of SecureRandom

2012-05-21 Thread Jamie
Hi There We've just upgraded out web app to TC7. It seems the following is being outputted repeatedly on the console for each page load: trigger seeding of SecureRandom done seeding SecureRandom Closer inspection reveals, the Tomcat class SessionIdGenerator using SecureRandom. Is this norm