[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-21 Thread Martijn Hendriks (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529379
 ] 

Martijn Hendriks commented on JCR-940:
--

> Do you agree that retry doesn't make sense if the driver could not be loaded?

Yes, good point!

> If yes I will change the code. Also, it would probably make sense to write 
> the database URL and the user name (not the password) to the log file, so
> the person (alias poor guy) who has to start the database knows which one and 
> can test the connection using some other tool.

Yes, that's more informative than the current situation.




> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: jackrabbit-core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-2nd.patch, JCR-940-v2.patch, JCR-940-v3.patch, 
> JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-21 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529366
 ] 

Thomas Mueller commented on JCR-940:


Revision 578043: apply patch submitted by Martijn Hendriks (plus 
RepositoryException if the driver could not be loaded).

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: jackrabbit-core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-2nd.patch, JCR-940-v2.patch, JCR-940-v3.patch, 
> JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-21 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529346
 ] 

Thomas Mueller commented on JCR-940:


Sorry, I have attached my comments to the wrong bug (JCR-1138).

Hi,

The patch looks good. I tried with PostgreSQL and got this problem:

ConnectionRecoveryManager: could not setup connection, reason: could not load 
driver: org.postgresql.Driver, state/code: null/0
(ConnectionRecoveryManager.java, line 430)
ConnectionRecoveryManager: blocking until database connection is up again...
(ConnectionRecoveryManager.java, line 368)

Do you agree that retry doesn't make sense if the driver could not be loaded? 
If yes I will change the code. Also, it would probably make sense to write the 
database URL and the user name (not the password) to the log file, so the 
person (alias poor guy) who has to start the database knows which one and can 
test the connection using some other tool.

If that's OK with you, I will make it throw a RepositoryException if the 
database driver could not be loaded or initialized 
(ExceptionInInitializerError):

private void setupConnection() throws SQLException, RepositoryException {
try {
Class driverClass = Class.forName(driver);
// Workaround for Apache Derby:
// The JDBC specification recommends the Class.ForName method 
without the .newInstance() method call,
// but adding the newInstance() guarantees that Derby will be 
booted on any Java Virtual Machine.
driverClass.newInstance();
} catch (Throwable e) {
throw new RepositoryException("Could not load or initialize the 
database driver class " + driver, e);
}



> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: jackrabbit-core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-2nd.patch, JCR-940-v2.patch, JCR-940-v3.patch, 
> JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



RE: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-20 Thread Martijn Hendriks
Hi Thomas,

> > I've patched this locally and want to execute the unit 
> tests using the MSSQL bundle PM. I'm not familiar with the 
> test harness...how should I do this? Some initial attempts to 
> alter the repository.xml and workspace.xmls in the 
> jackrabbit-core\applications\test directory failed.
> 
> It's a bit tricky: you need to change repository.xml (2 
> places) and in both workspace.xml files (1 place each). I have used:

Thanks for the tip. The problem was that I also tried to use a database
filesystem. If I only change the PM then it works fine.

Best regards,

Martijn


Integration tests in Jackrabbit (Was: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.)

2007-09-20 Thread Jukka Zitting
Hi,

On 9/20/07, Thomas Mueller <[EMAIL PROTECTED]> wrote:
> I have multiple configurations (copies of the applications/test
> directory). Before running the build I just replace the files with the
> configuration (simple db, bundle db, data store) I want to test. I
> think it would be great if the unit test could be run against each
> configurations one after the other - but I don't know how this can be
> automated using JUnit / Maven.

The current test suite in jackrabbit-core is an integration test suite
rather than a unit test suite, and would really require more support
than what Maven currently has for normal unit tests. The complex
plugin rules in pom.xml and configuration files in applications/test
are a symptom of this mismatch.

I'd like to leave only real unit tests (i.e. that test just a single
class or component in isolation) as is, and move the
jackrabbit-jcr-tests and other similar test cases to be run as  a part
of the Maven integration test lifecycle phases. Then we could probably
have multiple different test configurations that could be easily
enabled/disabled. I'm not yet sure how this would work in practice, as
there doesn't seem to be much of a best practice for integration tests
with Maven.

BR,

Jukka Zitting


Re: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-20 Thread Thomas Mueller
Hi,

> I think that besides the BundleDbPM.store method
> the ConnectionrecoveryManager.execute* methods
> also need to be wrapped by a retry-loop.

I think you are right, those methods should loop as well (except when
autoReconnect is false).

> I've patched this locally and want to execute the unit tests using the MSSQL 
> bundle PM. I'm not familiar with the test harness...how should I do this? 
> Some initial attempts to alter the repository.xml and workspace.xmls in the 
> jackrabbit-core\applications\test directory failed.

It's a bit tricky: you need to change repository.xml (2 places) and in
both workspace.xml files (1 place each). I have used:

repository.xml / Workspace


  
  
  
  
  


repository.xml / Versioning


  
  
  
  
  


workspaces/*/workspace.xml:


  
  
 
  
  
  

I have multiple configurations (copies of the applications/test
directory). Before running the build I just replace the files with the
configuration (simple db, bundle db, data store) I want to test. I
think it would be great if the unit test could be run against each
configurations one after the other - but I don't know how this can be
automated using JUnit / Maven.

Thomas

>
> > add db connection autoConnect for BundleDbPersistenceManager.
> > -
> >
> > Key: JCR-940
> > URL: https://issues.apache.org/jira/browse/JCR-940
> > Project: Jackrabbit
> >  Issue Type: Improvement
> >  Components: core
> >Affects Versions: 1.3
> >Reporter: Xiaohua Lu
> > Attachments: JCR-940-v2.patch, JCR-940-v3.patch, JCR-940.patch
> >
> >
> > Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> > once database is bounced. it would be nice to add this feature.
>
> --
> This message is automatically generated by JIRA.
> -
> You can reply to this email to add a comment to the issue online.
>
>


[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-20 Thread Martijn Hendriks (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12529077
 ] 

Martijn Hendriks commented on JCR-940:
--

Hi Thomas,

I think that besides the BundleDbPM.store method the 
ConnectionrecoveryManager.execute* methods also need to be wrapped by a 
retry-loop. I've patched this locally and want to execute the unit tests using 
the MSSQL bundle PM. I'm not familiar with the test harness...how should I do 
this? Some initial attempts to alter the repository.xml and workspace.xmls in 
the jackrabbit-core\applications\test directory failed.

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940-v3.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-14 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527553
 ] 

Thomas Mueller commented on JCR-940:


Revision 575734: BundleDbPersistenceManager auto-reconnect
I have implemented the loop BundleDbPersistenceManager.store(ChangeLog), but 
unfortunately the feature still doesn't work always in the following case:
- enabling 'blockOnConnectionLoss'
- run mvn install
- stop the database server (for example PostgreSQL) while the test runs
- start the database server
Sometimes the SQLException is thrown, and the test fails.
This needs to be tested some more.

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940-v3.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-14 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527511
 ] 

Thomas Mueller commented on JCR-940:


I have run the unit tests with this patch, and that works.

I wanted to test if auto-reconnect works using PostgreSQL on a remote machine. 
Unfortunately it is quite complex to enable remote connections in PostgreSQL 
(you need to change pg_hba.conf and postgresql.conf, the GUI doesn't really 
work), and I was not fully successful: Remote connections still don't work, 
except if I use a TCP/IP redirect utility (actually one I made myself some time 
ago). But this is very slow.

I tried out auto-reconnect (remove network cable), but I found some problems: 
Unlike the regular DatabasePersistenceManager, BundleDbPersistenceManager.store 
doesn't try to re-connect:

void store(ChangeLog changeLog) {
  ..
  connectionManager.setAutoReconnect(false);
  super.store(changeLog);
  ..
}

So the feature still needs to be improved and tested more.
But the patch doesn't seem to break anything, so I will commit it shortly.

Thomas

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940-v3.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-14 Thread Martijn Hendriks (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527480
 ] 

Martijn Hendriks commented on JCR-940:
--

> Great! The patch looks very good!
Thanks!

> I will apply it in my environment, test it, and then commit it. The 
> 'blockOnConnectionLoss' feature is OK, what is your use case? Just one 
> remark: 

Our application caches query results that we know to be stable. If some nodes 
in the result set of such a query are not yet in the Jackrabbit caches and the 
connection is lost, then they are skipped in the NodeIterator for the queries 
result. I.e., our caches could get out-of-sync when the connection is lost, 
which would require a restart. Blocking within Jackrabbit solves this 
transparently, and this patch makes a first attempt at that. Currently one 
statement/changelog fails before blocking, i.e. that statement/changelog is 
lost, so with very bad luck our caches could still get out of sync. I'm still 
thinking on how to block on this first statement/changelog in an elegant way. 
Of course, we get a lot of contention, but that would - in theory be resolved - 
when the connection comes up again.

> Currently TRIALS is 2, that means giving up after at most 1 second. I think 
> that's a bit short. What about setting TRIALS to 10? It will then try at
> most 5 seconds, enough for a unstable wireless connection (not sure if this 
> is a use case).

Yes, 10 is fine.

Martijn

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940-v3.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-14 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527442
 ] 

Thomas Mueller commented on JCR-940:


Hi,

Great! The patch looks very good! 

I will apply it in my environment, test it, and then commit it. The 
'blockOnConnectionLoss' feature is OK, what is your use case? Just one remark: 
currently SLEEP_BEFORE_RECONNECT is 0.5 seconds, that's great because 
re-creating a TCP/IP connection usually is quick, no need to wait many seconds 
before the first re-try (if we expect MySQL to be the 'customer' for this 
feature). 

Currently TRIALS is 2, that means giving up after at most 1 second. I think 
that's a bit short. What about setting TRIALS to 10? It will then try at most 5 
seconds, enough for a unstable wireless connection (not sure if this is a use 
case).

Thomas

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940-v3.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-07 Thread Martijn Hendriks (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525680
 ] 

Martijn Hendriks commented on JCR-940:
--

Hi Thomas,

Thanks for your detailed comments! I'll take a good look at them when I have 
time (probably after the weekend) and prepare a third version.

Martijn

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-07 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525653
 ] 

Thomas Mueller commented on JCR-940:


> store: log.warn("storing and committing changes failed: " + e.getMessage());

exception stack traces must be logged as well:

log.warn("storing and committing changes failed: " + e.getMessage(), e);

> stmt = connectionManager.getConnection().prepareStatement("select NODE_ID, 
> BUNDLE_DATA from BUNDLE");

The SQL statement should stored in one of the member variables in my view (but 
it was also not done before...).

+if (!connectionManager.setAutoCommit(false)) {
+throw new ItemStateException("disabling autoCommit failed");

Using a return value for an exception.

+Object[] keys = getKey(bundle.getId().getUUID());
+Object[] params = new Object[keys.length + 1];
+params[0] = out.toByteArray();
+for (int i = 1; i < params.length; i++) {
+params[i] = keys[i-1];
 }

What about using an ArrayList:
List params = getKey(bundle.getId().getUUID());
params.add(out.toByteArray());

-stmt.setBytes(2, bundle.getId().getUUID().getRawBytes());
This is code you removed... Strange, how did this work with getStorageModel() 
!= SM_BINARY_KEYS?

+Connection con = connectionManager.getConnection();
+if (con != null) {
+DatabaseMetaData metaData = con.getMetaData();
+if (metaData.getDriverMajorVersion() < 10) {

+Connection con = connectionManager.getConnection();
+if (con != null) {
+try {
+con.rollback();

In some places the return value is checked, in other places not. I would make 
sure getConnection never returns null, otherwise you get NullPointerExceptions 
in strange places, and you don't really know what was the reason.

+/**
+ * @return the database connection that is managed, possibly null
+ */
+public synchronized Connection getConnection() {
+int trials = TRIALS;
+while (trials-- > 0) {
+
+// First, try to reconnect if needed
+if (isClosed && autoReconnect) {
+reestablishConnection();
+}
+
+// Then, try to return the connection
+if (!isClosed) {
+return connection;
+}
+}
+log.warn("failed to get connection");
+return null;
+}

I would write:

+/**
+ * @return the database connection that is managed, possibly null
+ */
+public synchronized Connection getConnection() throws SQLException {
+// reconnect if needed
+if (isClosed && autoReconnect) {
+reestablishConnection();
+}
+return connection;
+}

In my view, reestablishConnection should loop, and if it can't connect, throw 
an exception. And once it failed, it should set autoReconnect to false, 
otherwise other code will try to re-connect again and again (maybe endlessly). 
You have used reestablishConnection in many places in the code, I think it 
should only be called in one place.

Thomas


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-07 Thread Thomas Mueller (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525632
 ] 

Thomas Mueller commented on JCR-940:


Hi,
I have a few comments:

SLEEP_BEFORE_RECONNECT = 1;
TRIALS = 1;
I would use:
SLEEP_BEFORE_RECONNECT = 500;
TRIALS = 20;

public synchronized boolean addStatement(String sql) {
...
log.warn("failed to add statement");
return false;
}

It's easy to forget checking the return value. Actually, you did _not_ check it.
I would throw an exception if preparing a statement failed.

initPreparedStatements: why not prepare the statements when they are first used?
Like that you only prepare statements that are actually used. This saves time. 
So I would change:

PreparedStatement stmt = (PreparedStatement) preparedStatements.get(sql);
if (stmt == null) {
  throw new Exception("unknown SQL statement: " + sql);
}

to

PreparedStatement stmt = (PreparedStatement) preparedStatements.get(sql);
if (stmt == null) {
  stmt = connection.prepareStatement(sql);
  preparedStatements.add(sql, stmt);
}

There is anyway a loop to reconnect if this failed. So you can get rid of 
addStatement(..), rePrepareStatements, and sqlStatements.

+if (params[i] instanceof Long) {
+stmt.setLong(i + 1, ((Long) 
params[i]).longValue());
+} else if (params[i] instanceof byte[]) {
+stmt.setBytes(i + 1, (byte[]) params[i]);
+} else if (params[i] instanceof Blob) {
+stmt.setBlob(i + 1, (Blob) params[i]);
+} else {
+stmt.setObject(i + 1, params[i]);

Only the last line is required.

// close shared prepared statements

This is not required. If the connection is closed, the prepared statements are 
closed. Just calling preparedStatements.clear() is enough.

boolean reestablishConnection(..)

Again, using a return value...


private Set sqlStatements = new HashSet();


-stmt = con.prepareStatement(
-"select NODE_ID, BUNDLE_DATA from "
-+ schemaObjectPrefix + "BUNDLE");
+stmt = 
connectionManager.getConnection().prepareStatement("select NODE_ID, BUNDLE_DATA 
from BUNDLE");

The schemaObjectPrefix is lost here.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940-v2.patch, JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Stefan Guggisberg (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525410
 ] 

Stefan Guggisberg commented on JCR-940:
---

> Martijn Hendriks commented on JCR-940:
> --
> 
> Hi Stefan,
> 
> I'm preparing a new version of the patch. I see that #563900 belongs to 
> JCR-1039, but where is #566385?

sorry, my mistake. it's #566985. it's just a trivial typo correction:

http://svn.apache.org/viewvc?view=rev&revision=566985

cheers
stefan

> 
> Best regards,
> Martijn



> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Stefan Guggisberg (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525387
 ] 

Stefan Guggisberg commented on JCR-940:
---

test



> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Paco Avila
El jue, 06-09-2007 a las 09:38 +0200, Marcel Reutegger escribió:
> I removed Bram from the watcher list, hoping that the posts will stop. didn't 
> work unfortunately. anyone have a better idea?

Unsubscribe him from the mailing list

> 
> regards
>   marcel
> 
> Bram de Kruijff (JIRA) wrote:
> > [ 
> > https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525352
> >  ] 
> > 
> > Bram de Kruijff commented on JCR-940:
> > -
> > 
> > Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
> > email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
> > zaken kunt u contact opnemen met Marieke Smit op nummer +31
> > (0)24-3888261.
> > 
> > Thank you for contacting me - unfortunately I am away from my email
> > right now but I will reply to you on my return. In the meantime, if you
> > need some assistance, please call Marieke Smit at +31 (0)24-3888261.
> > 
> > --
> > Bram de Kruijff
> >  creative online development B.V.
> > 
> > 
> >> add db connection autoConnect for BundleDbPersistenceManager.
> >> -
> >>
> >> Key: JCR-940
> >> URL: https://issues.apache.org/jira/browse/JCR-940
> >> Project: Jackrabbit
> >>  Issue Type: Improvement
> >>  Components: core
> >>Affects Versions: 1.3
> >>Reporter: Xiaohua Lu
> >> Attachments: JCR-940.patch
> >>
> >>
> >> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> >> once database is bounced. it would be nice to add this feature. 
> > 
> 



Re: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Marcel Reutegger

looks like it did work. I was a bit impatient...

regards
 marcel

Marcel Reutegger wrote:
I removed Bram from the watcher list, hoping that the posts will stop. 
didn't work unfortunately. anyone have a better idea?


regards
 marcel

Bram de Kruijff (JIRA) wrote:
[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525352 
]

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.



add db connection autoConnect for BundleDbPersistenceManager.
-

Key: JCR-940
URL: https://issues.apache.org/jira/browse/JCR-940
Project: Jackrabbit
 Issue Type: Improvement
 Components: core
   Affects Versions: 1.3
   Reporter: Xiaohua Lu
Attachments: JCR-940.patch


Since bundled db pm doesn't inherited from database pm, it can't 
reconnect once database is bounced. it would be nice to add this 
feature. 









RE: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Arje Cahn
 
> didn't work unfortunately. anyone have a better idea?

> > In the meantime, if 
> > you need some assistance, please call Marieke Smit at +31 
> (0)24-3888261.

Call Marieke Smit? :)



Re: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Marcel Reutegger
I removed Bram from the watcher list, hoping that the posts will stop. didn't 
work unfortunately. anyone have a better idea?


regards
 marcel

Bram de Kruijff (JIRA) wrote:
[ https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525352 ] 


Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.



add db connection autoConnect for BundleDbPersistenceManager.
-

Key: JCR-940
URL: https://issues.apache.org/jira/browse/JCR-940
Project: Jackrabbit
 Issue Type: Improvement
 Components: core
   Affects Versions: 1.3
   Reporter: Xiaohua Lu
Attachments: JCR-940.patch


Since bundled db pm doesn't inherited from database pm, it can't reconnect once database is bounced. it would be nice to add this feature. 






[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525353
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



RE: [jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Ard Schrijvers
Can somebody with enough rights remove Bram from here...

https://issues.apache.org/jira/secure/ManageWatchers!default.jspa?id=12370172

Strange, an out of the office reply ending up in a recursive jira comment 
loop...

Regards Ard

> 
> 
> [ 
> https://issues.apache.org/jira/browse/JCR-940?page=com.atlassi
> an.jira.plugin.system.issuetabpanels:comment-tabpanel#action_1
> 2525351 ] 
> 
> Bram de Kruijff commented on JCR-940:
> -
> 
> Bedankt voor uw bericht - helaas ben ik op dit moment niet in 
> staat mijn
> email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
> zaken kunt u contact opnemen met Marieke Smit op nummer +31
> (0)24-3888261.
> 
> Thank you for contacting me - unfortunately I am away from my email
> right now but I will reply to you on my return. In the 
> meantime, if you
> need some assistance, please call Marieke Smit at +31 (0)24-3888261.
> 
> --
> Bram de Kruijff
>  creative online development B.V.
> 
> 
> > add db connection autoConnect for BundleDbPersistenceManager.
> > -
> >
> > Key: JCR-940
> > URL: https://issues.apache.org/jira/browse/JCR-940
> > Project: Jackrabbit
> >  Issue Type: Improvement
> >  Components: core
> >Affects Versions: 1.3
> >Reporter: Xiaohua Lu
> > Attachments: JCR-940.patch
> >
> >
> > Since bundled db pm doesn't inherited from database pm, it 
> can't reconnect once database is bounced. it would be nice to 
> add this feature. 
> 
> -- 
> This message is automatically generated by JIRA.
> -
> You can reply to this email to add a comment to the issue online.
> 
> 


[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525352
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525351
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525349
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525348
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525346
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525345
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525344
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525343
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525342
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525341
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525339
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525337
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525336
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525333
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525329
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525326
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525323
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-06 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525321
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525320
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525319
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525317
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525316
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525315
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525313
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525312
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525311
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525309
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525306
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Bram de Kruijff (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525305
 ] 

Bram de Kruijff commented on JCR-940:
-

Bedankt voor uw bericht - helaas ben ik op dit moment niet in staat mijn
email te lezen maar zal reageren wanneer ik terug ben. Voor dringende
zaken kunt u contact opnemen met Marieke Smit op nummer +31
(0)24-3888261.

Thank you for contacting me - unfortunately I am away from my email
right now but I will reply to you on my return. In the meantime, if you
need some assistance, please call Marieke Smit at +31 (0)24-3888261.

--
Bram de Kruijff
 creative online development B.V.


> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-09-05 Thread Martijn Hendriks (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525302
 ] 

Martijn Hendriks commented on JCR-940:
--

Hi Stefan,

I'm preparing a new version of the patch. I see that #563900 belongs to 
JCR-1039, but where is #566385?

Best regards,
Martijn

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-08-24 Thread Stefan Guggisberg (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12522542
 ] 

Stefan Guggisberg commented on JCR-940:
---

one thing i forgot to mention: the new classes ConnectionRecoverable & 
ConnectionRecoveryManager would IMO be better placed in the 
o.a.j.core.persistence.util package (instead of o.a.j.core) .

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-08-24 Thread Stefan Guggisberg (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12522486
 ] 

Stefan Guggisberg commented on JCR-940:
---

> What do you think about letting Jackrabbit only return when a query succeeded 
> (i.e., if the database connection is lost then Jackrabbit code retries until 
> it succeeds)?

personally i don't think that this would be a good idea since JCR api calls 
could as a result block forever.

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-08-24 Thread Martijn Hendriks (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12522472
 ] 

Martijn Hendriks commented on JCR-940:
--

Hi Stefan,

Thanks for the feedback! I'll check out the lost changes you mention, and 
you're absolotely right on the blob parameter. The resetStatement calls are not 
removed but are now placed in the ConnectionRecoveryManager.executeStmt method.

What do you think about letting Jackrabbit only return when a query succeeded 
(i.e., if the database connection is lost then Jackrabbit code retries until it 
succeeds)?

I'll try to make a second version of the patch asap.

Best regards,

Martijn

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (JCR-940) add db connection autoConnect for BundleDbPersistenceManager.

2007-08-23 Thread Stefan Guggisberg (JIRA)

[ 
https://issues.apache.org/jira/browse/JCR-940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12522184
 ] 

Stefan Guggisberg commented on JCR-940:
---

martijn, thanks for the patch. the patch looks very good in general, excellent 
job!

i quickly browsed through the patch and i got a few comments:

- some changes in BundleDbPersistenceManager seem to have gone lost
   in your patch (e.g. #566385 & #563900). 

- Oracle9PersistenceManager#storeBundle: the blob parameter is never set ;-)

- what was the reason for removing resetStatement(stmt) calls? 
  (see e.g. PostgreSQLPersistenceManager line 120)

- tabs should be avoided in the source code

cheers
stefan

> add db connection autoConnect for BundleDbPersistenceManager.
> -
>
> Key: JCR-940
> URL: https://issues.apache.org/jira/browse/JCR-940
> Project: Jackrabbit
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 1.3
>Reporter: Xiaohua Lu
> Attachments: JCR-940.patch
>
>
> Since bundled db pm doesn't inherited from database pm, it can't reconnect 
> once database is bounced. it would be nice to add this feature. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.