[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Bean call bean on muti machines with multi JBoss server

2007-10-11 Thread jaikiran
anonymous wrote : I must copy BeanA and paste deploy folder on Server2 . How I don't do this You dont have to copy the bean implementation of BeanA to Server2. You will just have to copy the bean interface (in this example the interface Check) to the Server2. View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Bean call bean on muti machines with multi JBoss server

2007-10-11 Thread changemylife
Hi ! Thanks very much. I solved my problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4094350#4094350 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4094350 ___ jboss-user

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Bean call bean on muti machines with multi JBoss server

2007-10-10 Thread genman
public class FirstEJB3TutorialClient { is a good example; use the java.util.Properties object to set the hostname and don't use jndi.properties on Server1. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4093661#4093661 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Bean call bean on muti machines with multi JBoss server

2007-10-10 Thread genman
See this example: http://www.laliluna.de/ejb-3-tutorial-jboss.html Create a client class on Server1 to connect remotely to Server2. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4093657#4093657 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Bean call bean on muti machines with multi JBoss server

2007-10-10 Thread changemylife
But my design is: On the Server1, I have the bean called BeanA. It's simply: @Remote | public interface Check { | public boolean isValid(double a, double b); | } and bean class: public @Stateless class CheckBean implements Check { | | public boolean isValid(double a,