On Tue, Oct 14, 2008 at 7:20 AM, AD <[EMAIL PROTECTED]> wrote: > My issue is that the tomcat app, seems to want to redirect to > /myapp1/some/file.html for a 302 (as an example) which is causing the > issue. is there a way around this ? This path gets back to apache which > gets back to the end user who does not know how to process /myapp1/ in the > browser.
Actually, no, the browser is just sending the request to your Apache httpd, which doesn't know what to do with "/myapp1/". So you need to either use mod_rewrite or explicitly write your URLs without the context (dicey and portability-limiting). > Any reason this is a "bad" idea ? Are "app1" and "app2" identical? If not, "balancing" across them makes zero sense. And even if they *are* identical -- why would you "balance" across two apps running in the same container? The whole /point/ of balancing is to use multipleTomcat instances, for load-balancing (and HA). >From your original example, I can't begin to imagine your use case; perhaps you can explain your goal? H* -- Hassan Schroeder ------------------------ [EMAIL PROTECTED] --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]