Create the following directory structure under some logical parent directory,
such as c:\ejb_example. This directory structure is for development purposes
only; the deployment files will be zipped into a jar file in a moment and
deployed to jboss.
src/
|__client/
| |___com/
| |___examples/
| |___client java files
|__server/
| |__com/
| |___examples/
| |___server (bean) java files
|__shared
| |__com/
| |___examples/
| |___remote and home java files
|
assemble/
|___client and server jars
|
target/
|___client/
| |___com/
| | |___examples/
| | |___client, remote and home java classes
| |___jndi.properties
|___server/
|__com/
| |___examples/
| |___server (bean), remote and home java classes
|___META-INF/
|___ejb-jar.xml
|