Tagged Questions

1
vote
1answer
28 views

Is it possible to assess Jackrabbit repository using plain HTTP?

As I understand it should be natively available in Jackrabbit 1.6 (I've found this blog entry http://dev.day.com/microsling/content/blogs/main/jrnativehttp.html) but I can not find …
0
votes
2answers
65 views

Why is skipping nodes from a query very slow in jackrabbit?

When I perform a simple query like this: select * from nodeType Calling skip(N) on the range iterator is slow. What am I doing wrong?
0
votes
2answers
24 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 …
1
vote
3answers
107 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 lay …
2
votes
3answers
169 views

CMS vs Filesystem storage id scalability

Hi, Please consider the following: I am storing around 1.2 Million TIF files ranging from 40 KB to 120 KB in size. These documents are stored on a windows server with NTFS file- …
0
votes
2answers
209 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] …
0
votes
2answers
133 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 using am automating my build using Apache …
3
votes
6answers
223 views

Java: Using which database technology could I persist objects? (Something that does NOT require me to take care of mapping objects to tables and back)?

Hello! I need to use an object oriented data repository for a project. It's going to be something between a wiki and a CMS. I'm not an expert in the field of persistence yet. I s …
2
votes
2answers
453 views

Best way to import/export a Apache Jackrabbit repository

What is the best way to import/export data from a Apache Jackrabbit repository? Right now, I have a website based on a repository with over 100GB data in a server but I frequently …
0
votes
0answers
243 views

How do I register a server in the default RMI registry for JBoss and access it from a client running in another JVM?

I am trying to access a Jackrabbit repository deployed on a JBoss application server via RMI. I am getting the following exception when I try to connect to the factory using Clien …
2
votes
2answers
470 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 withou …
0
votes
0answers
168 views

ATG taglibs on OSGI problems

We're currently creating an app that needs ATG taglibs on SLING/OSGI, we have created a bundle with these taglibs and uploaded it, of course these taglibs call ATG classes, so we a …
1
vote
2answers
227 views

Is there a tool to directly edit the contents of a Jackrabbit repository ?

I have a file system based Jackrabbit repository which I would like to view and edit directly. Is there an existing tool that allows me to view/edit/delete/add nodes directly?
2
votes
2answers
299 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 …