Re: How do I get checkout to create copy in workspace?

2004-06-23 Thread Ingo Brunberg
I think that article is very outdated. Look at http://www.webdav.org/deltav/scenarios/scenarios-00-1.htm#_Toc475158795 section 3.2 - Original Message - From: Ingo Brunberg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 22, 2004 4:19 AM Subject: Re: How do I get

Re: Property Namespaces question

2004-06-23 Thread Ingo Brunberg
That's because it doesn't really matter which prefix you use. It's just XML. The important part is the namespace itself which is bound to the prefix by a xmlns declaration. Ingo Hi, Can someone do me the favour of answering this question. Why when I connect to a IIS WebDAV server when i

Re: How do I get checkout to create copy in workspace?

2004-06-23 Thread Ingo Brunberg
I don't think so. Why would you want to do that. You can use the UPDATE method to make the version controlled resource in the /files section reflect the content and dead properties of your version in the workspace. Ingo Will the reverse work? If I have a resource in my workspace, can I use

RE: Property Namespaces question

2004-06-23 Thread Paul Hussein
It matters when I want to somehow determine which is a custom property and which is not. In IIS the system ones are prefixed with a:, and in slide d:. Is there another way to determine what is a predefined system property, and a custom one? Cheers Paul. -Original Message- From:

Re: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread Luanne Coutinho
Hi Brad, I too started on Slide recently and had quite a few problems getting started. However, with the help of this mailing list, I managed to get by. I am creating a few basic how-to's(based on my experiments and input from the mailing list) which I'm adding to the Slide wiki- I've already

Re: Property Namespaces question

2004-06-23 Thread Julian Reschke
Paul Hussein wrote: It matters when I want to somehow determine which is a custom property and which is not. In IIS the system ones are prefixed with a:, and in slide d:. Is there another way to determine what is a predefined system property, and a custom one? As already stated, the prefixes are

Re: Authentication: fail to change password

2004-06-23 Thread Jean-Baptiste Lièvremont
Thanks for this help, and special thanks to Paul for the incoming FAQ - great job ! Regards JBL James Mason wrote: You need to add the user to a role as well. You do this by setting the DAV:group-member-set property on the role you want to user to have to a value that contains the user's uri.

RE: Property Namespaces question

2004-06-23 Thread Paul Hussein
Just automatic code to allow editing of custom properties and not system properties. Thanks for the input. Cheers Paul. -Original Message- From: Julian Reschke [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 10:58 AM To: Slide Users Mailing List Subject: Re: Property

Error in the HSQLDB schema

2004-06-23 Thread Jean-Baptiste Lièvremont
There is a missing parenthesis at the end of the first statement of the HSQLDB Schema ( from http://www.java-internals.com/code/slide/docs/howto-jdbcstore.html). The correct schema is: create table objects(uri varchar(65536) primary key, classname varchar(4096)); create table children(uri

Re: Property Namespaces question

2004-06-23 Thread Julian Reschke
Paul Hussein wrote: Just automatic code to allow editing of custom properties and not system properties. Thanks for the input. Well, there's no generic way to do that. As a matter of fact, a system property may be editable (such as DAV:displayname), while a custom property may be read-only; so

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread brad.simonin
Hi. What packages did you import (i.e. import java.io.*) in your Java source program in order for it to compile? Thank you in advance, --Brad Simonin. -Original Message- From: Luanne Coutinho [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 2:54 AM To: Slide Users

RE: Authentication

2004-06-23 Thread Julien MONTOYA
Short information for SLIDE beginners: If different Tomcat's instance are installed, it's important to have set the CATALINA_HOME environment variable to the directory you unpacked the distribution to. Regards. -Message d'origine- De : Julien MONTOYA [mailto:[EMAIL PROTECTED] Envoyé 

link to other document management system

2004-06-23 Thread Haipeng Du
Hi, Could I write code in slide so that I can read or write files from or to other document management, such as CVS? It that possible? If it is, how could I do that? Thanks a lot. Haipeng _ Get fast, reliable Internet access with

RE: link to other document management system

2004-06-23 Thread Michael Oliver
Yes! Abosolutely, you can use the custom stores to adapt to any external API, we have done it already with Livelink and SalesForce.com. You can look at the standard slide Tx* stores and what I did that helped me understand was to make my own version of the Tx* stores (i.e. FileContent and

RE: Slide

2004-06-23 Thread Michael Oliver
We came to the conclusion that the bundled version only gets slide up and running quickly, but because you must do your user and role management with the command line client and mkcol and proppatch, it is not practical for a production environment. For our production system we went with the

RE: link to other document management system

2004-06-23 Thread Fallin, Jonathan A.
Michael, The process you describe for writing additional content stores is exactly what I am struggling through right now. Would it be possible to make your custom store examples available to others or at least document some specific steps you followed to modify the Tx* stores? That information

RE: link to other document management system

2004-06-23 Thread Michael Oliver
Yes and no. I can't make the code available as it is not open source as it is part of our customer product development. However, I would be happy to include some examples of the techniques in the Wiki...;-) Michael Oliver CTO Matrix Intermedia Inc. 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115

Checking out help

2004-06-23 Thread Matt Ware
Hey guys, I'm trying to make a file system with Slide that will reserve resources on the server while you download or update them. However, I don't know how I can implement this with locks and I haven't been able to figure out how checking out/in works with collections. The only argument I can

RE: link to other document management system

2004-06-23 Thread James Mason
Michael, It would be awsome if you could do this. I think the Store interfact is one of Slide's greatest strengths, but the current implementations are just complicated enough to make figuring them out non-trivial. I think a simple walk-through or HOW-TO document would really help. -James

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread James Mason
Brad, One easy way to figure questions like out is to use a good IDE, such as Eclipse: http://eclipse.org/. If your set your project up with all of the .jar files that you'll need (just grab every .jar file you can find in the Slide package you downloaded) the IDE will tell you when you haven't

RE: link to other document management system

2004-06-23 Thread Michael Oliver
I started a page on the wiki at http://nagoya.apache.org/wiki/apachewiki.cgi?GetYourArmsAroundIt I hope others will contribute. Michael Oliver CTO Matrix Intermedia Inc. 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115 Phone:(702)643-7425 Fax:(520)844-1036 -Original Message- From: James

Re: Problems changing users and passwords in slide 2.0/tomcat 5.0.19bundle

2004-06-23 Thread James Mason
Frank, The settings in the Domain.xml file are only applied when a store is created, which is basically the first time you start Slide. To change the root user's password you either need to use the command line client (or another webdav client) or delete the store and metadata directories in

Re: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread James Mason
Luanne, Thanks a bundle for adding those. It's really nice to see the Wiki starting to fill up! -James [EMAIL PROTECTED] 6/23/2004 1:53:35 AM Hi Brad, I too started on Slide recently and had quite a few problems getting started. However, with the help of this mailing list, I managed to get

Slide Wiki

2004-06-23 Thread Michael Oliver
Is there a plan? http://nagoya.apache.org/wiki/apachewiki.cgi?MigrateFromThisWiki Michael Oliver CTO Matrix Intermedia Inc. 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115 Phone:(702)643-7425 Fax:(520)844-1036

Re: Slide Wiki

2004-06-23 Thread James Mason
I'm willing to help move pages if there's a migration. I'd rather do it sooner rather than later since there aren't very many pages right now. I'd also like to add that the MoinMoin wiki looks nicer and has more features :). -James [EMAIL PROTECTED] 6/23/2004 10:13:41 AM Is there a plan?

RE: Slide Wiki

2004-06-23 Thread Michael Oliver
No argument from me, we need to get one of the ASF committers to make the admin request to get the MoinMoin slide wiki created, but then I will pitch in too. Michael Oliver CTO Matrix Intermedia Inc. 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115 Phone:(702)643-7425 Fax:(520)844-1036 -Original

Problems using webdavclient with Sharepoint

2004-06-23 Thread ryan
I'm trying to use the slide command-line client with Windows Sharepoint Services. It connects to the server ok, and I can browse directories so long as they don't contain any spaces in the name. When I try to change directories to a directory that has a space in its name (using quotes), I get:

Re: Problems using webdavclient with Sharepoint

2004-06-23 Thread Julian Reschke
ryan wrote: I'm trying to use the slide command-line client with Windows Sharepoint Services. It connects to the server ok, and I can browse directories so long as they don't contain any spaces in the name. When I try to change directories to a directory that has a space in its name (using

RE: Problems using webdavclient with Sharepoint

2004-06-23 Thread ryan
Thanks for the quick response Julian. Do you by any chance know how Microsoft handles URI escaping of spaces? -Ryan -Original Message- From: Julian Reschke [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 2:20 PM To: Slide Users Mailing List Subject: Re: Problems using

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread brad.simonin
You mean like install ALL the jar files from the following directory: C:\Program Files\Apache Group\jakarta-slide-2.0-tomcat-5.0.19\common\lib Directory? I am trying to do it the old-fashion way with ant from the command line. Even if I did have the correct jar file what would I add to the

Re: Problems using webdavclient with Sharepoint

2004-06-23 Thread Julian Reschke
ryan wrote: Thanks for the quick response Julian. Do you by any chance know how Microsoft handles URI escaping of spaces? They don't. It's a very simple bug (not present in earlier Sharepoint versions, btw). Julian -- green/bytes GmbH -- http://www.greenbytes.de -- tel:+492512807760

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread James Mason
Well, common/lib has a bunch of jar files that are Tomcat specific (you don't need those). And anyway, if you're talking about a client program here you want the jar files from the client download (Tomcat is the server download). For a client you'll need the webdavlib jar and httpclient jar (you

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread brad.simonin
I can't thank you enough James. Thank you for pointing me in the right direction. Your help is greatly appreciated!!! --Brad. -Original Message- From: James Mason [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 2:30 PM To: [EMAIL PROTECTED] Subject: RE: Example Java Servlets

RE: Example Java Servlets for accessing data in Slide?

2004-06-23 Thread James Mason
Happy to help :). Good luck and happy hacking. -James [EMAIL PROTECTED] 6/23/2004 1:44:12 PM I can't thank you enough James. Thank you for pointing me in the right direction. Your help is greatly appreciated!!! --Brad. -Original Message- From: James Mason [mailto:[EMAIL PROTECTED]

about tomcat

2004-06-23 Thread Haipeng Du
Hi, I try to use tomcat that is combined in jboss to run slide. but i can not get it. if i use tomcat that is combined with slide, that will be fine. what kind of configuration i need to do? thanks. haipeng _ Make the most of your

Re: about tomcat

2004-06-23 Thread James Mason
Get the Slide 2.0 server download from http://jakarta.apache.org/site/binindex.cgi (don't get the Tomcat bundles). Follow the instructions at http://jakarta.apache.org/slide/installation.html for the binary distribution. Follow the instructions in the Enabling or disabling authentication section

CMS Portlets

2004-06-23 Thread Ian Wilson
Hi, I work in a university lab that needs to handle role based access to clinical data. We also have a number of (portal based) analysis tools that would need to exchange data with slide. So, a researcher would upload experimental data to a repository (through a CM/DM portal), and then interact