Tagged Questions
6
votes
3answers
1k views
What is the best way to save my POJOs into Jackrabbit JCR?
In Jackrabbit I have experienced two ways to save my POJOs into repository nodes for storage in the Jackrabbit JCR:
writing my own layer
and
using Apache Graffito
Writing my own code has proven ...
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
403 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 ...
4
votes
3answers
842 views
Does anybody know a good and easy JCR UI management Tool?
I'm importing massive data into a JackRabbit JCR repository. A good UI management tool to visualize the JCR repository would be great to check if the imported data is in a good layout, and also would ...
3
votes
4answers
97 views
JCR Repository available for Junit tests
I have a code accessing to content repositories through JCR API. My code is being developed in OSGI environment. What I want is to have a JCR content repository which should be available while running ...
3
votes
3answers
417 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 ...
3
votes
1answer
1k views
Get File Out of JCR File Node
I have the following code to insert "rose.gif" into a roseNode. But how do I retrieve the file from the repository?
Node roseNode = ...
3
votes
2answers
2k views
How do you backup an apache Jackrabbit repository without shutting Jackrabbit down?
When running Apache Jackrabbit JCR as an embedded service in your app, is there a quick way to get a sound and consistent backup of the contents of the Jackrabbit repository without shutting ...
2
votes
3answers
179 views
Performing remote query on a Jackrabbit Server
We are using Jackrabbit 2.2.6 ( webapp) deployed on a Glassfish Application server. We are also building a client to upload files to the server using the rmi interface exposed by the server. We are ...
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
2answers
330 views
Filtering “MetaData”-nodes from xpath-query in magnolia jcr
i have a problem filtering specific nodes of a jackrabbit jcr in magnolia.
when i submit following query : //element(*, standort)//*
i get:
33 nodes returned in 18ms
/standort/Standorte/MetaData
...
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
781 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
33 views
JCR SQL2 query with dynamic date comparison
I need to query the jcr repository to find nodes where a date property (e.g. jcr:created) is younger than a specific date.
Using SQL2, I do the check "jcr:created > date" like that (which works ...
1
vote
1answer
73 views
Trouble enforcing read-write ACL to Jackrabbit users on versionable nodes
We are using Jackrabbit 2.2.7 to develop a repository for xml documents.
We want to create a bunch of users for the repository and enforce some sort of read-only and read-write access privileges on ...
1
vote
1answer
116 views
Update content of node in JCR 2.0
I try to update node in JCR 2.0
InputStream content = node.getProperty("jcr:content").getProperty("jcr:data").getBinary().getStream();
//TODO same with stream
Binary value = ...;
Node contentNode ...
1
vote
1answer
118 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
292 views
Explanation and use cases of JCR workspace for human beings
Could please anybody interpret JCR 2.0 specification in regard to JCR workspaces ?
I understand that a session is always bound to exactly one persistent workspace, though a single persistent ...
1
vote
1answer
262 views
spring (Roo) + JCR (Jackrabbit..)
I want to develop an application with an admin tool to manage the content (articles...) of the website...I would like to use SPRING (ROO) but I do not know if there is any JCR API working with it ? I ...
1
vote
2answers
207 views
Jackrabbit / JCR organisation of text content data
i was thinking about, how to organize "normal" text content (i.e a String, HTML Code ...) in Jackrabbit.
Are there any recommended structures for plain text content (like for files)?
Should i store ...
1
vote
0answers
213 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
175 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
201 views
JackRabbit - Removal of duplicate rows
I have asked this question on jackrabbit-users list but I didn't get an answer.
JCR-SQL2 doesn't provide a SELECT DISTINCT (or similar, AFAIK). Neither do SQL or XPATH in JCR 1.0... How are people ...
1
vote
1answer
199 views
JCR Re-opening Connections
I am using JCR 1.0 and I am having problems re-opening JCR connections after I close them.
Here are my two helper methods:
private void openConnection() throws Exception {
loadDbProperties();
...
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
1answer
227 views
Jackrabbit Running Queries against UUID
I am using Jackrabbit and I am trying to query for an existing node which has a UUID.
My code is shown below. The problem is that UUID for referenceNode is of the form ...
1
vote
2answers
124 views
How to intercept server restart for GWT-based application?
I develop web-application which uses GWT for clients and JCR (Jackrabbit) for persistence.
Maven GWT plug-in (mvn gwt:run) launches some UI where communication between clients and server is tracked. ...
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
860 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
640 views
How do you restore a “versioned node” in a jackrabbit 2.1 repository?
Once a node has been deleted, how do you locate it so that you can restore it using jackrabbit or the jcr APIs?
1
vote
4answers
600 views
Can we use JCR API over MySQL?
Apache Jackrabbit (or the JCR API) helps you separate the data store from the data management system. This would mean that every data store provider would have to implement the JCR API for his own ...
1
vote
1answer
493 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
865 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
37 views
How to handle transactions during a HTTP request or bundle lifecycle phase in Apache Sling
From the JCR specification I know that I can request an UserTransaction object (specified in JTA) and create a begin/commit/rollback sequence during the current session. May question is if I can do ...
0
votes
1answer
111 views
Jackrabbit XPath Issue
I'm relatively new to Jackrabbit. In our application we never turned on SearchIndex section within repository.xml (so as workspace.xml) files because we always go directly to a given document using ...
0
votes
1answer
427 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
1answer
269 views
Importing XML into JCR Repository - Multi-valued properties
I'm playing with a JCR repository - Jackrabbit specifically - for storing data for my current project. Everything is going fine, though documentation is unfortunately a bit hard to find at times. What ...
0
votes
2answers
241 views
Content Validation in JCR
We are evaluating a few technologies to build a repository of WSDLs, and XSDs used within our organization. One of the options we have is to use Apache JackRabbit, that implements JCR 1.0 and 2.0. It ...
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
270 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
282 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
2answers
427 views
JCR checkin/checkout operations
I'm just starting to work with JCR (apache jackrabbit), i want to ask simple question (because i coudn't find good tutorial for it):
So for what do i need Node.checkout and Node.checkin methods?
What ...
0
votes
2answers
466 views
Problems with hyphen in Jackrabbit XPath query
Firstly, let me just say that I'm very new to JSR-170 and Jackrabbit/Lucene in general.
I have the following XPath query:
//*[@sling:resourceType="users/user-profile" and ...
0
votes
1answer
360 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
0answers
92 views
NPE when i update custom node
I am trying to upgrade jackrabbit version in my project from 1.6 to 2.1.1. Some things from 2.1.1 are very usable. After transition on new version i get "magic" problems. I often catch NPE exception ...
0
votes
1answer
345 views
Jackrabbit version delete — name is unexpected
I'm using Apache Jackrabbit to store versioned data. I'm following the template listed on the Jackrabbit wiki for versioning basics, but there's one thing that isn't working as expected.
After I run ...