[JBoss-user] [EJB 3.0] - Re: mapping-file in persistence-unit supported?

2006-04-23 Thread persabi
I'm not sure if OR mapping via XML file is available yet. How did you go? I don't see a JIRA issue for it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938861#3938861 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39

[JBoss-user] [EJB 3.0] - Re: Finding Java 5.0 Enum Types

2006-03-26 Thread persabi
One solution I use is to have a common jar that contains the common classes you want to share and add it as a java module to your application.xml. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932713#3932713 Reply to the post : http://www.jboss.com/index.ht

[JBoss-user] [EJB 3.0] - Re: persistence.xml

2006-03-24 Thread persabi
Hi, curious to know if you made any progress on this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932417#3932417 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3932417 ---

[JBoss-user] [EJB 3.0] - Re: DAOs as SLSBs - performance hit?

2006-03-09 Thread persabi
Going through the EJB3 material around, you really don't see this scenario: anonymous wrote : | servlet --> Session Facade (SLSB) ---> DAO (SLSB) ---> Entity Bean | where SLSBs access entity POJOs via DAOs in the EJB3 environment. It is the defacto "way" in Spring since the framework is n

[JBoss-user] [EJB 3.0] - Re: Auto create schema ?

2006-02-28 Thread persabi
Try setting value="update" for hibernate.hbm2ddl.auto View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926734#3926734 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3926734 ---

[JBoss-user] [EJB/JBoss] - Re: Client blocks while accessing EJB on JBOSS ver4.0.3

2006-02-27 Thread persabi
I think JMS is a good candidate for this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926667#3926667 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3926667 --- Thi

[JBoss-user] [EJB/JBoss] - Re: Client blocks while accessing EJB on JBOSS ver4.0.3

2006-02-24 Thread persabi
You might like to have a look at asynchronous proxy. http://docs.jboss.org/ejb3/app-server/tutorial/asynch/asynch.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926222#3926222 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[JBoss-user] [EJB 3.0] - Re: SLSB Facade in front of Entity?

2006-02-21 Thread persabi
greening: I think your question has a lot of merit. We are also undecided as to which strategy will prove to be the 'pattern' in the end. AndroMDA now has a EJB3 cartridge and the finder methods exist in entity POJOs as static methods with EntityManager as the first argument to the finder meth

[JBoss-user] [JCA/JBoss] - Re: XA + MySQL 5

2005-12-02 Thread persabi
I just used the JDBC 3.0 generated keys command rather than the MySQL key generater command and was successful! So, the entity xdoclet tag now looks like (reference standardjbosscmp-jdbc.xml): | @jboss.entity-command | name="get-generated-keys" | I can now verify 2PC commits work

[JBoss-user] [JCA/JBoss] - XA + MySQL 5

2005-12-02 Thread persabi
In trying to get XA datasource working with MySQL 5 and JBoss 4.0.3SP1, I have: 1. Downloaded MySQL 5.0.16 & setup with InnoDB default tables. 2. Downloaded the MySQL J/Connector 5.0 nightly build and added jar to server/default/lib. 3. Swapped the JMS HSQLDB to MySQL local tx datasource. 4. Setu

[JBoss-user] [HTTPD, Servlets & JSP] - Re: Struts + 3.2.4/5-Exception Processing ErrorPage 404

2004-07-20 Thread persabi
Hi, Thanks for the hints. After a little investigation based on your suggestion, I found one of my css files imported another css that did not exist: | @import url(global.css); | Removing this fixed the recurring problem. Good call and thanks. Regards View the original post : http://w

[JBoss-user] [HTTPD, Servlets & JSP] - Struts + 3.2.4/5-Exception Processing ErrorPage 404

2004-06-29 Thread persabi
Hi, I have a struts 1.1 based app that specifies error pages in web.xml like so: | | 400 | /error/error400.jsp | | | | 403 | /error/error403.jsp | | | | 404 | /error/error404.jsp | | nothing unusual. In Jboss 3.2.3 with embedded

[JBoss-user] [Installation & Configuration] - Re: JBoss 3.2.4 Error that doesn't occur in 3.2.3, may be To

2004-06-28 Thread persabi
Are you using Struts? If so... I had a similar exception. I managed to fix this by adding the following jars from the Struts lib to $JBOSS_HOME/server/(your container)/lib: commons-beanutils.jar commons-collections.jar commons-digester.jar commons-fileupload.jar commons-lang.jar commons-valida