On Nov 19, 2007 3:14 PM, John Richard Moser <[EMAIL PROTECTED]> wrote: > > I'm currently trying to deploy a Web application that wants to be > uploaded as a .WAR to Tomcat or JRun. For Tomcat it wants the > following bolb as a configuration XML: > > <Context path="/foo" docBase="/foo/foo.war" unpackWARs="true" > override="true"> > <Parameter name="Properties" value="/foo/config" /> > </Context>
It's Geronimo 2, right? If so, the following plan will instruct Geronimo to bind the webapp to /foo. Just include it in the webapp as WEB-INF/geronimo-web.xml file or deploy the webapp with the optional deployment plan like ./bin/deploy deploy foo.war geronimo-web.xml: geronimo-web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1"> <context-root>/foo</context-root> </web-app> What is the line - <Parameter name="Properties" value="/foo/config" /> doing? What is it for? Jacek -- Jacek Laskowski http://www.JacekLaskowski.pl
