Hello,

 

I am new to Jackrabbit and am looking forward to use 2.0 final release
in our project. When I am trying beta5 in Websphere6.1 (EJB feature pack
installed) Session bean, I got problems in JTA transactions. It would be
really great if any of you can provide some help!

 

What I am trying to do is to make a new version by adding some nodes to
another node "/data", which works all fine in JSE:

 

VersionManager.checkout("/data");

//adding new nodes to "/data"

Session.save();

VersionManager.checkin("/data");

 

If I annotate my method with TransactionAttributeType.NOT_SUPPORTED, the
thread hangs forever in the Session.save() method.

 

If I annotate my method with TransactionAttributeType.REQUIRED, I got
the error message as attached.

 

The configuration file is also attached.

 

The FAQ/wiki page doesn't help and the mailing list archive doesn't help
either...

 

Thanks in advance,

Xuetao Niu

 

Attachment: errors.log
Description: errors.log

<?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.6//EN"
                            "http://jackrabbit.apache.org/dtd/repository-1.6.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.db.MSSqlFileSystem">
        <param name="driver" value="javax.naming.InitialContext"/>
		<param name="url" value="java:comp/env/jdbc/RtdeDataSource"/>
		<param name="schema" value="mssql"/>
    </FileSystem>
	<PersistenceManager class="org.apache.jackrabbit.core.persistence.bundle.MSSqlPersistenceManager">
        	<param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:comp/env/jdbc/RtdeDataSource"/>  
			<param name="schema" value="mssql"/>
        	<param name="externalBLOBs" value="false"/>
        </PersistenceManager>
    <!--
        security configuration
    -->
    <Security appName="Jackrabbit">
        <!--
            access manager:
            class: FQN of class implementing the AccessManager interface
        -->
        <AccessManager class="org.apache.jackrabbit.core.security.simple.SimpleAccessManager">
            <!-- <param name="config" value="${rep.home}/access.xml"/> -->
        </AccessManager>

        <LoginModule class="org.apache.jackrabbit.core.security.simple.SimpleLoginModule">
           <!-- anonymous user name ('anonymous' is the default value) -->
           <param name="anonymousId" value="anonymous"/>
           <!--
              default user name to be used instead of the anonymous user
              when no login credentials are provided (unset by default)
           -->
           <!-- <param name="defaultUserId" value="superuser"/> -->
        </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.db.MSSqlFileSystem">
            <param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:comp/env/jdbc/RtdeDataSource"/>
			<param name="schema" value="mssql"/>
        	<param name="schemaObjectPrefix" value="ws_"/>
        </FileSystem>
        <!--
            persistence manager of the workspace:
            class: FQN of class implementing the PersistenceManager interface
        -->
        <PersistenceManager class="org.apache.jackrabbit.core.persistence.bundle.MSSqlPersistenceManager">
        	<param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:comp/env/jdbc/RtdeDataSource"/>  
			<param name="schema" value="mssql"/>
        	<param name="externalBLOBs" value="false"/>        
        	<param name="schemaObjectPrefix" value="ws_"/>
        	<param name="externalBLOBs" value="false"/>
        </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">
            <param name="path" value="${wsp.home}/index"/>
        </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.db.MSSqlFileSystem">
            <param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:comp/env/jdbc/RtdeDataSource"/>
			<param name="schema" value="mssql"/>  
        	<param name="schemaObjectPrefix" value="version_"/>
        </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.MSSqlPersistenceManager">
        	<param name="driver" value="javax.naming.InitialContext"/>
			<param name="url" value="java:comp/env/jdbc/RtdeDataSource"/> 
			<param name="schema" value="mssql"/>         
        	<param name="schemaObjectPrefix" value="version_"/>
        	<param name="externalBLOBs" value="false"/>
        </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">
        <param name="path" value="${rep.home}/repository/index"/>
    </SearchIndex>
</Repository>

Reply via email to