Hi, Can anyone confirm that Davenport, the jCIFS-based webdav gateway is current? In other words, if I update the jCIFS jar, will Davenport be current? Is it still 'supported' without any known errors or is it abandoned? Any current users? Any alternatives? :D Paul -- ir Paul te Bokkel Ingenieursbureau Te Bokkel e paul at tebokkel.com / i http://www.tebokkel.com
On Tue, 2009-11-03 at 10:34 +0200, Paul te Bokkel wrote:> Any alternatives? :D >We use smbwebclient.php (sourceforge project, http://sourceforge.net/projects/smbwebclient/ ), very simple and it works very well. For smbclient >= 3.2 we had to make a couple of small changes as the options for smbclient seemed to change (and they hadn't updated smbwebclient last time I checked) --- Within smbwebclient.php need to change (line 1445) $cmdline = $this->cfgSmbClient.' '.$smbcmd.' '.$options.' -N '; to $cmdline = $this->cfgSmbClient.' '.$smbcmd.' '.$options; as the -N option now does something different!! and (line 1451) $cmdline .= ($dumpFile) ? '2>/dev/null' : '2>&1'; to $cmdline .= ($dumpFile) ? ' 2>/dev/null' : ' 2>&1';