Hi,
I'm trying to set up a unique JCR repository for up to 3 workstations on a
LAN. It is installed on one of the 3 computers and is made accessible using
windows sharing options.
All 3 computers are running their own JBoss instance, trying to access
concurrently to the unique JCR repository.
I have upgraded to jackrabbit 1.4.4 for better management of concurrent
access and I have edited my repository.xml to add these lines:
<Workspace name="${wsp.name}">
<FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
<param name="path" value="${wsp.home}"/>
</FileSystem>
<PersistenceManager
class="org.apache.jackrabbit.core.persistence.bundle.BundleFsPersistenceMana
ger" >
</PersistenceManager>
<SearchIndex
class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
<param name="path" value="${wsp.home}/index"/>
</SearchIndex>
</Workspace>
<Versioning rootPath="${rep.home}/version">
<FileSystem
class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
<param name="path" value="${rep.home}/version" />
</FileSystem>
<PersistenceManager
class="org.apache.jackrabbit.core.persistence.bundle.BundleFsPersistenceMana
ger" >
</PersistenceManager>
</Versioning>
Everything should be ok, but still I keep getting those
"RepositoryException:Unable to create or lock file..."
(Though all users have read/write access rights on the repository folder and
sub-folders)
Any idea about what's missing or what I've done wrong ??
Thanks a lot in advance!
Frederic Boy