RE: what is J2EE store??

2004-04-09 Thread Ritu Kedia
J2EE store is any store that supports JCA. Slide's J2EEStore is for any RDBMS. You can deploy a database driver in the App server and access it via Slide's J2EEStore. Refer the App Server's manual for deploying DataStores. For JBoss (when accessing from servlet side code): 1. The sample files

Locking a resource and act on it in a different (WebDAV) session

2004-04-09 Thread Rolf Kulemann
Is it normal behaviour, that I can not i.e. update a locked resource as the same user, which locked the resource, if I try to update the resource in a different session in which the lock was created? To reproduce it (Using a webdav client): - login as user A - session x - lock files/norace.xml -

Re: Error when use slide-webdavclient-2.0rc1 connect to MS Exchange server through HTTPS

2004-04-09 Thread Victor Truong
Hi Ingo, Thanks for your reply. I already re-compile our code but we face with the same problem. I already get recompile jakarta-slide-webdavclient-bin-2.0rc1 and change a little bit our code org.apache.commons.httpclient.HttpsURL url = new

Re: Locking a resource and act on it in a different (WebDAV) session

2004-04-09 Thread Andreas Probst
Hi Rolf, to act on a locked resource it is necessary to give the lock token in the request. If I remember correctly, the spec recommends a client to send the lock token only if this client issued the lock. This way no client can steal the lock of another client of the same user. If you want