I have several apps the share common libraries. Some apps I want to execute some
servlets in the library but not others.
Is there a way to keep a web-app from executing arbitrary servlets?1
Ordinarily http://yourserver.com/servlet/class will execute class as long as it
is in the classpath and has no security restraints that are unresolved.
I want only servlets that are declared in the web.xml file to be executed.
Is there a way to do this?
I tried removing the servlet-webdir attribute for the <orion-web-app> tag, but
no dice.
Anything else I can try?
Thanks,
Russ