[jboss-user] [EJB 3.0] - Re: java.lang.NoClassDefFoundError: org/jaxen/VariableContex

2007-11-19 Thread pete.b.
Hi, so what did you actually do to solve that problem? Thx! Pete View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106139#4106139 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106139

[jboss-user] [JBoss Seam] - Re: s:formattedText parser problem?

2007-11-19 Thread pete.b.
That's exactly what i am looking for! Up to now the parsing issue is left to the user of this tag. So are there plans to introduce a build in validation function? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106181#4106181 Reply to the post :

[jboss-user] [JBoss Seam] - Re: s:formattedText parser problem?

2007-11-19 Thread pete.b.
Ok, i found one ;-) http://www.jboss.com/index.html?module=bbop=viewtopicp=4084707#4084707 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106183#4106183 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106183

[jboss-user] [EJB/JBoss] - Query over two tables causes 'Transaction is not active...'

2007-09-10 Thread pete.b.
Hi, performing the following query causes the error/exception as displayed bellow: SELECT c, cd FROM Category c, CategoryDetails cd WHERE c.categoryID != 1 AND c.categoryID = cd.category.categoryID AND cd.locale = 'de' ORDER BY cd.name 10:47:54,984 WARN [JDBCExceptionReporter] SQL Error: 0,

[jboss-user] [EJB/JBoss] - Re: Query over two tables causes 'Transaction is not active.

2007-09-10 Thread pete.b.
Maybe some more snippets of my code should be beneficial. The DB schema: /* category */ | create table category | ( | categoryID int not null primary key auto_increment, | image varchar(50) | ) type = innodb; | | /* categorytree */ | create table categorytree | ( |