"Peder Nordvaller" <[EMAIL PROTECTED]> writes: > I'm running two servlets using the same slide domain/namespace for both. The first > one a modified version of the WebDAV servlet that comes with slide to allow DAV > access to the namespace, basically does the same as the one that comes in the > src-package. The other one is a servlet meant to use slide as cms-system for an > application. > > The problem I have is that if I add a node for example via one of the servlets, it > doesn't appear in the other unless I restart tomcat and lets the servlets load all > the database-info from scratch. I'm running mysql as nodestore and FileContentStore > as contentstore. What am I doing wrong?
How do you start slide? You must make sure, that there is only one instance of Domain running. I guess you started two indendent ones. Both servlet must load all slide classes through the same classloader. Either put both servlets into the same servlet context or put all slide jars into $CATALINA_HOME/common/lib (or whereever shared libs reside in your servlet container). -- Martin Holz <[EMAIL PROTECTED]> Softwareentwicklung / Vernetztes Studium - Chemie FIZ CHEMIE Berlin Franklinstrasse 11 D-10587 Berlin --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
