[jboss-user] [Installation, Configuration & DEPLOYMENT] - Deploy via a web interface?

2007-07-12 Thread chapata_gunner
We are using JBoss 4.2.0GA. Is there any web interface through which which we can deploy/undeploy war/ear's? Also is there any interface through which we can monitor the server activity? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063408#4063408 Reply to

[jboss-user] [JNDI/Naming/Network] - Re: JNDI Connection Problem! jboss.bind.address always 127.0

2007-07-05 Thread chapata_gunner
While starting the server pass the bind address as follows - ./run.sh -b 192.168.200.210 That should solve it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060777#4060777 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JNDI/Naming/Network] - EJB 3.0 Persistence Unit from Servlet in 4.2.0GA

2007-07-05 Thread chapata_gunner
I want to access a persistent unit from a 'Servlet' in JBoss 4.2.0GA. Since this version is not fully EE5 compatible, I can't use dependency injection using the PersistentUnit annotations. So I have no choice but to do a JNDI lookup - Now can anyone please tell me how this can be done? View t

[jboss-user] [EJB 3.0] - Re: @Clustered! How to check if its working?

2007-07-04 Thread chapata_gunner
OK! Finally found a solution to my problem :) JBoss 'all' domain comes with certain AOP interceptors for EJB3. Of these the IsLocalInterceptor and ClusteredIsLocalInterceptor were creating all this fuss. I just disabled them and everything works fine. View the original post : http://www.jboss

[jboss-user] [Clustering/JBoss] - Re: EJB 3.0 Session Bean (Stateless) Cluster

2007-07-04 Thread chapata_gunner
OK! Finally found a solution to my problem :) JBoss 'all' domain comes with certain AOP interceptors for EJB3. Of these the IsLocalInterceptor and ClusteredIsLocalInterceptor were creating all this fuss. I just disabled them and everything works fine. View the original post : http://www.jboss

[jboss-user] [Clustering/JBoss] - Re: EJB 3.0 Session Bean (Stateless) Cluster

2007-07-04 Thread chapata_gunner
Did a little more research... http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4059988#4059988 If i put the code that I used to put in a Servlet inside a normal Java file and execute it ... Everything works properly. So it seems that in order for LoadBalancing to work properly we need to

[jboss-user] [EJB 3.0] - Re: @Clustered! How to check if its working?

2007-07-04 Thread chapata_gunner
Did a little more research... If i put the code that I used to put in a Servlet inside a normal Java file and execute it ... Everything works properly. So it seems that in order for LoadBalancing to work properly we need to execute the calls from a separate JVM. Is that correct? Can anyone ple

[jboss-user] [EJB 3.0] - @Clustered! How to check if its working?

2007-07-03 Thread chapata_gunner
I have a bean which has been defined as follows. | @Stateless | @Clustered | public class StatelessCalculatorBean implements Calculator { | | public double calculate(int start, int end, double growthrate, double saving) { | double tmp = Math.pow(1. + growthrate / 12.,

[jboss-user] [Clustering/JBoss] - EJB 3.0 Session Bean (Stateless) Cluster

2007-07-03 Thread chapata_gunner
Hi, I have two machines which are running JBoss 4.2.0GA 'all' domain and are automatically clustered under the 'Default Partition'. Now I want to achieve the following design - There is a Servlet which should send requests to a stateless session bean, which is deployed to both servers (via far