Tamino WebDAV & my tomcat

Hi list,

I’m tring to install Tamino WebDAV Server Version 3.1.4 (build ID
1032168625393) under my Tomcat 4.1.9 (I cannot use tomcat relased by tamino webdav). I
moved taminowebdavserver webapp under my TOmcat webapps dir. I have
configurated server.xml and domain.xml and the webapp is linked. But when I
try to open http://localhost:8080/taminowebdavserver I receive a page with
this mesg:

HTTP Status 404 - Not Found: No object found at
/administration/security/users

----------------------------------------------------------

type: Status report

message: Not Found: No object found at
/administration/security/users

description: The requested resource (Not Found: No object found at
/administration/security/users) is not available.


----------------------------------------------------------

Apache Tomcat/4.1.9



and in the log I find the following warns:

WARN [main] - Service
com.softwareag.xtools.xdav.util.repairer.XRepairerStore@618d26
initialization failed : File null\Domain.xml not found
WARN [main] - Service
com.softwareag.xtools.xdav.util.configuration.XConfigurationStore@79e304
initialization failed : File null\Domain.xml not found
WARN [main] - Conflict with uri /administration/configuration/globals.
Cause is: The store is unavailable
WARN [main] - Service
com.softwareag.xtools.xdav.util.XUnavailableStore@1bb25a access error :
Conflict with uri /administration/configuration/globals. Cause is: The store
is unavailable
WARN [main] - Rollback Transaction 2 xid main-1040719301213-2- in thread
main

can someone help me??

a lots of tnx!!!
Michelangelo


Michelangelo Serpico
Software AG

+39 02950011.1
+39 3488205068
michelangelo.serpico@softwareag.com

Hi Michelangelo,

the problem probably is that 2 system properties required by Tamino WebDAV Server are missing in the Tomcat process:
“tomcat.home” and “taminowebdavserver.home”.

If you are running Tomcat in a console (i.e. by means of catalina.bat or catalina.sh) you should set (or extend, if already there) the environment variable CATALINA_OPTS as follows:

:: ---------------------------
set TOMCAT_HOME=<the-path-to-your-tomcat-installation, same as CATALINA_HOME, e.g. c:\jakarta-tomcat-4.1.9>
set TAMINOWEBDAVSERVER_HOME=%TOMCAT_HOME%\webapps\taminowebdavserver
set CATALINA_OPTS=%CATALINA_OPTS% -Dtomcat.home=“%TOMCAT_HOME%”
set CATALINA_OPTS=%CATALINA_OPTS% -Dtaminowebdavserver.home=“%TAMINOWEBDAVSERVER_HOME%”
set CATALINA_OPTS=%CATALINA_OPTS% -Xms100M -Xmx200M
:: ---------------------------

If you are running Tomcat as a service (Windows), the missing system properties should be provided when the service is installed. For example, using tomcat.exe, the service should be installed as:

:: ---------------------------
set JAVA_HOME=<the-path-to-your-jdk, e.g. c:\j2sdk1.4.1_01 >
set TOMCAT_HOME=<the-path-to-your-tomcat, same as CATALINA_HOME, e.g. c:\jakarta-tomcat-4.1.9>
set TAMINOWEBDAVSERVER_HOME=%TOMCAT_HOME%\webapps\taminowebdavserver
:: —
tomcat.exe -install “The name of your service” %JAVA_HOME%\bin\hotspot\jvm.dll -Xms100m -Xmx200m -Djava.class.path=“%TOMCAT_HOME%\bin\bootstrap.jar;%JAVA_HOME%\lib\tools.jar” -Dcatalina.home=“%TOMCAT_HOME%” -Dtomcat.home=“%TOMCAT_HOME%” -Dtaminowebdavserver.home=“%TAMINOWEBDAVSERVER_HOME%” -Xrs -start org.apache.catalina.startup.Bootstrap -params start -stop org.apache.catalina.startup.Bootstrap -params stop -out “%TOMCAT_HOME%\logs\nt_service_jvm_stdout.log”
:: ---------------------------

Hope this helps!!

Regards,
Peter

Hi Dr. Peter Nevermann,
many tnx!!!

I have configured “tomcat.home” and “taminowebdavserver.home” system properties and it works, now!!!

Michelangelo


Michelangelo Serpico
Software AG

+39 02950011.1
+39 3488205068
michelangelo.serpico@softwareag.com