Re: [Resin-interest] 4.0.0 on osx deploy problem

2010-03-20 Thread Rick Mann
John, did you ever find an answer to this? I'm getting it, too. On Jun 29, 2009, at 22:50:52, Jon Stevens wrote: Here is another problem. When deploying subetha on osx using the apple jdk 6, I get the stack trace below. When deplying subetha on osx using the landon fuller soylatte jdk,

Re: [Resin-interest] 4.0.0 on osx deploy problem

2010-03-20 Thread Jon Stevens
Yes, I can't remember what the solution was. =( Sorry! jon On Sat, Mar 20, 2010 at 2:16 AM, Rick Mann rm...@latencyzero.com wrote: John, did you ever find an answer to this? I'm getting it, too. On Jun 29, 2009, at 22:50:52, Jon Stevens wrote: Here is another problem. When deploying

[Resin-interest] 4.0.5 keeps throwing NPE from TransactionImpl.close()

2010-03-20 Thread smallufo
from this sample : http://caucho.com/resin-4.0/examples/servlet-hello/index.xtp A very basic hello Servlet always shows this message in the log: [10-03-20 23:21:24.237] {http://*:8080-6} WebApp[http://test.com/test] active [10-03-20 23:21:24.342] {http://*:8080-6} java.lang.NullPointerException

[Resin-interest] How to make this simplest CanDI work ?

2010-03-20 Thread smallufo
I am new to CanDI , I want to migrate my spring app to JavaEE6 , but having a lot of troubles in Resin (4.0.5) CanDI : There is no working sample in the resin site , most are outdated ... Here is my very basic sample , just JPA 2 and a Servlet : public interface PersonDao { public Person

Re: [Resin-interest] How to make this simplest CanDI work ?

2010-03-20 Thread Hontvári József
BTW , Is META-INF/beans.xml defined in the JavaEE spec ? What's the relation with beans.xml and resin-web.xml ? yes, beans.xml is part of JSR-299. resin-web.xml has the same role as web.xml, it is processed by Resin after web.xml. You can place resin specific / non-standard configuration

Re: [Resin-interest] How to make this simplest CanDI work ?

2010-03-20 Thread smallufo
Thank you ... Back to the topic .. Is there any example that shows injecting JPA entitymanager to the DaoImpl , and inject the DaoImpl (as a Dao interface) to the Servlet ? 2010/3/21 Hontvári József hontv...@flyordie.com BTW , Is META-INF/beans.xml defined in the JavaEE spec ? What's the