[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: .ear priority deployment

2008-08-07 Thread vberetti
Hi, In your ear, in META_INF/jboss-app.xml : | | myservice:service=OwnService | | In your war, in META-INF/jboss-web.xml: | | myservice:service=OwnService | | this way, your war will deploy after your ear is deployed. But keep in mind that the ear depends on the war

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: .ear priority deployment

2008-08-04 Thread vberetti
Hi, I have 2 solutions for you : - you can easily extend the JBoss DeploymentSorter. Then declare the new class in jboss-service.xml in URLComparator. - you can define dependencies between jmx names. You can say for example that the war needs an ejb or an ear or a sar. There is only one limitatio

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EAR depency and redeployment

2008-07-30 Thread vberetti
I run my jboss 4.0.5 with a JDK 1.5. Will there be any changes with a JDK 1.6 ? Thanks Vincent View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4167601#4167601 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4167601

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EAR dependency and redeployment

2008-07-25 Thread vberetti
Is it because even if they share the same loader repository, A.ear et B.ear have different classloader. When the A.ear reload, he reloads a new version of A-libs classes but B.ejb still points to old reference of the A-libs classes ? Is there any workaround ? Thanks Vincent View the original pos

[jboss-user] [Installation, Configuration & DEPLOYMENT] - EAR depency and redeployment

2008-07-24 Thread vberetti
Hi, I have deployment problem on jboss-4.0.5. here is my deployement architecture : in the deploy directory : A.ear |- A-lib.jar |- A.ejb B.ear |- B-lib.jar |- B.ejb A.ear and B.ear use the same loader repository configured in jboss-app.xml. B.ejb has a depends configurati

[jboss-user] [EJB 3.0] - Re: clustering

2006-11-09 Thread vberetti
Hi, I do have the same problem. How can we easily solve this problem ? Could Jboss ejb3 deployer get the current partition name from the jboss.partition.name property and assign it to @Clustered ejb ? Vincent. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984

[jboss-user] [JBossWS] - Re: Is Jbossws rpc Call impl Threadsafe ?

2006-11-09 Thread vberetti
I found where the problem is comming from. My 20 threads were using the same Call instance. When I create 1 call instance for each thread there is no problem. Is javax.xml.rpc.Call implementation in Jbossws 1.0.3.GA threasafe ? Vincent. View the original post : http://www.jboss.com/index.html?mo

[jboss-user] [JBossWS] - Re: Problem creating request for wsclient, serializating pa

2006-11-07 Thread vberetti
I check the source again and I still don't understand what's going on. Should I post a bug report in jira ? Vincent. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3983824#3983824 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[jboss-user] [JBossWS] - Re: Problem creating request for wsclient, serializating pa

2006-11-07 Thread vberetti
Forgot to describe the configuration : jboss 4.0.4.GA with jbossws 1.0.3.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3983715#3983715 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3983715 ___

[jboss-user] [JBossWS] - Problem creating request for wsclient, serializating parame

2006-11-07 Thread vberetti
Hi, I have a rpc type webservice. I works perfectly but I tried to do stress tests so I ran 20 calling my webservice with the same args. After some time, the request created(I logged the request on the client side with an handler), is false. Correct is : ... A B wrong is : ..

[jboss-user] [EJB 3.0] - @Cache on Entity Bean and complex select queries.

2006-09-13 Thread vberetti
Hi, I annotated my Entity Beans with the @Cache(usage=CacheConcurrencyStrategy.TRANSACTIONAL) and I'd like to know how object are really cached. In the jboss ejb3 documentation at http://docs.jboss.org/ejb3/app-server/tutorial/clusteredentity/clusteredentity.html it is said that : "Any attempt t