Hi,
I have a question regarding packaging of EAR files(specially in a Websphere Studio Application Developer).
I know that all the EJBs would be in a ejb-jar file.(JAR)
and all servlets/html will go in a (WAR)
the application client module would go in another JAR file.
I have developed 4 stateless session beans,
and the client application will be
java standalone program(which also needs some helper classes). I dont have any web modules.
the point where I am confused is , how do I package my client program should it be within the EAR file that I deploy OR
since the client is a java standalone program(run from the console) should it be depolyed as a seperate JAR file along with its helper classes.
Thanks