Hi Ashok,

> 2. Cacheing Problem?

> We are still investigating these issues with a view to providing a
> patch, but would be interested in knowing
> if any others have hit similar issues.

I'm trying this test:
- create a collection myCollection
- put 4 files a.xml, b.xml, c.xml and d.xml in this collection
- lock b.xml
- a different user try to delete myCollection and obtain this response:
  <d:response><d:href>/lts/1/b.xml</d:href><d:status>HTTP/1.1 423 
Locked</d:status></d:response>
- a propfind on myCollection give one file: b.xml
- if I restart the server, a propfind on myCollection give four files: 
a.xml, b.xml, c.xml and d.xml !!!

Log (after the lock):
XAFileContentStore remove a.xml         ok
JDBCDescriptorsStore remove a.xml       ok
XAFileContentStore remove c.xml         ok
JDBCDescriptorsStore remove c.xml       ok
XAFileContentStore remove d.xml         ok
JDBCDescriptorsStore remove d.xml       ok
XAFileContentStore remove myCollection (there is one locked file in 
myCollection)           nok
JDBCDescriptorsStore remove myCollection (there is one locked file in 
myCollection)   nok
SlideTransactionManager rollback
JDBCDescriptorsStore rollback   -> a.xml, c.xml, d.xml
XAFileContentStore rollback     -> a.xml, c.xml, d.xml

> Remy Maucherat says:
> I'm quite sure I have fixed this since 1.0.16. I'll have to check,
> and verify the patches have been ported.

> Didier Berguerand says:
> Yes I saw that in the StandardStore class but
> delist(Service service, boolean success)
> is always called with success=true even in
> case of a rollback. In the log, the rollback appears
> after all delist calls.



In the StandardStore class, the delist method:

protected void delist(Service service, boolean success)
        throws ServiceAccessException {
    if (!success) {
        // If there's a failure which will cause the transaction to be
        // rollbacked, flush the caches
        resetCaches();
    }
    super.delist(service, success);
}

Regards,

Didier
Try to delete a directory named "1" --> DELETE 1
Inside this directory it is 3 contents a.xml, b.xml and c.xml
b.xml is locked. 

11 Mar 2002 14:05:51 - org.apache.slide.transaction.SlideTransactionManager - DEBUG - 
Begin Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMNOFLAGS in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.file.XAFileContentStore@56f122 with flag TMNOFLAGS in 
Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]

Start a transaction in the XAFileContentStore and
try to delete a.xml
11 Mar 2002 14:05:52 - slidestore.file.XAFileContentStore - INFO - ===> start - xid : 
HttpProcessor[8189][4]-1015855551904-7-2
11 Mar 2002 14:05:52 - slidestore.file.XAFileContentStore - INFO - ===> mkdirs for 
start - ./../../temppath/HttpProcessor[8189][4]-1015855551904-7-2
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.file.XAFileContentStore@56f122 in active transaction
11 Mar 2002 14:05:52 - slidestore.file.XAFileContentStore - INFO - ===> 
removeRevisionContent - uri = /lts/1/a.xml
11 Mar 2002 14:05:52 - slidestore.file.XAFileContentStore - INFO - ===> 
removeRevisionContent - renameTo ./../../contentstore/lts/1/a.xml to 
./../../temppath/HttpProcessor[8189][4]-1015855551904-7-2/lts/1/a.xml result : true
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.file.XAFileContentStore@56f122 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.file.XAFileContentStore@56f122 with flag TMSUSPEND in 
Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.file.XAFileContentStore@56f122 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMNOFLAGS in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 in active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 from active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - :05:52 - 
org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist resource manager 
slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME in Transaction 7 
xid HttpProcessor[8189][4]-1015855551904-7- in thread HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMRESUME in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 in active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - ansaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 from active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMRESUME in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 in active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 from active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMRESUME in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 in active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 from active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMRESUME in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 in active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 from active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.file.XAFileContentStore@56f122 with flag TMRESUME in 
Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]

Start a transaction in the XAFileContentStore and
try to delete the collection 1
11 Mar 2002 14:05:52 - slidestore.file.XAFileContentStore - INFO - ===> start - xid : 
HttpProcessor[8189][4]-1015855551904-7-2
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.file.XAFileContentStore@56f122 in active transaction
11 Mar 2002 14:05:52 - slidestore.file.XAFileContentStore - INFO - ===> 
removeRevisionContent - uri = /lts/1
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.file.XAFileContentStore@56f122 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.file.XAFileContentStore@56f122 with flag TMSUSPEND in 
Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.file.XAFileContentStore@56f122 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMRESUME in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 in active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 from active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag TMRESUME 
in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 in active transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
slidestore.reference.MemoryDescriptorsStore@4c1103 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager slidestore.reference.MemoryDescriptorsStore@4c1103 with flag 
TMSUSPEND in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Delist service 
slidestore.reference.MemoryDescriptorsStore@4c1103 from active transaction
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Enlist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMRESUME in Transaction 7 xid HttpProcessor[8189][4]-1015855551904-7- in thread 
HttpProcessor[8189][4]
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - DEBUG - Enlist service 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 in active 
transaction
11 Mar 2002 14:05:52 - org.apache.slide.store.StandardStore - INFO - Delist 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 success = true
11 Mar 2002 14:05:52 - org.apache.slide.transaction.SlideTransaction - DEBUG - Delist 
resource manager 
imtf.ch.atlas.attic.slidestore.informix.InformixDescriptorsStore@6845c2 with flag 
TMSUSPEND in Transaction 7 xid  - DELETE = -1 null (time: 938 ms) URI = /lts/1

!!!All delist are called with success = true
--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to