Originally posted by vikinsa aggarwal:
Hi,
I am trying to do some thing like:
EJB classes, jars are on a server. On the same network but on a different machine I have a Java Client. I need to connect the client to my EJBs but I am not allowed to keep any of the jars, classes on the Client side server. So I am not able to compile the client. Also even If I port its class file (compiled any where else), it won't run because of the unavailability of the EJB classes on the same machine. Is there any way to do it?
your client should have access to the interfaces (remote and home) so you can create EJB's and work with them...
so, in my client jar I have a java file (with a main method), and the interfaces of the EJB's I need to access...
correct me if I'm wrong...