[JBoss-user] [Installation, Configuration Deployment] - Adding saxon jar to ear file

2006-04-28 Thread eddie07
Hi, I am using saxon8.jar within jboss. With jboss3.2.x I solved this by adding an entry to application.xml of the ear file. But this doesn't work with jboss 4.0.3 what I am using now. I learned (in this forum) that this is not the correct way to include a jar file. So I tried adding it to

[JBoss-user] [Installation, Configuration Deployment] - starting jboss with saxon8

2006-03-07 Thread eddie07
Hi, I want to run an xslt 2.0 processor within jboss. So I added saxon8.jar to the endorsed folder of jre/lib. But when starting I got the error messages below: The exception happens for each xml configuration and deployment file. Is it possible to use saxon8 with jboss? If so how sould I

[JBoss-user] [Security JAAS/JBoss] - Re: sometimes

2006-02-21 Thread eddie07
Ok, I'll try my best: The OS is Suse Linux 9.2, kernel 2.6.5-7.201-smp The JBoss version is 3.2.6 (I am currently trying to move to 4.0, but it's not finished.) The database behind is oracle 10. There are no other warn or error messages except that I am throwing a new exception because of this

[JBoss-user] [Messaging, JMS JBossMQ] - sometimes User session not valid but no authorization done

2006-02-14 Thread eddie07
Hi, I am sending quite a bit of JMS messages through several queues in my system. From time to time it happens that I get a JMSSecurityException (listed below). I am doing no authorization at all, in the last run e.g. it worked for 1935 of 1936 messages, only one failed. What could be the

[JBoss-user] [Security JAAS/JBoss] - sometimes User session not valid but no authorization done

2006-02-14 Thread eddie07
Hi, sorry for double posting but I just found out that I probably used the wrong forum with the first posting. I am sending quite a bit of JMS messages through several queues in my system. From time to time it happens that I get a JMSSecurityException (listed below). I am doing no

[JBoss-user] [Management, JMX/JBoss] - calling MBean example doesn't work

2005-02-16 Thread eddie07
Hi, I tried to get the following code (mix of code from the wiki and old examples) to work (first try to use MBEans, so this may be a stupid question): - InitialContext ctx = new InitialContext(); //RMIAdaptor server = (RMIAdaptor) ctx.lookup(jmx/rmi/RMIAdaptor);

[JBoss-user] [Management, JMX/JBoss] - Re: calling MBean example doesn't work

2005-02-16 Thread eddie07
Sorry for causing trouble, I found the solution. There was only a jar missing in the classpath. Eddie View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3866796#3866796 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3866796

[JBoss-user] [Persistence CMP/JBoss] - Re: jboss-ql and sum()

2004-06-08 Thread eddie07
Thanks, this helps me. I did't know that the newest versions are implementing EJB-QL 2.1. I should read docs more often. :-( Eddie View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3837900#3837900 Reply to the post :

[JBoss-user] [Persistence CMP/JBoss] - jboss-ql and sum()

2004-06-07 Thread eddie07
Hi, I am trying to use sum() with the jboss-ql. According to the documentation this should be possible but I couldn't find any examples. If this is really possible - are there some examples available? The sql I'd like to execute is something like select A, sum(B) from mytable where a=1 group by