Questions tagged [modeshape]

ModeShape is an open source implementation of the JCR API from Red Hat.

ModeShape is a lightweight, fast, pluggable, open-source JCR repository that federates and unifies content from multiple systems, including files systems, databases, data grids, other repositories, etc. Use the JCR API to access the information you already have, or use it like a conventional JCR system (just with more ways to persist your content). ModeShape used to be 'JBoss DNA'. It's the same project, same community, same license, and same software.

Home Page: http://www.jboss.org/modeshape

Downloads: http://www.jboss.org/modeshape/downloads

84 questions
1
vote
1 answer

JCR (Modeshape) binary content + metadata

I'm using Modeshape 2.6.0...I have two types of content (content is about cars). 1)metadata : name of the car, when it was manufactured, etc...(I want store this into a database) AND 2) binary : picture of the car (I want to use a filesystem) My…
silverb77
  • 279
  • 5
  • 16
1
vote
0 answers

Oracle query is returning outdated values after commited update

I'm currently debugging an application that uses Modeshape to store values and that is getting some random errors lately. Through extensive logging and the use of P6Spy to check the internal calls, I found something. For context, Modeshape has an…
lartkma
  • 589
  • 1
  • 5
  • 15
1
vote
2 answers

jcr node detach: using JcrNode properties outside of session scope (like some kind of DTO)

Currently doing a test-app with JCR (Modeshape). The abstracted flow is as follows: session.open, a repository fetches on or more nodes related to a query, session.close. The resulting nodes contain properties, etc. that I need to present to the…
Geert-Jan
  • 18,623
  • 16
  • 75
  • 137
1
vote
0 answers

Modeshape full-text-search works only on binary files

I am trying to perform a full-text-search on my Modeshape 5.3.0.Final repository. The query is as simple as: Query query = queryManager.createQuery("SELECT * FROM [nt:resource] as data WHERE ISDESCENDANTNODE('/somenode') AND CONTAINS(data.*,'*" +…
Paul Vlasin
  • 304
  • 1
  • 9
1
vote
1 answer

ModeShape 5.1 & CMIS 1.1

Has someone managed to configure modeshape 5.1 to be compliance with CMIS 1.1? According to documentation modeshape supports CMIS 1.1 repository but when you try to get repository info, you will get the answer 1.0. I asked in Modeshape forum, but…
1
vote
1 answer

JBoss ModeShape CMIS server has several repositories with the same

I just stumbled upon this response to getRepositories from a ModeShape server:
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
1
vote
1 answer

Querying for shared nodes in JCR (ModeShape)

I have a JCR content repository implemented in ModeShape (4.0.0.Final). The structure of the repository is quite simple and looks like this: / (root) Content/ Item 1 Item 2 Item 3 ... Tags/ Foo/ …
Harald K
  • 26,314
  • 7
  • 65
  • 111
1
vote
2 answers

Modeshape workspace creation

We are working with this platform: JBoss 6.1.0.GA Modeshape 3.6.0 I just need to create a new workspace and to put inside images,javascripts, and other files I need for a webapp we are developing. I tried to connect via webdav to our modeshape…
1
vote
1 answer

Modeshape - removing node binary files

In our test server we want to delete nodes. We use below code Repository repository = .... ; Session session = null; session = repository.login(new SimpleCredentials(getApplicationName(), getPassword().toCharArray())); …
mcvkr
  • 3,209
  • 6
  • 38
  • 63
1
vote
1 answer

How to set Jboss Modeshape JNDI property

How can ı set jndi-name property on my local jboss modeshape repository named as a "sample" I've just tried, /subsystem=modeshape/repository=sample:add(jndi-name="jcr/sample") code but it fails { "outcome" => "failed", "failure-description"…
kamilc
  • 15
  • 4
1
vote
1 answer

ModeShape server-client repositories synchronization

I want to deploy a server-client architecture based on ModeShape but I can't figure out how to configure ModeShape and Infinispan to achieve my goal. Here is a typical use case: User A creates a node on the main server repository User B retrieves…
1
vote
3 answers

lost between RDBMS, JCR, CMIS

I have to start a new project for managing data generated from workflow lab. The generated data is hierarchical and contains structured and none structured data. Large part of the data will be office file and images. Querying the content of office…
kem
  • 407
  • 1
  • 6
  • 20
1
vote
1 answer

Is there a ModeShape Java client that implements the JCR API?

Jackrabbit has a java client that implements the javax.jcr API that lets you interact remotely with the server over DavEx or RMI. http://jackrabbit.apache.org/api/2.0/org/apache/jackrabbit/commons/JcrUtils.html#getRepository(java.lang.String) Is…
Hyangelo
  • 4,784
  • 4
  • 26
  • 33
1
vote
1 answer

JCR Modeshape - How is the repository storage structure in hard?

I have some node and a folder node contain file nodes in my repository. My repository directory path is: \home\myStorage\myRepository. When I browse the repository directory, it contains some unknown files like this name: "-5597184", and some…
Fazileh
  • 47
  • 1
  • 7
1
vote
1 answer

Jackrabbit/Modeshape data migration requires adding properties to frozen nodes

We are working on a migration tool for moving data from an older version to a newer version of a custom system that is based on a JCR implementation (either Jackrabbit or Modeshape). Our problem is related to JCR versioning support for some type of…
Claudiu Muresan
  • 401
  • 6
  • 19