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
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&
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
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
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
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
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
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.,
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