Re: [Resin-interest] Re sin And Groovy

2008-10-15 Thread Daniel López
Hi, What we do is to use the Groovy scripts through the Java Scripting API during development and then compile them into class, if desired, for production. Accessing Groovy scripts is not too slow, after the first access, if you are careful not to throw the ScriptingEngine object after each

[Resin-interest] Logs not rotating correctly

2008-10-15 Thread Richard Grantham
is the owner of the folder that is being written to. Any ideas on how to sort this or is it a bug? [EMAIL PROTECTED] logs]# ls -l total 3431672 -rw-r--r-- 1 resin apache 1073979392 Oct 15 11:30 access.log -rw-r--r-- 1 resin apache 1073745275 Oct 15 00:50 access.log.20081015 -rw-r--r-- 1 resin apache

Re: [Resin-interest] Logs not rotating correctly

2008-10-15 Thread Rob Lockstone
access.log -rw-r--r-- 1 resin apache 1073745275 Oct 15 00:50 access.log.20081015 -rw-r--r-- 1 resin apache 1073892465 Oct 15 00:52 access.log. 20081015.0052 -rw-r--r-- 1 resin apache 49848320 Oct 15 00:54 access.log. 20081015.0054 -rw-r--r-- 1 resin apache 0 Oct 15 00:56 access.log

[Resin-interest] j2ee class not available in 3.2.0

2008-10-15 Thread Copeland, Artie
Why are some of the j2ee standard classes not available in 3.2.0 that were available in 3.1.6? As an example j2ee-management-10.jar all the classes in the javax.management.* packages are no longer available in the javaee-1.6.jar. Are there any plans to put them back in? iovation 111 SW Fifth

Re: [Resin-interest] Re sin And Groovy

2008-10-15 Thread bumzee
I've come to learn that the problem is not Resin. As you've noted, it's groovyc. I've not considered your suggestion before but I will give it a try. Your blog post is quite interesting. Not sure what to make of this whole thing and what it really says about groovy's use out said of grails.

Re: [Resin-interest] [Resin 0002988]: OpenSSL timeout

2008-10-15 Thread Scott Ferguson
On Oct 14, 2008, at 9:56 PM, Matt Pangaro wrote: Since it's not marked on the bug in Mantis, and I can't remember, was this issue found in the 3.0.x tree? If so, does it affect all versions? It affects all versions. I've just made changes to all the trees. -- Scott Thanks, Matt

Re: [Resin-interest] Amber SessionListeners

2008-10-15 Thread Scott Ferguson
On Oct 15, 2008, at 3:49 AM, Jan Kriesten wrote: Hi, is it possible to register SessionListeners with Amber to e.g. embed Compass (http://www.compass-project.org/) with it? I haven't found any API for Amber. I'm not sure what would be required. You can use @In or

Re: [Resin-interest] j2ee class not available in 3.2.0

2008-10-15 Thread Scott Ferguson
On Oct 15, 2008, at 8:23 AM, Copeland, Artie wrote: Why are some of the j2ee standard classes not available in 3.2.0 that were available in 3.1.6? As an example j2ee-management-10.jar all the classes in the javax.management.* packages are no longer available in the javaee-1.6.jar. Are

[Resin-interest] Amber, EntityManagerFactory JNDI-Lookup

2008-10-15 Thread Jan Kriesten
Hi, I'm currently a bit puzzled since I don't get to work what yesterday has already. As I understand it should be possible to lookup an EntityManagerFactory via JNDI as java:comp/env/persistence/PersistenceUnit/xxx - but I just can't get that to work. My persistence.xml has

Re: [Resin-interest] Amber, EntityManagerFactory JNDI-Lookup

2008-10-15 Thread Scott Ferguson
On Oct 15, 2008, at 10:13 AM, Jan Kriesten wrote: Hi, I'm currently a bit puzzled since I don't get to work what yesterday has already. As I understand it should be possible to lookup an EntityManagerFactory via JNDI as java:comp/env/persistence/PersistenceUnit/xxx The official

Re: [Resin-interest] Amber, EntityManagerFactory JNDI-Lookup

2008-10-15 Thread Jan Kriesten
Hi Scott, Technically, the persistence.xml scanning does not automatically populate JNDI with the EntityManager. It populates an app-server dependent space (in Resin it's WebBeans) that's available for injection using @PersistenceUnit and @PersistenceContext. the wiki on