I am in the process to explore the possibility to deploy slide in oracle's
application server.
Currently all this is happening on a Windows platform.

I am basically following the procedures suggested in the
"jakarta-slide/RUNNING.txt".

  1) Common jars like slide-stores.jar, slide-roles.jar, slide-kernel.jar,
     slide-webdavservlet.jar, commons-dbcp.jar, commons-pool.jar, jta.jar,
etc

      copy %SLIDE_HOME%\slide\lib\*.jar %WEB_SERVER%\common\lib
 2) Jars for the web server like slide-jmxwrapper.jar and
slide-jndiwrapper.jar

      copy %SLIDE_HOME%\slide\wrappers\*.jar $WEB_SERVER\server\lib
  3) Slide web applications like slide.war, slide-admin.war and
slide-doc.war

      copy %SLIDE_HOME%\slide\webapp\*.war %WEB_SERVER%\webapps
  4)  You can unjar the war files with jar like:

       cd %WEB_SERVER%\webapps
       mkdir slide (for example, slide.war)
       move slide.war slide
       cd slide
       jar xvf slide.war
  5) Edit the WEB_SERVER/webapps/slide/Domain.xml file
     (Refer to the below, 'Advanced configuration')
     (Also read SLIDE_HOME/doc/howto-jdbcstore.html)

After all these the application server started ok. But access to
"http://localhost:8080/slide"; or "http://localhost:8080";
failed since it could not find the "Domain.xml" file. Below is the error
message.

domain is [null]
domain is [htdocs/slide/Domain.xml]
19 Feb 2003 01:04:14 - org.apache.slide.common.Domain - INFO -
Auto-Initializing
 Domain
19 Feb 2003 01:04:14 - org.apache.slide.common.Domain - INFO - Domain
configuration : {org.apache.slide.lock=true,
org.apache.slide.versioncontrol=true, org.apa
che.slide.debug=false, org.apache.slide.search=true,
org.apache.slide.security=true}
19 Feb 2003 01:04:14 - org.apache.slide.common.Domain - ERROR - Domain
initialization error : Domain.xml (The system cannot find the file
specified)
Could not initialize domain:htdocs/slide/Domain.xml

This is what I did.

Since the domain is "null" I hardcoded the domain file as
".../htdocs/slide/Domain.xml", where the file was, WebdavServlet.java.
It then failed in Domain.java since it still could not found "Domain.xml".

My guess is that it just did not know where the "Domain.xml" file was even
though I had hard-coded it in WebdavServlet.
Does anyone have similar experience or know any steps I should take to solve
this problem?

Thanks,

Scott

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to