-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Agareppe,
On 11/6/13, 8:02 AM, Agareppe wrote:
> I create an extension of the tomcat PersistenceManager. It writes
> every session change into the database
What's wrong with the existing PersistenceManager + JDBCStore?
- -chris
-BEGIN PGP SIGN
I create an extension of the tomcat PersistenceManager.
It writes every session change into the database
Of course that the request performance is not the same.
But for the ppl that is looking for this could be useful,
Is not that much code
I haven't shared it in git, but if you are still look
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Matthew,
On 2/10/12 1:26 PM, Matthew Marleau wrote:
> I was wondering if anyone knew how to configure Tomcat (6.0.26) to
> only start the default app when the Tomcat service starts.
The manager webapp isn't the "default" webapp. If you mean the ROOT
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Gerhard,
On 3/24/2011 1:49 PM, Gaugusch, Gerhard wrote:
> is there a way to configure tomcat 6 to use basic authentication only
> on https connectors? I know that it is possible to define in each
> deployed application via web.xml to allow only https
Thanks Martin Grotzke for the answer.
"Its's not possible with PersistentManager. PersistentManagerBase
backups all sessions in batches (processMaxIdleSwaps(),
processMaxIdleBackups() are called by the background thread). You
might try to set maxIdleBackup and maxIdleSwap to 0. But even then
sess
Any idea why the session does not get persisted to the database
immediately (when setting maxIdleSwap='0'). Or is there any other
possible way to "Always Load" and "Always Save Sessions" from the
database in Tomcat 6
On 1/14/2011 9:07 PM, Reinwald Warapen wrote:
Thanks Mark for the quick res
Thanks Mark for the quick response.
I just tried what you mentioned setting maxIdleSwap='0'. But for some
reason the session does not get persisted to the database immediately.
It takes around 30 sec for it to happen . Any other setting I need to
add inorder that it saves immediately so that i
On 14/01/2011 14:56, Reinwald Warapen wrote:
> Hey,
> Im am migrating my webapp from Resin to Tomcat 6. In Resin there is an
> option to "always save sessions" and "always load sessions" from the
> persistent store (mysql db). Ive configured my tomcat instance to use
> the JDBC for the persistence