Tagged Questions

9
votes
1answer
786 views

When to use JCR (content repository) over other options?

I'm trying to evaluate content repositories (JSR283) like Jackrabbit and ModeShape but I must confess that I don't understand what problem resolves in first place and even if it is a good choice for ...
4
votes
1answer
1k views

What does ModeShape offer that JackRabbit doesn't?

I just familiarized myself with Apache JackRabbit. I've done a little multi-user repository for document management. If anybody used both of them, could you please answer these questions ? Is ...
4
votes
3answers
410 views

How to access remote jackrabbit repository?

I need to work with remote jackrabbit repository. I use following code to connect to the local repository: Repository repository = new TransientRepository(); Session session = repository.login(new ...
3
votes
1answer
58 views

How to snapshot backup & restore from JCR (Java Content Repository)

How can I snapshot backup/restore JCR repository? I need complete integrity. This means, single snapshot image produced by single backup command must be valid without any external dependancy. And it ...
3
votes
3answers
423 views

Jackrabbit user management

I can hardly find any documentation on how to design and build a repository for multiple users. I'm quite new to Jackrabbit and I was always using one master user credentials to build a repository ...
2
votes
1answer
2k views

How to add file with additional properties into Liferay's Document Library

I'm trying to figure this out, I was asking this question in Liferay's forum here - the last entry. And only thing I'm able to come up with is creating an Expando for FileEntry, which seems very ...
2
votes
2answers
265 views

Is it possible to use Alfresco as JCR framework?

I'd like to know if Alfresco could be used only as a framework to manage content in repository. Without all the fancy layers above. I've tried some maven alfresco archetypes, but they are mainly ...
2
votes
1answer
285 views

Persisting various types of documents (ods, ms office, pdf) into Jackrabbit repository

I'm not sure what approach to choose for storing those types of documents because the key requirement is to gather as much metadata as possible and pdf, ods and MS office documents have various types ...
2
votes
3answers
322 views

Java Content Repository implementation: single-threaded, in-memory, read-only?

Does a Java Content Repository (JCR, specified in JSR-283) implementation with the following features exist? Single-threaded (does not create threads for background processing). In-memory (does not ...
2
votes
1answer
365 views

What's the correct way to read an inputStream into a node property in JCR 2?

In JCR 1 you could do: final InputStream in = zip.getInputStream(zip.getEntry(zipEntryName)); node.setProperty(JcrConstants.JCR_CONTENT, in); But that's deprecated in JCR 2 as detailed at ...
2
votes
1answer
390 views

Java JCR: Correspondance between parent and child node versions

I am using Jackrabbit and I have the following question: I have a parent node P and a child node C. Both P and C are versionable. At some point in my code I need to get data from a previous version V ...
2
votes
1answer
225 views

Connect multiple JCR repositories to one database (and keep updated)

I am a little bit stuck in the moment because I don't know if my problem is solvable at all. I have one database (MySQL) where a JCR repo is stored. Secondly do I have two webapps (edit/live) that ...
2
votes
2answers
783 views

Logging into Jackrabbit with custom LoginModule

I am trying to write a LoginModule that authenticates users with Jackrabbit repository. However, I want it to check the credentials that are stored in repository itself. So the problem is, in my ...
1
vote
1answer
128 views

Can I use MongoDB for Java Content Repository?

Can I use MOngoDB for JCR storing file (xml file)?
1
vote
1answer
120 views

JCR jackrabbit pagination

I'm using the following JCR-SQL2 Query to retrieve some files from jackrabbit repository SELECT id FROM [nt:file] WHERE ISDESCENDANTNODE([/repo/cms]) How can I use pagination in jackrabbit ...
1
vote
4answers
147 views

browsing JACKRABBIT content visually?

i want to remove my current content from my DataBase tables. and take them to a Content Repository (JCR) is there any wizard that lets browsing Jackrabbit content visually. because working with ...
1
vote
1answer
69 views

Application Data Persistence Framework/Library?

Our Java desktop application is managing several text files as edited by the users. Currently, those files are saved into the file system using in-house Java code. We'd like to move away from this ...
1
vote
1answer
138 views

How much does CMIS specification cover JCR specification?

I'm planning to use openCMIS (apache chemistry project) with my JCR repository via JCR bridge. But there is a lack of documentation for this. Apart from CRUD of files from/to JCR repository which I ...
1
vote
0answers
214 views

Are jackrabbit object content mapping and org.springmodules.jcr dying?

I was wondering about this. I'm planning to employ jackrabbit in a ECM project and it seems that OCM is dying or what, it is a different fork that the rest of the project. In maven repos there are old ...
1
vote
1answer
176 views

Is there any abstraction layer for Apache JackRabbit repository?

I was wondering if there is a library that provides developers with some sort of abstraction for accessing JackRabbit more easily. I'm aware of the fact that there are a few CMS that utilizes ...
1
vote
1answer
229 views

JackRabbit persistence managers clarification

I'm trying to decide what type of persistence manager to use for my project. I read this wiki entry about persistenceManagers. First of all, due to JCR-2802 (all non-bundle PM deprecated), there are ...
1
vote
1answer
592 views

How do I setup Jackrabbit Repository.xml for 2 Nodes with Shared NFS Mount?

I'm having a lot of trouble trying to get my repository.xml correct for a 2 node configuration using a shared NFS mount. Should I be using a DB persistence manager for both the PersistenceManager and ...
1
vote
2answers
113 views

JCR find mandatory property in runtime

Im a java dev. and i now i'm facing with jackrabbit v.1.6.4. Now one of my goal is to create node in a web based jcr browser, so when i have to create node with mandatory property of course the ...
1
vote
1answer
165 views

JCR (JSR-170) connector for Lotus Notes

I'm looking for JCR (JSR-170) connector for Lotus Notes Domino Server 7 for integration between our customer Domino server and our software. Does anybody has an experience in dealing with such JCR ...
1
vote
1answer
862 views

Custom JCR (Jackrabbit) node property type

I want to use an enum constant for a property value in jackrabbit. However the Node.setProperty() only accepts primitive types, String and Value as property value types. I looked through the ...
1
vote
1answer
494 views

Java JCR how to change order of nodes?

I am using Jackrabbit with JCR, how can I change the order of the nodes?
1
vote
3answers
877 views

How do I configure custom node definitions in Apache Jackrabbit?

Is there a way that I can configure custom node types for Apache Jackrabbit to be registered when a new repository is instantiated? I am automating my build using Apache Maven and have some unit ...
1
vote
3answers
866 views

JCR 170 Data modeling: Node names

The situation: Lets say we are implementing a blog engine based on JCR with support for localization. The content structure looks something like this /blogname/content/[node name] The problem: What ...
0
votes
1answer
27 views

How do I do a multi-level properties query in JCR 2.0 SQL2?

I want to do something like this, but in JCR_SQL2 (since XPATH is now deprecated in JCR 2.0). QueryManager queryManager = session.getWorkspace().getQueryManager(); String queryExpression = ...
0
votes
1answer
45 views

JCR 2.0 how right use session

This guide JCR Wiki proposes the use of a new session for each request. My task is to create a tree of jackrabbit files. So going by this guide to get properties/ nodes of each item, I would need to ...
0
votes
2answers
87 views

Can Sling handle “virtual resources”?

Background: I've been tasked with implementing search engine sitemaps for a website running on Sling. The site has multiple country-specific sites, and every country-specific sites can have multiple ...
0
votes
1answer
430 views

Liferay's document library for multiple users with private repository/folder/files for each one

I'd like to set up a portal where users don't cooperate but they are not aware of each other within the community. Each user works only with his files. I don't see a way how to handle that via ...
0
votes
2answers
58 views

Convert Hippo JCR datetime to Java format

I use JCR Query to get some news from Hippo repository. and as result I getting date in this format: 2011-04-07T08:34:13.093Z can someone tell me how can I convert it to like this: 07-04-2011 ...
0
votes
3answers
300 views

what is JCR in java and spring

I have been learning java spring hibernate MVC for 3 months and got pretty idea of that . But i have not understood what JCR means. I mean for e.g in my simple webiste in spring MVC what part can be ...
0
votes
1answer
178 views

Is storing temporary files into JackRabbit a good idea?

does anobody know how much overhead jackrabbit has, in comparison with pure FS persistence ? I'm using it for a CMS project, but I also have to persist temporary files (that unfortunately have ...
0
votes
2answers
271 views

openCMIS Local binding - JcrServiceFactory with jackRabbit implementation

Hey, there is something wrong with the third alternative, because the loop in JcrServiceFactory is searching for properties starting with jcr.* (others are not passed along), but right after in ...
0
votes
1answer
303 views

Is it possible to connect an existing JCR repository to Liferay?

I'm wondering if I can setup liferay to use my existing JackRabbit repository via com.liferay.documentlibrary.util.JCRHook If I set all these properties to match my repository, would it work ? ...
0
votes
1answer
29 views

How to Commit node in JCRRepository

How can i commit a node in JCRRepositorty that will persist in all session.
0
votes
2answers
87 views

Repository Types

How many types of JCRRepository are there?
0
votes
1answer
283 views

Jcr node how to changing name?

i have a question for you, i'm tring to changing the name of a jcr node. But i have no idea of how? Someone of you has some hints? Many thanks Have a nice weekend! j.
0
votes
1answer
188 views

High-level Java filesystem content manipulation : old style vs. jcr?

what is the best way to choose for managing text/binary content on filesystem? Typically when building web applications with a lot of multimedia binaries and other various text based content stored on ...
0
votes
1answer
365 views

Can't remove version in Jackrabbit

I'm trying to remove a version from the version history and I'm getting javax.jcr.ReferentialIntegrityException: Unable to remove version. At least once referenced. When I try to remove all ...
0
votes
2answers
106 views

Handle InvalidItemStateException in jackrabbit

We are now experiencing a number of InvalidItemStateException in our web application caused by 2 or more users updating the same content. As far as I understood it is in design of JackRabbit to throw ...