> > The getter-method for the referer property returns something like > "http://localhost:9001/welcome.action", cos the search-form is included in > my welcome-page. I've got the feeling, that Tomcat's ApplicationDispatcher > makes some request string modifications in accordance to the servlet context > path. > The location after creating the dispatcher is > "//http:/localhost:9001/welcome.action". An obviously complete useless URI. > >
According to the servlet specification, the path to the request dispatcher must be relative to the root of the servlet context, starting with the '/' character, so an absolute url won't work. Nils-H --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

