We've set up multiple DNS entries for the same box.

    a.foo.com
    b.foo.com

We've got Apache's workers2.properties files setup to
forward all requests to these two machine names to
tomcat:

    [uri:a.foo.com/*]
    group=lb

    [uri:b.foo.com/*]
    group=lb

Now what we want is for tomcat to map requests sent to
a.foo.com to directory:

    .../tomcat/webapps/killerApp/a

and likewise map requests sent to b.foo.com to
directory:

    .../tomcat/webapps/killerApp/b

Actually, this much we can do using virtual hosts, but
if we do that, then we get different application
contexts for a and for b.  Instead we want just one
context so we can share memory between the two.  If
such a thing were possible, the WEB-INF directory, I
presume, would be at:

    .../tomcat/webapps/killerApp/WEB-INF

Is there a way to achieve what we desire?


                
__________________________________ 
Do you Yahoo!? 
Jazz up your holiday email with celebrity designs. Learn more. 
http://celebrity.mail.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to