You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jackrabbit.apache.org by scriptoff <sc...@gmail.com> on 2011/02/07 09:53:13 UTC

simple webdav servlet with TransientRepository

Hello,
First of all here's my configuration:
<?xml version="1.0"?>
<!--
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<!DOCTYPE Repository PUBLIC "-//The Apache Software Foundation//DTD
Jackrabbit 1.4//EN"
                           
"http://jackrabbit.apache.org/dtd/repository-1.4.dtd">
<!-- Example Repository Configuration File -->
<Repository>
    <!--
        virtual file system where the repository stores global state
        (e.g. registered namespaces, custom node types, etc.)
    -->
    <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
        
    </FileSystem>

    <!--
        security configuration
    -->
    <Security appName="Jackrabbit">
        <!--
            access manager:
            class: FQN of class implementing the AccessManager interface
        -->
        <AccessManager
class="org.apache.jackrabbit.core.security.SimpleAccessManager">
            <!--  -->
        </AccessManager>

        <LoginModule
class="org.apache.jackrabbit.core.security.SimpleLoginModule">
           <!-- anonymous user name ('anonymous' is the default value) -->
           
           <!--
              default user name to be used instead of the anonymous user
              when no login credentials are provided (unset by default)
           -->
           <!--  -->
        </LoginModule>
    </Security>

    <!--
        location of workspaces root directory and name of default workspace
    -->
    <Workspaces rootPath="${rep.home}/workspaces"
defaultWorkspace="default"/>
    <!--
        workspace configuration template:
        used to create the initial workspace if there's no workspace yet
    -->
    <Workspace name="${wsp.name}">
        <!--
            virtual file system of the workspace:
            class: FQN of class implementing the FileSystem interface
        -->
        <FileSystem
class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
            
        </FileSystem>
        <!--
            persistence manager of the workspace:
            class: FQN of class implementing the PersistenceManager
interface
        -->
        <PersistenceManager
class="org.apache.jackrabbit.core.persistence.bundle.DerbyPersistenceManager">
          
          
        </PersistenceManager>
        <!--
            Search index and the file system it uses.
            class: FQN of class implementing the QueryHandler interface
        -->
        <SearchIndex
class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
            
            
            
            
        </SearchIndex>
    </Workspace>

    <!--
        Configures the versioning
    -->
    <Versioning rootPath="${rep.home}/version">
        <!--
            Configures the filesystem to use for versioning for the
respective
            persistence manager
        -->
        <FileSystem
class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
            
        </FileSystem>

        <!--
            Configures the persistence manager to be used for persisting
version state.
            Please note that the current versioning implementation is based
on
            a 'normal' persistence manager, but this could change in future
            implementations.
        -->
        <PersistenceManager
class="org.apache.jackrabbit.core.persistence.bundle.DerbyPersistenceManager">
          
          
        </PersistenceManager>
    </Versioning>

    <!--
        Search index for content that is shared repository wide
        (/jcr:system tree, contains mainly versions)
    -->
    <SearchIndex
class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
        
        
        
        
    </SearchIndex>
</Repository>
web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <servlet>
        <servlet-name>Test</servlet-name>
        <servlet-class>webdav.Test</servlet-class>
         <init-param>
            <param-name>resource-path-prefix</param-name>
            <param-value>/Test</param-value>
           
        </init-param>


    </servlet>
    <servlet-mapping>
        <servlet-name>Test</servlet-name>
        <url-pattern>/Test/*</url-pattern>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
</web-app>

Servlet code:

public class Test extends SimpleWebdavServlet {

    Repository repo =  null;

    @Override
    public Repository getRepository() {
        if (repo == null) {
            try {
               
                repo = new
TransientRepository("/home/cvargas/repository/repository.xml",
"/home/cvargas/repository/repo/workspaces/");
            } catch (IOException ex) {
                ex.printStackTrace();
                
            }

        }
        return repo;
    }
}


And I have this error/exception by running with
ur(lhttp://localhost:8080/mavenproject1/Test/repository/default/):
 <D:error>
<dcr:exception>
<dcr:class>javax.jcr.NoSuchWorkspaceException</dcr:class>
<dcr:message>repository</dcr:message>
</dcr:exception>
</D:error>

Thanks in advance for any help.

-- 
View this message in context: http://jackrabbit.510166.n4.nabble.com/simple-webdav-servlet-with-TransientRepository-tp3263738p3263738.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.

Re: simple webdav servlet with TransientRepository

Posted by scriptoff <sc...@gmail.com>.
I resolved the problem by using the url /Test/default but I add an image and
with the importImage function as documented in the examples page and n:file
appeared as an folder just like jcr:content.
have you any clue about that?
-- 
View this message in context: http://jackrabbit.510166.n4.nabble.com/simple-webdav-servlet-with-TransientRepository-tp3263738p3263826.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.