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
#Tamino#API-Management#webMethods