Hi,
I am using wls6.1 and i want to know about the servlet invoker details.
I am required to know whether there is any default configuration which can be followed to invoke my servlet dispatcher through WL's ServletInvoker. Like, "/servlet/MyServletDispatcher". specifically, how would I be able to turn on or override this default configuration ?
Please note, only the servlet-mapping part in web.xml for 'myservlet' name would not be able to solve my purpose. I need to invoke my dispatcher strictly through Weblogic's ServletInvoker. Cause, I am using a parameter passing style which passes parameters as a part of URI (for some security reason). For example, should be able to invoke 'myservlet' through Weblogic's servlet invoker (as it would be mapped with URI "/servlet/" and next, I can obtain the param "thisparam" for next part of my application.
Maintaining a normal servlet-mapping for 'myservlet' would result in a 'Request URI not found' if 'myservlet/thisparam' is used.
Please suggest, What should be written in web.xml file to resolve this.
I am using wls6.1 and i want to know about the servlet invoker details.
I am required to know whether there is any default configuration which can be followed to invoke my servlet dispatcher through WL's ServletInvoker. Like, "/servlet/MyServletDispatcher". specifically, how would I be able to turn on or override this default configuration ?
Please note, only the servlet-mapping part in web.xml for 'myservlet' name would not be able to solve my purpose. I need to invoke my dispatcher strictly through Weblogic's ServletInvoker. Cause, I am using a parameter passing style which passes parameters as a part of URI (for some security reason). For example, should be able to invoke 'myservlet' through Weblogic's servlet invoker (as it would be mapped with URI "/servlet/" and next, I can obtain the param "thisparam" for next part of my application.
Maintaining a normal servlet-mapping for 'myservlet' would result in a 'Request URI not found' if 'myservlet/thisparam' is used.
Please suggest, What should be written in web.xml file to resolve this.