Can anyone tell me how to configure WAS (or the IBM Http server) so that a web module is invoked when the browser requests a URL containing the module, but with an additional path?
e.g. requesting:
calls the servlet, and requesting
should result in the servlet also being called, and "/additional/path" appearing in the PATH_INFO variable also, but what I'm seeing is the servlet running fine in the first instance, but a 404 happening on the second.
e.g. requesting:
calls the servlet, and requesting
should result in the servlet also being called, and "/additional/path" appearing in the PATH_INFO variable also, but what I'm seeing is the servlet running fine in the first instance, but a 404 happening on the second.