Re: Accessing tapestry's hibernate instance from a quartz job

2011-07-04 Thread g...@liftyourgame.com
Hi Howard, Are you still going to release your Quartz / Hibernate module for Tapestry? Regards, Greg. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Accessing-tapestry-s-hibernate-instance-from-a-quartz-job-tp2421535p4552022.html Sent from the Tapestry - User mailing l

Re: Accessing tapestry's hibernate instance from a quartz job

2010-06-24 Thread Kalle Korhonen
Chenillekit provides Quartz integration module - http://chenillekit.codehaus.org/chenillekit-quartz/index.html. Been using it for more than a year now. Kalle On Thu, Jun 24, 2010 at 7:32 PM, Howard Lewis Ship wrote: > Well, within a single JVM, Tapestry IoC service proxies will serialize > and

Re: Accessing tapestry's hibernate instance from a quartz job

2010-06-24 Thread Howard Lewis Ship
Well, within a single JVM, Tapestry IoC service proxies will serialize and de-serialize correctly. So, you can inject the Session into some code that creates a Quartz job, storing the Session in an instance variable. However, you'll miss out on a few things; you need a wrapper around executing Qua

Accessing tapestry's hibernate instance from a quartz job

2010-06-24 Thread Stephen Hogarth
I have a T5 application connected to a database using hibernate working fine. To perform background operations on the database, I have a quartz scheduler servlet included in the same project that calls the background job as expected. I would like to get an instance of tapestry's hibernate sessio