RE: problems using https

2007-01-31 Thread Ray Sprinkle
Authentication requires a challenge response to occur. The full payload is sent on the initial request, which is denied with a request for credentials. The followup request with credentials no longer has the payload because it was too large to buffer. I don't remember what the workaround is but

RE: Slide Search

2006-08-24 Thread Ray Sprinkle
Perhaps because the answers you are seeking are in the Wiki and the mail archives. -Original Message- From: ould sid'ahmed [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006 7:42 AM To: Slide Users Mailing List Subject: Re: Slide Search Hi, all people, I posed a question at

RE: is Slide an active project

2006-08-14 Thread Ray Sprinkle
would say that as a rule of thumb: Jackrabbit for new projects, Slide only if there is previous investment in it. What do you think? Jaime On 8/11/06, Ray Sprinkle [EMAIL PROTECTED] wrote: Yes and no. The project has definitely slowed considerably but there are a lot of installed users

RE: is Slide an active project

2006-08-11 Thread Ray Sprinkle
Yes and no. The project has definitely slowed considerably but there are a lot of installed users that are providing support and bug fixes (but no releases yet). Jackrabbit is relatively new and its WebDAV support is not as complete as Slide's. On the other hand Jackrabbit's API is standard

RE: How to restore Slide resources ?

2006-03-29 Thread Ray Sprinkle
That assumes someone is using an all TxtStore, all JDBCStore, all something. If you are using a heterogenous set of stores, synchronization of the different stores during a backup is a problem. We use an Oracle DB for all of our storage so we can do a database backup, but we're actually

RE: How to test is a folder exists ?

2006-03-23 Thread Ray Sprinkle
in that case. Can I set to 'do not load property' before calling setPath(), then set to 'load property' before calling exists() ? thanks lixin On 3/21/06, Ray Sprinkle [EMAIL PROTECTED] wrote: By default a WebdavResource loads a set of properties from the server when it is created or the path

RE: How to test is a folder exists ?

2006-03-23 Thread Ray Sprinkle
PROTECTED] Sent: Thursday, March 23, 2006 11:04 AM To: Slide Users Mailing List Subject: Re: How to test is a folder exists ? Ray Sprinkle wrote: When you create a WebdavResource there is a ctor with an action parameter, there is also a setDefaultAction() method. An action

RE: How to test is a folder exists ?

2006-03-21 Thread Ray Sprinkle
By default a WebdavResource loads a set of properties from the server when it is created or the path is changed. I believe you are having problems with this behaviour. You can tell WebdavResource not to do the default lookups, but you end up having other problems in that case. Many/most of the

RE: Permission question

2006-01-18 Thread Ray Sprinkle
You cannot nest groups/roles. -Original Message- From: Laurent Michenaud [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 18, 2006 12:45 PM To: Slide Users Mailing List Subject: Permission question Hi, Here the following example : I've got a user : Toto. I've got a role :

RE: Unresolved problem with users and passwords

2005-12-07 Thread Ray Sprinkle
be a role or a user, that is the path to a role or user, for example: /slide/roles/myrole -- principal for a role /slide/users/myuser -- principal for a user Correct me if Im wrong Thanks for the help 2005/12/6, Ray Sprinkle [EMAIL PROTECTED]: If you know how to assign object permissions

RE: Unresolved problem with users and passwords

2005-12-07 Thread Ray Sprinkle
string is not neccesary, also what I'm not is if the resource.aclMethod(pathFile,aces) overwrites the existing aces on the resource or it just adds them to original aces. I think it adds them. Thanks for the help to all Regards 2005/12/7, Ray Sprinkle [EMAIL PROTECTED]: That is correct. Things

RE: Direct Link to a resource

2005-12-06 Thread Ray Sprinkle
There is an undocumented activex control shipped with Office 2003 that can be used to open a document directly into office from a web page link to a webdav resource. It locks the document in the process. This is the control that SharePoint uses. -Original Message- From: Miguel

RE: Unresolved problem with users and passwords

2005-12-06 Thread Ray Sprinkle
If you know how to assign object permissions to a user it works the same way. Use the role path where ever you would you the user path. To put add a user to a role you have to manipulate the group-member-set (I think) property of the role. I know there is a Wiki example. -Original

RE: Lucene prop search and ACLs

2005-12-05 Thread Ray Sprinkle
. -Original Message- From: Fabrice Dewasmes [mailto:[EMAIL PROTECTED] Sent: Monday, December 05, 2005 11:59 AM To: Slide Users Mailing List Subject: Re: Lucene prop search and ACLs Ray Sprinkle wrote: You may have noticed that Slide updates and releases have been slow lately. Many patches

RE: problem with WebDavResource.listWebdavResources() ...

2005-12-01 Thread Ray Sprinkle
There is a bug in (I think) the HttpClient implementation used from commons. When a port number is used in the url it mangles it. If you trace in you will see that the url associated with the credentials has been mangled to IP80:80/exchange/test/contacts. Unfortunately Slide is not compatible

RE: Security Not Enabled??

2005-11-30 Thread Ray Sprinkle
You have to have read permissions on every part of the path in slide in order to access something. So in order to access /files/test.doc, you need to be able to read /, files and test.doc. Missing read permissions on anyone of these segments causes a HTTP not found error. -Original

RE: understanding ACL / 403 forbidden though ACL grants all

2005-11-15 Thread Ray Sprinkle
Do you have read permissions for all of the parent objects in the path? This is a requirement for Slide's current ACL implementation. -Original Message- From: Thomas Wenk [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 8:00 AM To: 'Slide Users Mailing List' Subject:

RE: transaction trouble?

2005-11-10 Thread Ray Sprinkle
I have no experience with the WCK but in Slide there is no domain.xml configuration required. There is an isolation setting in there somewhere. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 6:00 PM To:

RE: turn of version control

2005-11-10 Thread Ray Sprinkle
What do you mean nothing happened? You have to either enable automatic version control in domain.xml OR place each file under version control individually. Once you do this there is a property on the file pointing to /history/xx/x.x containing the most recent file version and a linking property

RE: JDBCStore: SQLServer / Oracle

2005-10-31 Thread Ray Sprinkle
Subject: RE: JDBCStore: SQLServer / Oracle Ray, Do you use a table qualifier or public synonyms to reference the tables? If you use a table qualifier how do you set it in the Slide configuration? Thanks, Steve -Original Message- From: Ray Sprinkle [mailto:[EMAIL PROTECTED] Sent

RE: How to prevent created collection from inheriting acl propert ies.

2005-10-28 Thread Ray Sprinkle
[mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 3:58 PM To: Slide Users Mailing List Subject: RE: How to prevent created collection from inheriting acl propert ies. thanks Ray, so checking out a version from cvs should work all right? Regards. -Mensaje original- De: Ray Sprinkle

RE: JDBCStore: SQLServer / Oracle

2005-10-28 Thread Ray Sprinkle
We use the OracleStore. There are some issues with it that need to be worked around. Uses varchar2() for properties and setString() for property values which limits you to 4000 bytes per property. This indirectly limits the number of users you can have in the system because each member of a

RE: How to prevent created collection from inheriting acl propert ies.

2005-10-27 Thread Ray Sprinkle
In the Ace use setHeritable(). -Original Message- From: Crespillo, Matias [mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 11:21 AM To: Slide Users Mailing List Subject: RE: How to prevent created collection from inheriting acl propert ies. Thanks for the reply but through

RE: How to prevent created collection from inheriting acl propert ies.

2005-10-27 Thread Ray Sprinkle
Correction, in the Ace, use setInheritable(). -Original Message- From: Crespillo, Matias [mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 11:21 AM To: Slide Users Mailing List Subject: RE: How to prevent created collection from inheriting acl propert ies. Thanks for the reply

RE: How to prevent created collection from inheriting acl propert ies.

2005-10-27 Thread Ray Sprinkle
collection from inheriting acl propert ies. I dont think the clas ACE has a setInheritable() method, regards. -Mensaje original- De: Ray Sprinkle [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 27 de Octubre de 2005 16:04 Para: Slide Users Mailing List Asunto: RE: How to prevent created

RE: ORACLE CONNECTION

2005-10-20 Thread Ray Sprinkle
We use the Oracle connection internally with good results, but you need to be aware of the following limitation: A property value cannot exceed 4000 bytes. There are 2 sources for this limit: 1. Property values are implemented as varchar2 columns. Converting these to blobs does work well.

RE: Can Webdav client figure out who checked out a resource?

2005-10-20 Thread Ray Sprinkle
In some circumstances, it is possible to tell who has the resource checked out. When the resource is checked out a new live-property is created called checked-out. This property has a path in history as its value. You can examine the properties of the history object to discover who has the

RE: One transaction on several resources

2005-10-18 Thread Ray Sprinkle
) { // This will rollback the changes to all of the resources affected by the res object. res.abortTransaction(); } Hope this helps, Anthony. -Original Message- From: Ray Sprinkle [SMTP:[EMAIL PROTECTED] Sent: Monday, 17 October 2005 22:46 To: Slide Users Mailing List Subject

RE: Listing collection resources using the webdav client libraries

2005-10-17 Thread Ray Sprinkle
Use one of the long forms of WebdavResource() that lets you specify a depth limit or use a search query (see the Wiki). -Original Message- From: Rob Tanner [mailto:[EMAIL PROTECTED] Sent: Friday, October 14, 2005 5:18 PM To: slide-user@jakarta.apache.org Subject: Listing collection

RE: Ver 2.1 problem with Unlock

2005-09-07 Thread Ray Sprinkle
This may or may not be your problem, but in order to perform many operations with locks you must first read the current lock information. There is a requirement in Webdav that all relevant lock tokens be listed in the request header or the operation fails. Using a new WebdavResource, or using a

RE: Problem with SimpleFileStore

2005-09-01 Thread Ray Sprinkle
Has anyone checked to see if this is a problem in head and if it is, submitted a patch? -Original Message- From: Michael Perkonigg [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 31, 2005 12:48 PM To: Slide Users Mailing List Subject: Re: Problem with SimpleFileStore Michael

RE: checkout (or download) a specific version

2005-08-23 Thread Ray Sprinkle
A faster was is to issue a report query on the parent object. Using the reportMethod() with the following XML as the query will return all of the revision history for selected document. You have to parse it and it is unordered unless you sort it yourself using the predessor-set/successor-set

RE: modifying default versioning uri creation

2005-08-23 Thread Ray Sprinkle
Without talking about whether it is possible (I don't know), the problem you run into with this scheme is deletes followed by adds. A delete of the mydir object does NOT remove the version history. When you create a 2nd directory called mydir after deleting the first it is unique and distinct

RE: Slide document's LastModifiedDate

2005-07-29 Thread Ray Sprinkle
datetime of any Slide object. This is required for my own object cache to invalidate. TIA, Rakesh Ray Sprinkle wrote: The Webdav spec recommends using the getetag property for this. This tag changes whenever the object is modified. I am not sure what happens to getetag when the content

RE: How to get a list of files with their properties

2005-07-29 Thread Ray Sprinkle
Do a propfind on the parent collection (directory) with a Vector of the properties you want and a Depth of 1. This will return the information you want for everything in the collection. -Original Message- From: Marco Avila [mailto:[EMAIL PROTECTED] Sent: Friday, July 29, 2005 7:29 AM

RE: Slide document's LastModifiedDate

2005-07-25 Thread Ray Sprinkle
The Webdav spec recommends using the getetag property for this. This tag changes whenever the object is modified. I am not sure what happens to getetag when the content of a collection is modified. -Original Message- From: Rakesh Saha [mailto:[EMAIL PROTECTED] Sent: Monday, July 25,

RE: is the password readable?

2005-07-05 Thread Ray Sprinkle
Password is not in the DAV namespace. It is in (I think) the http://slide.apache.org; namespace. -Original Message- From: Michael Perkonigg [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 05, 2005 5:29 AM To: Slide Users Mailing List Subject: is the password readable? Hello, is the

RE: Re: startTransaction on a resource in need of escaping

2005-06-30 Thread Ray Sprinkle
I supplied a patch in bugzilla about a month ago. You have to patch the complete/abort methods too. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Niklas Gustavsson Sent: Thursday, June 30, 2005 12:41 PM To: slide-user@jakarta.apache.org Subject: Re:

RE: Re: startTransaction on a resource in need of escaping

2005-06-30 Thread Ray Sprinkle
- From: Ray Sprinkle [mailto:[EMAIL PROTECTED] Sent: Thursday, June 30, 2005 12:40 PM To: Slide Users Mailing List Subject: RE: Re: startTransaction on a resource in need of escaping I supplied a patch in bugzilla about a month ago. You have to patch the complete/abort methods too

RE: Re: startTransaction on a resource in need of escaping

2005-06-30 Thread Ray Sprinkle
on a resource in need of escaping Thanks! Will this be incorprated into CVS HEAD anytime soon? Also, is there a scheduled release that would include this patch? /niklas Ray Sprinkle wrote: Bug # 34910. -Original Message- From: Warwick Burrows [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: Slide User Base Oracle Support

2005-06-28 Thread Ray Sprinkle
I am successfully running Oracle with Slide 2.1 (patched) in a production environment now. It works fine but there are still a few problems (limitations) with the latest Oracle support in Slide: 1. Properties cannot exceed the maxium length of a varchar2 2. Properties cannot exceed 4000 bytes.

RE: IsCollection method in WebdavResource does not work

2005-06-23 Thread Ray Sprinkle
Many/Most of the helper methods in WebdavResource look at state variables that are not populated unless you get the BASIC or DEFAULT properties during creation. This means that a WebdavResource created with the NOACTION parameter does not fill populate any of these fields rendering a great many

RE: Binding store rename accents

2005-05-19 Thread Ray Sprinkle
This is the same as bug 34910. startTransaction() fails to encode the path befor calling the lock method. -Original Message- From: Laurent Michenaud [mailto:[EMAIL PROTECTED] Sent: Thursday, May 19, 2005 4:10 AM To: Slide Users Mailing List Subject: RE: Binding store rename accents