[jira] Updated: (JCR-2083) BLOB Store: only open a stream when really necessary

2009-04-28 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-2083: Description: Currently, PropertyImpl.getValue() opens a FileInputStream if the BLOBStore is used

[jira] Resolved: (JCR-2083) BLOB Store: only open a stream when really necessary

2009-04-28 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2083. - Resolution: Fixed Assignee: Thomas Mueller Committed in revision 769326 (trunk) BLOB Store

[jira] Resolved: (JCR-2067) FileDataStore: only open a stream when really necessary

2009-04-27 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2067?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2067. - Resolution: Fixed Committed in revision 768982 (trunk) FileDataStore: only open a stream when

[jira] Resolved: (JCR-2080) DataStore: garbage collection can fail when using workspace maxIdleTime

2009-04-22 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2080?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2080. - Resolution: Fixed Committed in revision 767416 (trunk) DataStore: garbage collection can fail

[jira] Resolved: (JCR-2063) FileDataStore: garbage collection can delete files that are still needed

2009-04-22 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2063?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2063. - Resolution: Fixed Comitted in revision 767427 (trunk) FileDataStore: garbage collection can

[jira] Created: (JCR-2080) DataStore: garbage collection can fail when using workspace maxIdleTime

2009-04-22 Thread Thomas Mueller (JIRA)
Issue Type: Bug Components: jackrabbit-core Reporter: Thomas Mueller Assignee: Thomas Mueller The GarbageCollectorTest fails because some workspaces have an idle timeout. The data store garbage collector should prevent workspace close-on-idle. Proposed

[jira] Created: (JCR-2067) FileDataStore: only open a stream when really necessary

2009-04-09 Thread Thomas Mueller (JIRA)
Reporter: Thomas Mueller Assignee: Thomas Mueller Currently, PropertyImpl.getValue() opens a FileInputStream if the FileDataStore is used. If the application doesn't use the value, this stream is never closed. PropertyImpl.getValue(): return internalGetValue

[jira] Created: (JCR-2063) FileDataStore: garbage collection can delete files that are still needed

2009-04-07 Thread Thomas Mueller (JIRA)
Issue Type: Bug Components: jackrabbit-core Reporter: Thomas Mueller Assignee: Thomas Mueller It looks like the FileDataStore garbage collection (both regular scan and persistence manager scan) can delete files that are still needed. Currently

[jira] Commented: (JCR-1216) Unreferenced sessions should get garbage collected

2009-04-02 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1216?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12694980#action_12694980 ] Thomas Mueller commented on JCR-1216: - Close the session in SkipDeniedNodesTest, revision

[jira] Commented: (JCR-2049) A tool to support large or long running transactions

2009-04-01 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2049?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12694503#action_12694503 ] Thomas Mueller commented on JCR-2049: - Yes it's a workaround. In theory the tool could

[jira] Resolved: (JCR-2031) Improved log message: include path

2009-04-01 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2031. - Resolution: Fixed Improved log message: include path

[jira] Commented: (JCR-2031) Improved log message: include path

2009-04-01 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12694585#action_12694585 ] Thomas Mueller commented on JCR-2031: - Committed in revision 760900 (trunk) Please note

[jira] Created: (JCR-2049) A tool to support large or long running transactions

2009-03-31 Thread Thomas Mueller (JIRA)
Components: jackrabbit-jcr-commons Reporter: Thomas Mueller Assignee: Thomas Mueller Priority: Minor I propose to write a tool for large or long running transactions. Instead of keeping the changes in the transient space until a transaction is completed

[jira] Commented: (JCR-673) Add seperate configuration for blobstore

2009-03-24 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-673?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12688597#action_12688597 ] Thomas Mueller commented on JCR-673: Jackrabbit 1.4 and newer supports the DataStore

[jira] Commented: (JCR-1216) Unreferenced sessions should get garbage collected

2009-03-23 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1216?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12688259#action_12688259 ] Thomas Mueller commented on JCR-1216: - Unit test committed in revision 757364 (trunk

[jira] Created: (JCR-2033) Node.orderBefore is slow

2009-03-18 Thread Thomas Mueller (JIRA)
: Thomas Mueller Assignee: Thomas Mueller Priority: Minor Use case: I have a node with a medium number of child nodes, and want to sort the child nodes. To do that, I use Node.orderBefore. This is slow (31 seconds to sort 2000 child nodes), O(n^2). Workarounds: 1) don't

[jira] Created: (JCR-2031) Improved log message: include path

2009-03-17 Thread Thomas Mueller (JIRA)
Reporter: Thomas Mueller Assignee: Thomas Mueller Priority: Minor The cluster logs a message for each appended operation. The log message is currently the revision number. A more interesting log message would be the user name, and the path of the change (the most

[jira] Updated: (JCR-2031) Improved log message: include path

2009-03-17 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-2031: Attachment: improvedLogMessage.patch patch against Jackrabbit 1.4. Example output: 17.03.2009 14:43

[jira] Created: (JCR-2026) DbDataStore: garbage collection deadlock

2009-03-16 Thread Thomas Mueller (JIRA)
Reporter: Thomas Mueller Assignee: Thomas Mueller Priority: Minor Sometimes, the unit tests hangs with the following threads blocked. It looks like a database level deadlock caused by the DbDataStore implementation. The database used is Apache Derby

[jira] Updated: (JCR-1216) Unreferenced sessions should get garbage collected

2009-03-12 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1216?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1216: Attachment: referencePatch.txt Hopefully the final patch. Using WeakReferences again. Unreferenced

[jira] Resolved: (JCR-1216) Unreferenced sessions should get garbage collected

2009-03-12 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1216?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1216. - Resolution: Fixed Fix Version/s: 1.6.0 Committed in revision 752831 (trunk

[jira] Commented: (JCR-2012) BufferedStringValue corrupts non ISO-8859-1 characters on large Strings

2009-03-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2012?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12680826#action_12680826 ] Thomas Mueller commented on JCR-2012: - Update: looks like there is a bug

[jira] Updated: (JCR-2007) Importing strings with special characters fails

2009-03-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2007?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-2007: Description: Both Session.importXML and Workspace.importXML don't work correctly in some cases

[jira] Created: (JCR-2017) System view export truncates carriage return

2009-03-11 Thread Thomas Mueller (JIRA)
: jackrabbit-jcr-commons Reporter: Thomas Mueller Assignee: Thomas Mueller If a string contains a carriage return (\r), this character was truncated on some platforms. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue

[jira] Resolved: (JCR-2017) System view export truncates carriage return

2009-03-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2017?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2017. - Resolution: Fixed Fix Version/s: 1.6.0 Committed in revision 752457 (trunk) System view

[jira] Updated: (JCR-2017) System view export truncates carriage return

2009-03-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2017?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-2017: Affects Version/s: 1.5.3 System view export truncates carriage return

[jira] Resolved: (JCR-2007) Importing strings with special characters fails

2009-03-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2007?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2007. - Resolution: Fixed Fix Version/s: 1.6.0 Committed in revision 752458 (trunk) Importing

[jira] Commented: (JCR-2007) Importing strings with special characters fails

2009-03-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2007?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12680886#action_12680886 ] Thomas Mueller commented on JCR-2007: - Julian - see the test case please. Importing

[jira] Updated: (JCR-2007) Importing strings with special characters fails

2009-03-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2007?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-2007: Description: Both Session.importXML and Workspace.importXML don't work correctly in some cases

[jira] Commented: (JCR-2012) BufferedStringValue corrupts non ISO-8859-1 characters on large Strings

2009-03-10 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2012?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12680490#action_12680490 ] Thomas Mueller commented on JCR-2012: - I'm working on this problem as well

[jira] Created: (JCR-2007) Importing very large strings could fail in some situations

2009-03-05 Thread Thomas Mueller (JIRA)
Components: jackrabbit-core Reporter: Thomas Mueller Assignee: Thomas Mueller BufferedStringValue buffers very large string to a temporary file. It uses the platform default encoding to read and write the text. Usually this is not a problem, however importing

[jira] Created: (JCR-2006) References to old repository-1.x.dtd

2009-03-04 Thread Thomas Mueller (JIRA)
, jackrabbit-jca, jackrabbit-ocm, jackrabbit-ocm-nodemanagement, jackrabbit-spi2jcr, jackrabbit-standalone Reporter: Thomas Mueller Fix For: 1.6.0 Some components still reference old version of the repository-1.x.dtd. All components should be upgraded to repository-1.6.dtd

[jira] Resolved: (JCR-2006) References to old repository-1.x.dtd

2009-03-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2006. - Resolution: Fixed Committed in revision 750008 References to old repository-1.x.dtd

[jira] Commented: (JCR-1366) DbDataStore: tablePrefix not accomodated during init test for existing DATASTORE table

2009-03-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1366?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12678737#action_12678737 ] Thomas Mueller commented on JCR-1366: - Hi, Currently the DbDataStore doesn't support

[jira] Commented: (JCR-1366) DbDataStore: tablePrefix not accomodated during init test for existing DATASTORE table

2009-03-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1366?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12678821#action_12678821 ] Thomas Mueller commented on JCR-1366: - no, I don't actually need it That means it's

[jira] Commented: (JCR-1605) RepositoryLock does not work on NFS sometimes

2009-02-18 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12674593#action_12674593 ] Thomas Mueller commented on JCR-1605: - Committed in revision 745500 (repository-1.6.dtd

[jira] Commented: (JCR-1985) NullPointerException GarbageCollector.scan()

2009-02-18 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12674635#action_12674635 ] Thomas Mueller commented on JCR-1985: - programmatic way to detect Yes. If this is null

[jira] Updated: (JCR-1985) NullPointerException in GarbageCollector.scan() if no DataStore configured

2009-02-18 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1985?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1985: Summary: NullPointerException in GarbageCollector.scan() if no DataStore configured

[jira] Resolved: (JCR-1985) NullPointerException in GarbageCollector.scan() if no DataStore configured

2009-02-18 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1985?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1985. - Resolution: Fixed Fix Version/s: (was: 1.5.3) 1.6.0 Committed

[jira] Updated: (JCR-1985) NullPointerException in GarbageCollector.scan() if no DataStore configured

2009-02-18 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1985?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1985: Priority: Minor (was: Major) NullPointerException in GarbageCollector.scan() if no DataStore

[jira] Commented: (JCR-1985) NullPointerException in GarbageCollector.scan() if no DataStore configured

2009-02-18 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12674657#action_12674657 ] Thomas Mueller commented on JCR-1985: - I saw that one of the tests first calls

[jira] Created: (JCR-1981) Test class in the main source tree

2009-02-17 Thread Thomas Mueller (JIRA)
Reporter: Thomas Mueller org.apache.jackrabbit.core.TestRepository is in the main source folder (src/main/java) instead of the test folder (src/test/java). The build of jackrabbit-core is successful even if I move the class to the test folder, so it looks like it was just a mistake

[jira] Resolved: (JCR-1981) Test class in the main source tree

2009-02-17 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1981?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1981. - Resolution: Fixed Committed in revision 745041 Test class in the main source tree

[jira] Created: (JCR-1982) Exception root cause is swallowed in various places

2009-02-17 Thread Thomas Mueller (JIRA)
Reporter: Thomas Mueller Assignee: Thomas Mueller Priority: Minor When re-throwing an exception, the root cause is swallowed in some places in Jackrabbit, mainly when converting to an IOException. -- This message is automatically generated by JIRA. - You can reply

[jira] Resolved: (JCR-1982) Exception root cause is swallowed in various places

2009-02-17 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1982?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1982. - Resolution: Fixed Committed in revision 745051 (when creating a BLOB object), revision 745053

[jira] Commented: (JCR-1982) Exception root cause is swallowed in various places

2009-02-17 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1982?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12674237#action_12674237 ] Thomas Mueller commented on JCR-1982: - Revision 745120 (on namespace index error

[jira] Commented: (JCR-1847) Path methods should throw a specific exception instead of RepositoryEx

2009-02-17 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1847?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12674259#action_12674259 ] Thomas Mueller commented on JCR-1847: - I think just RepositoryException with an error

[jira] Resolved: (JCR-1605) RepositoryLock does not work on NFS sometimes

2009-02-16 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1605. - Resolution: Fixed Fix Version/s: 1.6.0 Committed in revision 744956 (including the new

[jira] Updated: (JCR-1605) RepositoryLock does not work on NFS sometimes

2009-02-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1605: Attachment: repositoryLockMechanism.patch With this patch, the repository lock mechanism can

[jira] Commented: (JCR-1605) RepositoryLock does not work on NFS sometimes

2009-02-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12672633#action_12672633 ] Thomas Mueller commented on JCR-1605: - That would then need to be repository-1.6.dtd

[jira] Commented: (JCR-1605) RepositoryLock does not work on NFS sometimes

2009-02-10 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12672274#action_12672274 ] Thomas Mueller commented on JCR-1605: - Two weeks ago, we ran out of disk space on an NFS

[jira] Resolved: (JCR-1934) DbDataStore: delete temporary files using finalize()

2009-02-03 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1934?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1934. - Resolution: Fixed Fix Version/s: 1.6.0 Committed in revision 740262 (trunk). Temporary

[jira] Commented: (JCR-1960) Add support for the Ingres RDBMS

2009-02-02 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12669587#action_12669587 ] Thomas Mueller commented on JCR-1960: - Hi, running a test suite using Ingres You could

[jira] Commented: (JCR-1955) Lucene 2.3.2 - AlreadyClosedException: this IndexReader is closed

2009-01-28 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1955?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12668030#action_12668030 ] Thomas Mueller commented on JCR-1955: - What about adding the version number

[jira] Created: (JCR-1956) Database Data Store: close result sets

2009-01-27 Thread Thomas Mueller (JIRA)
Database Data Store: close result sets -- Key: JCR-1956 URL: https://issues.apache.org/jira/browse/JCR-1956 Project: Jackrabbit Content Repository Issue Type: Bug Reporter: Thomas Mueller

[jira] Updated: (JCR-1956) Database Data Store: close result sets

2009-01-27 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1956?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1956: Component/s: jackrabbit-core Database Data Store: close result sets

[jira] Resolved: (JCR-1956) Database Data Store: close result sets

2009-01-27 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1956?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1956. - Resolution: Fixed Fix Version/s: 1.6.0 Committed in revision 738087. Database Data Store

[jira] Resolved: (JCR-1892) Unique ID for org.apache.jackrabbit.value.BinaryValue

2009-01-27 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1892?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1892. - Resolution: Fixed Fix Version/s: 1.6.0 Committed in revision 738119 (jackrabbit-core

[jira] Created: (JCR-1954) DataStore: gc.stopScan() should be optional

2009-01-26 Thread Thomas Mueller (JIRA)
: jackrabbit-core Reporter: Thomas Mueller Assignee: Thomas Mueller Priority: Minor Data Store garbage collection currently works like this: gc.scan(); gc.stopScan(); gc.deleteUnused(); Currently, if stopScan() is not called, an exception is thrown

[jira] Commented: (JCR-1572) DbDataStore connection does not always reconnect

2009-01-21 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12665769#action_12665769 ] Thomas Mueller commented on JCR-1572: - Committed in revision 736273 (1.4 branch

[jira] Assigned: (JCR-1918) DbDataStore keeps ResultSets open

2009-01-21 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1918?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller reassigned JCR-1918: --- Assignee: Thomas Mueller DbDataStore keeps ResultSets open

[jira] Commented: (JCR-1918) DbDataStore keeps ResultSets open

2009-01-21 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1918?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12665782#action_12665782 ] Thomas Mueller commented on JCR-1918: - The patch doesn't close the first result sets

[jira] Commented: (JCR-1918) DbDataStore keeps ResultSets open

2009-01-21 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1918?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12665792#action_12665792 ] Thomas Mueller commented on JCR-1918: - The patch is incorrect if copyWhenReading

[jira] Commented: (JCR-1918) DbDataStore keeps ResultSets open

2009-01-21 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1918?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12665783#action_12665783 ] Thomas Mueller commented on JCR-1918: - I'm sorry - it does close the result set. I

[jira] Resolved: (JCR-1918) DbDataStore keeps ResultSets open

2009-01-21 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1918?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1918. - Resolution: Fixed Committed in r736286 (1.4 branch) DbDataStore keeps ResultSets open

[jira] Commented: (JCR-1934) DbDataStore: delete temporary files using finalize()

2009-01-14 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1934?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12663724#action_12663724 ] Thomas Mueller commented on JCR-1934: - AutoCloseInputStream: good idea! DbDataStore

[jira] Created: (JCR-1934) DbDataStore: delete temporary files using finalize()

2009-01-14 Thread Thomas Mueller (JIRA)
Components: jackrabbit-core Reporter: Thomas Mueller Assignee: Thomas Mueller Currently, reading from the DbDataStore creates a temporary file by default. If the application doesn't fully read or close the input stream, the file is not deleted. The best solution

[jira] Resolved: (JCR-1922) Validate the SearchIndex configuration

2009-01-14 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1922?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1922. - Resolution: Fixed Committed in revision 734375 (trunk). Validate the SearchIndex configuration

[jira] Updated: (JCR-1922) Validate the SearchIndex configuration

2009-01-13 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1922?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1922: Attachment: validateSearchIndex.patch The SearchIndex tag is now validated. There are also some

[jira] Commented: (JCR-1892) Unique ID for org.apache.jackrabbit.value.BinaryValue

2009-01-12 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1892?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12662918#action_12662918 ] Thomas Mueller commented on JCR-1892: - What about The identifier is opaque, meaning

[jira] Commented: (JCR-990) Deadlock shutting down transient repository

2009-01-08 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-990?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12661921#action_12661921 ] Thomas Mueller commented on JCR-990: Hi Sivakumar, The issue is Closed

[jira] Commented: (JCR-1927) More secure default installation

2009-01-08 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1927?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12661969#action_12661969 ] Thomas Mueller commented on JCR-1927: - This is similar to Apache Derby where user name

[jira] Commented: (JCR-1892) Unique ID for org.apache.jackrabbit.value.BinaryValue

2009-01-08 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1892?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12661972#action_12661972 ] Thomas Mueller commented on JCR-1892: - expectations about the string length Sure, what

[jira] Updated: (JCR-1892) Unique ID for org.apache.jackrabbit.value.BinaryValue

2009-01-07 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1892?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1892: Attachment: JackrabbitValue-api.patch Proposed JackrabbitValue interface Unique ID

[jira] Updated: (JCR-1892) Unique ID for org.apache.jackrabbit.value.BinaryValue

2009-01-07 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1892?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1892: Attachment: JackrabbitValue-core.patch Implementation and tests for the JackrabbitValue

[jira] Commented: (JCR-1920) Upgrade from 1.4.5 to 1.5 creates exception for LDAP authentication

2009-01-06 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1920?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12661079#action_12661079 ] Thomas Mueller commented on JCR-1920: - What about adding a 'lenient' field to BeanConfig

[jira] Commented: (JCR-1920) Upgrade from 1.4.5 to 1.5 creates exception for LDAP authentication

2009-01-06 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1920?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12661107#action_12661107 ] Thomas Mueller commented on JCR-1920: - Javadocs: directly rough the should be directly

[jira] Created: (JCR-1922) Validate the SearchIndex configuration

2009-01-06 Thread Thomas Mueller (JIRA)
: Thomas Mueller Assignee: Thomas Mueller Priority: Minor Fix For: 1.6.0 The validation of the configuration (repository.xml / workspace.xml) was enabled in JCR-1462, unfortunately a problem with the LoginModule and SearchIndex was found (see JCR-1920), so

[jira] Commented: (JCR-1920) Upgrade from 1.4.5 to 1.5 creates exception for LDAP authentication

2009-01-06 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1920?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12661136#action_12661136 ] Thomas Mueller commented on JCR-1920: - Thanks Jukka! I agree we shouldn't enable

[jira] Resolved: (JCR-1366) DbDataStore: tablePrefix not accomodated during init test for existing DATASTORE table

2008-12-17 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1366. - Resolution: Fixed Committed in revision 727376 DbDataStore: tablePrefix not accomodated during

[jira] Resolved: (JCR-1838) Garbage collection deletes temporary files in FileDataStore

2008-12-17 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1838?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1838. - Resolution: Fixed Assignee: Thomas Mueller Committed in revision 727402 Garbage collection

[jira] Commented: (JCR-1907) ClassCastException when using OracleFileSystem with JBoss JNDI

2008-12-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1907?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12655648#action_12655648 ] Thomas Mueller commented on JCR-1907: - Could you try using

[jira] Commented: (JCR-1907) ClassCastException when using OracleFileSystem with JBoss JNDI

2008-12-11 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1907?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12655675#action_12655675 ] Thomas Mueller commented on JCR-1907: - Hi, I understand the problem now. Jackrabbit

[jira] Resolved: (JCR-1883) Moved node disappears

2008-12-10 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1883?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1883. - Resolution: Fixed Assignee: Thomas Mueller Fixed in revision 725292. The unit tests succeed

[jira] Commented: (JCR-1883) Moved node disappears

2008-12-09 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1883?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12654836#action_12654836 ] Thomas Mueller commented on JCR-1883: - There are multiple solutions to the problem. One

[jira] Resolved: (JCR-1896) Persistence Manager Issue

2008-12-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1896?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1896. - Resolution: Invalid You have a typo: org.apache.jackrabbit.core. instead

[jira] Resolved: (JCR-1900) java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

2008-12-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1900?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1900. - Resolution: Invalid NoClassDefFoundError is usually not a problem of Jackrabbit. See http

[jira] Resolved: (JCR-1899) Cannot instantiate persistence manager org.apache.jackrabbit.core.persistence.bundle.MySqlPersistenceManager: Access denied for user 'root'@'localhost' (using password: NO)

2008-12-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1899. - Resolution: Invalid Caused by: java.sql.SQLException: Access denied for user 'root'@'localhost

[jira] Created: (JCR-1892) Unique ID for org.apache.jackrabbit.value.BinaryValue

2008-12-02 Thread Thomas Mueller (JIRA)
: jackrabbit-jcr-commons Reporter: Thomas Mueller Assignee: Thomas Mueller BinaryValue should have a method get the unique identifier (if one is available). That way an application may not have to read the stream if that value is already processed. When the DataStore

[jira] Resolved: (JCR-1836) Persistence: support property databaseType

2008-12-02 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1836?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-1836. - Resolution: Fixed Committed in revision 722463 (trunk) Persistence: support property

[jira] Created: (JCR-1883) Moved node disappears

2008-11-27 Thread Thomas Mueller (JIRA)
Moved node disappears - Key: JCR-1883 URL: https://issues.apache.org/jira/browse/JCR-1883 Project: Jackrabbit Issue Type: Bug Components: jackrabbit-core Reporter: Thomas Mueller

[jira] Created: (JCR-1879) Directory was previously created with a different LockFactory when open, close, delete a repository in a loop

2008-11-25 Thread Thomas Mueller (JIRA)
://issues.apache.org/jira/browse/JCR-1879 Project: Jackrabbit Issue Type: Bug Components: jackrabbit-core Environment: Mac OS X Reporter: Thomas Mueller Priority: Minor Opening a TransientRepository in a loop throws the exception Directory

[jira] Created: (JCR-1880) Same name sibling: Jackrabbit behaves differently when calling Node.getPath()

2008-11-25 Thread Thomas Mueller (JIRA)
Issue Type: Bug Reporter: Thomas Mueller Priority: Minor The following test case behaves differently when calling Node.getPath() versus not calling it: void test(boolean index) throws Exception { FileUtils.deleteDirectory(new File(repository

[jira] Commented: (JCR-1880) Same name sibling: Jackrabbit behaves differently when calling Node.getPath()

2008-11-25 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12650564#action_12650564 ] Thomas Mueller commented on JCR-1880: - A related problem: the following test case prints

[jira] Updated: (JCR-1865) Add the Data Store to the Jackrabbit API

2008-11-19 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1865?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1865: Attachment: api.patch Required changes in the Jackrabbit API Add the Data Store to the Jackrabbit

[jira] Created: (JCR-1865) Add the Data Store to the Jackrabbit API

2008-11-19 Thread Thomas Mueller (JIRA)
Reporter: Thomas Mueller Assignee: Thomas Mueller Priority: Minor Currently, the garbage collection is not part of the Jackrabbit API. However, the data store garbage collection must be used once in a while if the data store is enabled. I propose to add the required

[jira] Commented: (JCR-1865) Add the Data Store to the Jackrabbit API

2008-11-19 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12649062#action_12649062 ] Thomas Mueller commented on JCR-1865: - * MarkEventListener.started(): agreed. I'm

[jira] Commented: (JCR-1865) Add the Data Store to the Jackrabbit API

2008-11-19 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12649072#action_12649072 ] Thomas Mueller commented on JCR-1865: - client API It is a 'management API

[jira] Created: (JCR-1864) Database Data Store: clean up the code

2008-11-18 Thread Thomas Mueller (JIRA)
Reporter: Thomas Mueller Assignee: Thomas Mueller Priority: Minor There is some unnecessary code in the DbDataStore that should be removed. Also, some more tests should be added. -- This message is automatically generated by JIRA. - You can reply to this email to add

[jira] Updated: (JCR-1836) Persistence: support property databaseType

2008-11-18 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1836?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-1836: Attachment: databaseType.patch Deprecate (but still support) the setting 'schema' and use

<    8   9   10   11   12   13   14   15   16   17   >