[JBoss-user] [Management, JMX/JBoss] - Re: Scheduler and UserTransaction

2005-12-26 Thread atorres
I got a hint: the UserTransaction is bound as "UserTransaction" and not as "java:comp/UserTransaction". So I renamed the hibernate service to use UserTransaction and it works. I tried to figure out a solution where I don't have to change this name (and use java:comp/UserTransaction inside Schedu

[JBoss-user] [Management, JMX/JBoss] - Scheduler and UserTransaction

2005-12-26 Thread atorres
Hi, I'm using the Scheduler service under JBoss 3.2 I implemented the "org.jboss.varia.scheduler.Schedulable" interface, and created a Mbean inside a sar to configure it. The Schedule uses hibernate to do my job once a day. It works very well, and it's fairly easy to implement. The problem is th

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: precompile jsps option on startup?

2005-09-15 Thread atorres
Is there any planning to implement this "precompile on deploy" option? it looks a nice option View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3894909#3894909 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3894909 --

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Jboss 3 to 4 and hibernate sars x har

2005-08-08 Thread atorres
I think I have solved the problem. My error was using the classpath to include apache's collection libraries. Well, removing the classpath and adding the missing jars directly in the jboss-hibernate depoyer solved my problem. The fact is that by using the classpath, each class were created by dif

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Jboss 3 to 4 and hibernate sars x har

2005-08-06 Thread atorres
Hi. I upgraded my jboss from 3.x to 4 series and I got a problem with my hibernate sar. My application was deployed as an EAR with a SAR inside: app.ear --- app.sar --(hbm.xml files) --meta-inf -jboss-service.xml (referencing classpath to external jars) ---app.war(...) ---