Date: 2004-11-04T15:50:20 Editor: BrianLee <[EMAIL PROTECTED]> Wiki: Jakarta-Slide Wiki Page: WebDavConstructionKit URL: http://wiki.apache.org/jakarta-slide/WebDavConstructionKit
no comment Change Log: ------------------------------------------------------------------------------ @@ -101,7 +101,7 @@ ===== Call Back Methods List ===== -The following functions are basically all Slide and WCK need to make basic WebDAV operations work. +The following functions are basically all Slide and WCK need to make basic WebDAV operations work (you need to implement them). '''1.begin, commit, rollback:''' begins, commits, aborts a request / transaction @@ -131,6 +131,18 @@ [http://jakarta.apache.org/slide/wck/javadoc/org/apache/slide/simple/authentication/AbstractPoolingConnectionManager.html org.apache.slide.simple.authentication.AbstractPoolingConnectionManager] is a connection pool framework. + +You need to implement the following functions. + + '''1.closePhysicalConnection:''' Closes a physical connection + + '''2.createPhysicalConnection:''' Creates a physical connection to your store + + '''3.invalidatePhysicalConnection:''' Makes a connection sleep (passive) + + '''4.isPhysicalConnectionValid:''' Checks if the connection can still be used to connect to the store + + '''5.wakeupPhysicalConnection:''' Activates a sleeping (passive) connection ===== WebdavFileStore Example ===== [http://jakarta.apache.org/slide/wck/javadoc/org/apache/slide/simple/reference/WebdavFileStore.html org.apache.slide.simple.reference.WebdavFileStore] is the reference implementation (example) that you want to look at. The source is listed below - --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
