[jboss-user] [EJB 3.0] - Re: AttributeOrverride issue

2009-02-04 Thread rpiaggio
I faced the same issue. I was able to make it work via Hibernate properties, as described here: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=78806. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4206983#4206983 Reply to the post : http://www.jbo

[jboss-user] [EJB 3.0] - Re: Get ear name

2008-06-19 Thread rpiaggio
private static String getEarName() { | URL url = Thread.currentThread().getContextClassLoader().getResource(""); | Pattern p = Pattern.compile("(?i)/([^/:\\*\\?<>\\|]+)\\.ear/"); | Matcher m = p.matcher(url.getPath()); | if (m.find()) { | return m.group(1) + "/"; | } e

[jboss-user] [EJB 3.0] - Re: Create timer -

2007-08-29 Thread rpiaggio
Ooopps... It's all in jcstaff's post above. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079278#4079278 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079278 ___ jboss-user

[jboss-user] [EJB 3.0] - Re: Create timer -

2007-08-28 Thread rpiaggio
Hi everyone! I had the same issue when moving to JBoss 4.2 and nlmarco's method solved it, albeit I don't want to go into production like that. Thing is, my production DB is MySQL 4.1.20, which does not support XA. Since JBoss can support 1 non-XA resource, I was wondering if the other resource

[jboss-user] [JBoss Seam] - Re: StackOverflowError in <>

2006-12-14 Thread rpiaggio
The subject was 'StackOverflowError in "seam generate-entities"' The forum software ate the text between double-quotes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993958#3993958 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JBoss Seam] - StackOverflowError in

2006-12-14 Thread rpiaggio
With Seam 1.1.GA. Happens when the database has tables that reference each other in FKs. Example: - Table A: id (PK), b_id (FK). - Table B: id (PK), a_id (FK). I can provide more details if necessary but that should be enough to reproduce the error. View the original post : http://www.jboss.c

[jboss-user] [JBoss Seam] - forces conversationId in URL?

2006-08-31 Thread rpiaggio
Hi, I am using faces-config.xml to control the pageflow. I want bookmarkable URLs so I use in each navigation case. This causes nice bookmarkable URLs except that conversationId is inserted into them, even when I am not using multiple-request conversations. It is kind of annoying since the id

[jboss-user] [JBoss Eclipse IDE (users)] - Re: 2.0 alpha does not seem to like 0.0.0.0 as bind address

2006-07-27 Thread rpiaggio
Actually, it doesn't like any other value other than "localhost". View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961440#3961440 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961440

[jboss-user] [Installation, Configuration & Deployment] - EXPLODED EAR won't redeploy even when touching application

2006-07-24 Thread rpiaggio
OOOPS! That should have been "EXPLODED EAR won't redeploy..." in the subject... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3960353#3960353 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3960353 ___

[jboss-user] [Installation, Configuration & Deployment] - Unexploded EAR won't redeploy even when touching application

2006-07-21 Thread rpiaggio
Obviously I'm doing something wrong but I don't know what. I added a path in my workspace to the DeploymentScanner: | deploy/, | file:/D:/workspace/Myproject/deploy | Inside D:/workspace/Myproject/deploy I have the following structure: | Myproject-ear/ | M

[jboss-user] [JBoss Seam] - Re: Breaking changes to pageflow

2006-07-11 Thread rpiaggio
Ok, solved the problem. The ClassCastException seems to happen when the flow cannot land on a page. In this case, the problem of not working on the page action seemed to derive from having an unnamed transition on the start-state. This would match on a normal action but not on the page action.

[jboss-user] [JBoss Seam] - Re: Breaking changes to pageflow

2006-07-11 Thread rpiaggio
I think I understand what there is in the documentation (and above in this thread):anonymous wrote : If we are beginning the pageflow during the RENDER_RESPONSE phase?during a @Factory or @Create method, for example?we consider ourselves to be already at the page being rendered, and use a no