[
https://issues.apache.org/jira/browse/JCR-1305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12629184#action_12629184
]
Thomas Mueller commented on JCR-1305:
-------------------------------------
Hi,
>From the stack trace looks like you are not using Jackrabbit 1.4.5:
java.lang.UnsupportedOperationException
at
org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:116)
at
org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:554)
at
org.apache.jackrabbit.core.persistence.bundle.util.ConnectionFactory.getConnection(ConnectionFactory.java:60)
...
Line 60 of ConnectionFactory.java in Jackrabbit 1.4.5 does not call
getConnection:
if (user == null && password == null) {
That means you are using an old version of Jackrabbit core.
Could you check that there is no old jackrabbit-core in your classpath?
Regards,
Thomas
> JNDI data sources with BundleDbPersistenceManager:
> UnsupportedOperationException
> --------------------------------------------------------------------------------
>
> Key: JCR-1305
> URL: https://issues.apache.org/jira/browse/JCR-1305
> Project: Jackrabbit
> Issue Type: Bug
> Components: jackrabbit-core
> Affects Versions: 1.4
> Reporter: Thomas Mueller
> Assignee: Thomas Mueller
> Priority: Minor
> Fix For: 1.3.4, core 1.4.1
>
>
> When using the org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory, the
> BundleDbPersistenceManager can not open a database connection via JNDI
> because the method DataSource.getConnection(user, password) is not supported.
> Instead, DataSource.getConnection() must be used for this to work.
> ConnectionFactory.getConnection should be changed to call this method if user
> name and password are empty.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.