Re: upload bunch of files

2004-07-28 Thread James Mason
WebFolders works well in a windows environment, and Konqueror works wells on Linux. On MacOS you could try davfs. -James [EMAIL PROTECTED] 07/26/04 9:03 AM Could I have a good method so that I can upload bunch of files at the same time, such as 1000 files togther? thanks a lot. haipeng

Re: DeltaV and Slide

2004-07-28 Thread Jacob Lund
Slide supports what the DeltaV documentation refers to as Basic Versioning! /jacob - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 3:24 AM Subject: DeltaV and Slide Hi! I'm looking for information on how well Slide 2.0 is compliant

Does slide support load balancing ?

2004-07-28 Thread Daniel Varghese
Hello All, Does slide support load-balancing, If Yes how can i configure the same, Please tell me some documents where I can go thru the same. If Slide doesn't support this , Could any one point out any other Commercial WebDAV server support load balancing. rgds

Need help for Domain.xml

2004-07-28 Thread Mihir Solanki
Hi all, I would like to do following things. 1. I do not want to create history,workspace and workingresource directories. 2. Once authentication done I wanted to allow any user to access any resource or collection 3. I do not want any kind of role information as I am allowing

Re: Need help on slide custom store

2004-07-28 Thread Stefan Ltzkendorf
Hi, yes, the transient stores are recently added and will be available with slide 2.1. The TransientXXXStores store data in memory. Thats why they are called transient - the data is lost if the application restarts. You can add e.g. lock support to your store without implementing it. Losing locks

Re: 500- Internal server error

2004-07-28 Thread Oliver Zeigermann
Have a look at this for an explanation why deadlocks occur: http://www.mail-archive.com/[EMAIL PROTECTED]/msg11030.html Concerning performance. If you switched off internal security checking performance will be better. Same thing if you do not want versioning. Other than that, this is just the

Re: 500- Internal server error

2004-07-28 Thread r d
Hi Oliver, I could not access the link. Is it possible to paste it here? Also when you say turning of internal security, what do you mean exactly?Slide authentication? I am not clear. Thanks, rd Oliver Zeigermann [EMAIL PROTECTED] wrote: Have a look at this for an explanation why deadlocks

Re: 500- Internal server error

2004-07-28 Thread Oliver Zeigermann
r d wrote: Hi Oliver, I could not access the link. Is it possible to paste it here? What's the problem with the link? Also when you say turning of internal security, what do you mean exactly?Slide authentication? I am not clear. Not authentication, but automatic security checking. Can be done

Re: If-Modified-Since broken?

2004-07-28 Thread Stefan Lützkendorf
This problem is resolved in CVS head and will be available in next version. BTW: authentication is independent with the If-Mdified stuff the Date header contains the date of the response and has nothing to do with the Last-Modified date Regards, Stefan Jason Harrop wrote: Hi I'm testing Slide

MSPowerPointExtractor problem

2004-07-28 Thread Ralph Scheuer
Hello everybody, When I was searching for a Java class to extract text from PowerPoint files, I accidentally discovered Slide. I pulled the MSPowerPointExtractor class and some other stuff it depends on via CVS and tried it for some text extraction. The method I used looks very similar to the

Re: Need help for Domain.xml

2004-07-28 Thread James Mason
1. In slide.properties turn of versioning (this is in the slide-kernel jar file under org/apache/slide). I don't know if you can safely remove those paths from the Domain.xml, but they won't be used anymore. 2. In the Domain.xml there's a permissions tag that grants all to /roles/root. Change

RE: DeltaV and Slide

2004-07-28 Thread sapatnav
Thanks for the response. Any idea on what the plans are for full DeltaV support? Regards, Amol. -Original Message- From: Jacob Lund [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 12:21 AM To: Slide Users Mailing List Subject: Re: DeltaV and Slide Slide supports what the

Slide Client opening too many connections

2004-07-28 Thread neilac
Hi, I am seeing a few problems performing PUTs against Apache 1.3 in a production environment. This test code: WebdavResource r = new WebdavResource(http://server/dir/;); r.setUserInfo(username, password); r.putMethod(/dir/foo9.txt, hello); opens 3 connections. It does 2 PROPFINDS (one for

Slide with Apache (no Tomcat)

2004-07-28 Thread Karl Koster
Has anyone had success using the WebdavResource or WebdavFile object with just Apache? I have Apache 2.0.48 running with the following settings in the configuration file for DAV: DavLockDB C:/temp/dav/DavLock DavDepthInfinity On LoadModule dav_module modules/mod_dav.so LoadModule dav_fs_module

RE: NullPointerException when creating a new version of a resource

2004-07-28 Thread Andrey Shulinsky
Ah, forget it, I was just stupid. I've changed the wrong slide.properties file... Coding at midnight should be prohibited by law... Yours sincerely, Andrey. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Problems using Slide to upload files

2004-07-28 Thread neilac
Is Slide failing to release its connections when it finishes? This sounds like the same problem I have been seeing (see recent posting). The slide client opens a new connection for every operation and then leaves them all open on the client side, so they stay in CLOSE_WAIT. One workaround I have

Re: Adding Additional Stores to Domain.xml

2004-07-28 Thread James Mason
What you have should work fine. The only thing you're missing is the piece that tells the Store mounted at / that there's node at /account. Look at the data definition lower in Domain.xml and you'll see what I mean. You need to add a node for /account and any default subnodes/permissions you want

Re: If-Modified-Since broken?

2004-07-28 Thread Jason Harrop
thanks Stefan - your patch to AbstractWebdavMethod did the trick thanks. cheers, Jason Stefan_Lutzkendorf wrote: This problem is resolved in CVS head and will be available in next version. BTW: authentication is independent with the If-Mdified stuff the Date header contains the date of the