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 co

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 Dani

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 Dani

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 n

Re: Need help on slide custom store

2004-07-28 Thread Stefan Lützkendorf
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 o

Re: Very large file problem for JDBC storage

2004-07-28 Thread Oliver Zeigermann
The size of content is restricted by the underlying persistent store, e.g. Oracle. Oliver KeyEvent wrote: > Hi > > I am using 2.1 M1 and oracle storage for upload file. The problem is that oracle has > a 4GB limitation for LOB maxsize, what will happen if a file more than that is > uploaded?

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 wa

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 in

Help -Need some sample for using slide api directly!

2004-07-28 Thread r d
Hi, I am looking for some documents/sample code for using direct slide api ( not webdav client). Can anybody help? rd. - Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish.

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 2.

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 p

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 Delta

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

Adding Additional Stores to Domain.xml

2004-07-28 Thread Ray Hunter
I have searched the archives and have not found a solid example of how to have multiple stores (separate stores) defined in the Domain.xml file. Here is what I am trying to do. I want to create a duplicate "tx" store that is called "accounting". So I added this store/metadata work/metadata

Re: Problems using Slide to upload files

2004-07-28 Thread Matthew Beermann
I used Ethereal to capture the client/server conversation; is that what you were getting at? I've attached the logs to this message. With the disclaimer that I'm way out of my depth on this, a few observations: 1) I'm not sure why the HTTP/1.1 100 Continue is unexpected, but that message is coming

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, e

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 hav

FW: Slide with Apache (no Tomcat)

2004-07-28 Thread Karl Koster
Just as a follow-up. I downloaded cadaver for cygwin and am connecting to Apache without difficulty. > 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: > > Dav

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

Re: FW: Slide with Apache (no Tomcat)

2004-07-28 Thread James Mason
Can you try using the Slide command line client to connect? It uses WebdavResource internally, so if it works then all should be good. -James >>> [EMAIL PROTECTED] 7/28/2004 1:43:35 PM >>> Just as a follow-up. I downloaded cadaver for cygwin and am connecting to Apache without difficulty. > Has

Re: If-Modified-Since broken?

2004-07-28 Thread Jason Harrop
thanks Stefan - your patch to AbstractWebdavMethod did the trick thanks. cheers, Jason Stefan_Lu"tzkendorf 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 res

RE: Need help for Domain.xml

2004-07-28 Thread Mihir Solanki
Thanks james I have tried with the action = "all" and its working as of now :-) Plus I have removed all the roles and users (except root user) and seems working fine Regards, Mihir -Original Message- From: James Mason [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 9:25 PM To