[JBoss-user] [Installation Configuration] - After upgrading from 3.2.3 to 3.2.6, now xslt routines throw

2004-11-15 Thread greiezer
Hi, our webhoster forced us to upgrade our jboss 3.2.3 installation to 3.2.6. The deployed application still runs as expected but there are now many xslt related error messages in the server log. This is what I see: 12:44:08,699 INFO [STDOUT] [Error] :99:80: Document root element

[JBoss-user] [Security JAAS/JBoss] - JAAS not picking up security-constraint

2004-09-01 Thread greiezer
Hi I'm trying to secure the admin pages of my applications. The problem is that I do not get promted for login/password when using this url-pattern/ppwebshop/admin/*/url-pattern I do get get promted for login/password when using url-pattern/*/url-pattern though. Any ideas? An url to secure:

[JBoss-user] [Security JAAS/JBoss] - Re: JAAS not picking up security-constraint

2004-09-01 Thread greiezer
thanks :-) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3846946#3846946 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3846946 --- This SF.Net email is sponsored by BEA

[JBoss-user] [Persistence CMP/JBoss] - Error for findAll( ) with EJBQLToSQL92Compiler on

2004-07-04 Thread greiezer
I think this is a bug in the EJBQLToSQL92Compiler: If there is a space character between the () in in the findAll() finder method, jboss3.2.5 will throw the following error at deployment time: java.lang.StringIndexOutOfBoundsException: String index out of range: 0 | at

[JBoss-user] [Persistence CMP/JBoss] - Re: OFFSET LIMIT does not make it into the generated sql

2004-07-04 Thread greiezer
Hi Joachim, Sorry, didn't want do upset you :-) It was and is also my intention to post a working solution to the forum. I am not able to figure it out my self and you wrote in your reply that you have it working for you. I would very much appreciate if you could find some time to look at the

[JBoss-user] [Persistence CMP/JBoss] - Re: OFFSET LIMIT does not make it into the generated sql

2004-07-04 Thread greiezer
Joachim, Resetting the ql-compiler to its default value did the trick! ql-compilerorg.jboss.ejb.plugins.cmp.jdbc.JDBCEJBQLCompiler/ql-compiler | !-- | ql-compilerorg.jboss.ejb.plugins.cmp.jdbc.EJBQLToSQL92Compiler/ql-compiler | -- I am a lucky man now:-) Thank you for your help Andreas

[JBoss-user] [Persistence CMP/JBoss] - Re: OFFSET LIMIT does not make it into the generated sql

2004-07-03 Thread greiezer
Thanks for the reply Joachim. OK, I have 107 products which are related to a category. CategoryLocal cat = CategoryUtil.getLocalHome( ).findByPrimaryKey( categoryId ); | Collection products = cat.getActiveProducts( offset, limit ) At this point I would expect that 'products' has size=limit,

[JBoss-user] [Persistence CMP/JBoss] - OFFSET LIMIT does not make it into the generated sql

2004-07-02 Thread greiezer
Hi, Im using the following JBoss-QL query in JBoss 3.2.3 for a ejbSelect method: SELECT OBJECT(p) FROM Category AS c, IN (c.products) AS p WHERE c = ?1 AND p.state IS NOT NULL AND p.state = 'passiv' ORDER BY p.name OFFSET ?2 LIMIT ?3 But as yoy can see in the following the generated sql

[JBoss-user] [Persistence CMP/JBoss] - Re: Foreign key constraint not added as requested

2004-06-30 Thread greiezer
Good to know, thank you for your answer. Regards, Andreas View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3840511#3840511 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3840511

[JBoss-user] [Persistence CMP/JBoss] - Foreign key constraint not added as requested

2004-06-29 Thread greiezer
Hei all, This is a question for JBoss 3.2.3 I have an application running with several EJB that use CMP/CMR. At server startup i see the following output in the log, which makes me worrying if there is something wrong here: 20:12:44,126 DEBUG [Customer] Executing SQL: CREATE TABLE t_customer

[JBoss-user] [Installation Configuration] - Re: JBoss, JavaMail and non-asscii characters

2004-02-27 Thread greiezer
To bad that nobody could give me some hints on my problem. Found the solution by my self: Had to set the encoding attribute for the javac ant task javac encoding=iso-8859-1 destdir={build.class.dir} debug={compiler.debug}

[JBoss-user] [Installation Configuration] - JBoss, JavaMail and non-asscii characters

2004-02-25 Thread greiezer
Using the emailer application attached to end of this mail - I'am sending text/plain and text/html multipart messages containing non-ascii (danish) characters. When executed inside NetBeans, mails get encoded as expected. But my EmailerMDB uses exactly the same code for sending emails and