[JBoss-user] [Messaging, JMS JBossMQ] - Does a transacted session block other sessions?

2005-06-11 Thread drakonis
We create a transacted session with: QueueSession session = conn.createQueueSession(true, -1); It means all the messages created in that session are apart of an atomic unit and there can be none interposing in that order. However the starting of a transacted session doesn't take a destination as

[JBoss-user] [JBossCache] - Little doc slipout

2005-05-03 Thread drakonis
On http://docs.jboss.org/jbcache/current/TreeCache/html/ at the example of the configuration example, 10.Configuration at the end of the file true /a/b/c,/all/my/objects false/attribute true/attribute the 2 ending /atribute are missing the . No big deal, but when i copypasted

[JBoss-user] [JBossCache] - Re: Little doc slipout

2005-05-03 Thread drakonis
Ah crap, damn xml | attribute name=CacheLoaderSharedtrue/attribute | attribute name=CacheLoaderPreload/a/b/c,/all/my/objects/attribute | attribute name=CacheLoaderFetchTransientStatefalse/attribute | attribute name=CacheLoaderFetchPersistentStatetrue/attribute | hope it

[JBoss-user] [JBossCache] - How do u guys do it?

2005-05-03 Thread drakonis
Well in my grad paper i'm going to talk besides other things about jboss cache too. I'm gonna say that JBoss Cache is a tree which can be replicated between processes. Now i'm gonna have an audience of professors which know crap, but to hide their knowledge they like to ask a lot of stupid

[JBoss-user] [Beginners Corner] - Re: New to jboss aop

2005-04-07 Thread drakonis
I had to set in /default/deploy/jboss-aop.deployer/META-INF/jboss-service.xml EnableTransformer to true. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3873126#3873126 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873126

[JBoss-user] [JNDI/Naming/Network] - Re: Calling remote EJB ended up calling the local EJB

2005-04-05 Thread drakonis
Same problem, was about to post it. I still actually cannot belive it. Well i use 4.01sp1 so no go with that one. Temporary solution for me is to have them deployed under different names, add a little R for remote to the other one:). It's an overhead, but View the original post :

[JBoss-user] [Beginners Corner] - Re: Client call of a remote EJB

2005-04-04 Thread drakonis
That did the trick. 10q man, you're a life saver. God bless u! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3872572#3872572 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3872572

[JBoss-user] [Beginners Corner] - Client call of a remote EJB

2005-04-03 Thread drakonis
I am kinda of a begginer on J2EE. It seems to me this would normaly not be a big problem since it's imposible for me to think that all clients need to be on the same machine as the server ap. Ok so we got the client code like this: | Properties env = new Properties(); |

[JBoss-user] [Beginners Corner] - New to jboss aop

2005-04-02 Thread drakonis
Hi guys. I'm kinda freakin out, i can't succed at all with this AOP stuff. Got the | package com.balamaci; | public class FunctionarBean implements SessionBean { | .. | .. | public void SNAPSHOT() | { | System.err.println(Say hello); | } | } | also this |

[JBoss-user] [Beginners Corner] - Re: New to jboss aop

2005-04-02 Thread drakonis
I just realised that the xml is not showing. And i must be really tired cause i can;t see the edit button anywhere. Where the hell is it?? Well the jboss-aop.xml looks like this: | aop | bind pointcut=execution(public void com.balamaci.FunctionarBean-SNAPSHOT(..)) |interceptor

[JBoss-user] [Beginners Corner] - Re: free download Jboss application server

2005-03-23 Thread drakonis
Hi. From my french lessons i took 7 years ago it seems it does not understand the java.exe command. That would be because you did not install JDK. The JDK contains the java runtime enviroment(java.exe) and a compiler(javac). Download the JDK from Sun and i'm sure it will work. Cheers! View