Re: [Resin-interest] More on include()/forward() issue.

2008-03-12 Thread Mattias Jiderhamn
Ilya Kasnacheev wrote (2008-03-11 11:35): or would increasing the buffer (response.setBufferSize()) prevent the response from being comitted until the included forward has been issued??? This way is too like hack. What if we'll fill this buffer prematurely anyway? If the amount of data

Re: [Resin-interest] small question about entity ejb

2008-03-12 Thread Scott Ferguson
On Mar 11, 2008, at 6:28 AM, Riccardo Cohen wrote: After some new tests, I found something that works : if I do : homeobj=m_manager.find(homeinfo.class,theid); homeobj.setTitle(title); the object is saved but if I use the homeobj that comes from Query

[Resin-interest] Quercus presentation at SF Java Meetup, April 7

2008-03-12 Thread Emil Ong
I and some of the Quercus engineers will be presenting Quercus at the San Francisco Java Meetup Group on April 7. The meetup is at Marakana, an IT training company, which will let us do a hands-on, interactive tutorial. Space is limited, so you'll need to sign up here:

[Resin-interest] Quercus with phpbb3

2008-03-12 Thread Chris Chen
Scott, I've been trying multiple times to get Quercus to run phpbb3 properly and I continue to have problems with getting the generated cached template files to render consistently. After a server restart, things work for a few pages until it hits some sort of snag. This consistently

[Resin-interest] Resin-3.1 Eclipse Plugin

2008-03-12 Thread Steffen Busch
Sam, Scott, I'm looking for the Eclipse Plugin for Resin-3.1 from Caucho. In the Bug 1292 there is a note: q sam 11-01-07 09:12 Caucho will provide an eclipse plugin that integrates with the jst and wst projects of eclipse. Installation instructions included in the release notes for 3.1.4 /q But

Re: [Resin-interest] small question about entity ejb

2008-03-12 Thread Riccardo Cohen
I found what was wrong, the begin() was not at the right place : query = ... homeobj = (Home) query.getSingleResult(); _ut.begin(); homeobj.setTitle(new-title); _ut.commit(); Sorry for the trouble. I'll write a little sample to clarify all that (for me at least) The