This set of updates switches the expected tomcat server to tomcat 5.5.17
For reference the changes needed are noted below. Later today we will have a binary quickstart which can be downloaded from bedework.org whilch will provide what we believe to be a correctly configured tomcat 5.5.17
Changes required to the tomcat instance were...
Copy log4j and the hsqldb drivers from tomcat 5.0.28
cp path-to/jakarta-tomcat-5.0.28/common/classes/log4j.xml path-to/apache-tomcat-5.5.17/common/classes/log4j.xml
cp path-to/jakarta-tomcat-5.0.28/common/lib/hsqldb-1.7.3.3.jar path-to/apache-tomcat-5.5.17/common/lib/hsqldb-1.7.3.3.jar
In conf/web.xml change
<param-name>listings</param-name>
<param-value>false</param-value>
to
<param-name>listings</param-name>
<param-value>true</param-value>
to enable directory browsing.
Other changes...
More schedule changes
Fixed initbedework.xml so it works again.
Move freebusyAggregator config class into calfacade.configs
Suppress inclusion of web.xml from source to remove warning messages
Change democal.properties value from
org.bedework.app.Events.web.xml=guest/web.xml
to
org.bedework.app.Events.web.xml=war/WEB-INF/publicweb.xml
Similarly for SoEDept which now has
org.bedework.app.SoEDept.web.xml=war/WEB-INF/publicweb.xml
and added to public and user caldav which have
org.bedework.app.Pubcaldav.web.xml=war/WEB-INF/publicweb.xml
org.bedework.app.Usercaldav.web.xml=war/WEB-INF/userweb.xml
New global property
org.bedework.global.deploy.on.tomcat=true
This enables copying of context.xml files from the web application source.
Added properties
org.bedework.app.Events.tomcat.context.xml=war/META-INF/publiccontext.xml
org.bedework.app.SoEDept.tomcat.context.xml=war/META-INF/publiccontext.xml
org.bedework.app.UserCal?.tomcat.context.xml=war/META-INF/usercontext.xml
org.bedework.app.Pubcaldav.tomcat.context.xml=war/META-INF/publiccontext.xml
org.bedework.app.Usercaldav.tomcat.context.xml=war/META-INF/usercontext.xml
In addition the values of the context.root properties were changed to include a leading "/". This allows specifying a root context simply by omitting the value.
|