I have a package schema of
com.myCompany.apps.[ap1,ap2...]
com.myCompany.servlets.[servlet1....]
The default global-web-application.xml specifies
<orion-web-app
jsp-cache-directory="./persistence"
servlet-webdir="/servlet"
development="true"
>
The goal is to have one class hierarchy that contains my beans, ejb's, ..
ie: all Java.class files. What do I need to specify for this to work?
For example: should it be "... com.myCompany.servlets" and then I call the
servlet by name
?
For example: should it be ".. <parent dir of "com..."> and then I call the
serverlet as http://www.myCompany.com/com.myCompany.servlets.Servlet1
?
I realize that this may be an J2EE question that hits on predefined
directory structures. It may also be a orion specific configuration
convention. I have checked the J2EE specs and the mail archives to no
effect. Help would be apreciated.