Re: WebdavResource deleteMethod for non-empty Collections

2004-09-18 Thread Simone Gianni
namespace:name when a PROPPATCH failed or a PROPFIND receives 404 but this is just the first idea, but there must be a false return and a way, easier than fully examining the response, to know what gone wrong. Ciao, Simone Gianni Ingo Brunberg wrote: This is the same problem as with a PROPPATCH

Re: location of contentstore in tomcat/conf

2004-09-18 Thread Simone Gianni
experience, i always used absolute path to solve this problem. IMMO, slide should use the servlet engine to determine how to resolve relative paths within its web application. Ciao, Simone Gianni Stefan Burkard wrote: hi sliders my contentstore-path is defined as [mandator]/store/content, whereas

Re: [newbie] Problem running Jakarta Slide

2004-09-16 Thread Simone Gianni
Hi Nicolas, try running catalina.bat run instead of startup.bat This will run catalina in the local cmd window, and not in another one, so you can look at the output and read the exception. Hope that helps, Ciao, Simone Gianni Nicolas Laurent wrote: Hi all, I'm newbie in Jakarta, Slide

Re: Good Slide GUI clients?

2004-09-12 Thread Simone Gianni
WebDavPilot for Eclipse. It's very good for many ways, but not yet support versioning ... it's planned in future version. http://www.s-und-n.de/sunshine/ccos/de/produkte/webdavpilot The page is in german, but the plugin is in English. Ciao, Simone Gianni [EMAIL PROTECTED] wrote: I'm looking

Re: How to put a file on a webdav server that requires a password?

2004-09-09 Thread Simone Gianni
This should work : String strURL = http://somw.where.com/slide/file/etc/;; String user = simone; String pass = don't tell anyone; HttpURL inURL = new HttpURL(strURL); hu.setUserinfo(user, pass); WebdavResource webdavResource = new WebdavResource(inURL); .. Ciao, Simone Gianni Matt Reason

Re: Uploading the File

2004-08-19 Thread Simone Gianni
write on /files/incomingfolder to /roles/user While, to grant write access to the guest user : grant write on /files/incomingfolder to /users/guest Hope this helps, Ciao, Simone Gianni Dharmesh Rana wrote: I have deployed slide.war on WebLogic Server 8.1. Running client command for Uploading

Re: propput

2004-08-13 Thread Simone Gianni
Hi Michele, yes, you can create all the properties you need, they're not a fixed set. To avoid name clashes webdav uses namespaces, so you should create your properties in your namespace. Namespaces are explained in XML NAMESPACE specifications. Hope this helps, Ciao, Simone Gianni Michele

Re: Can I do this with Slide?

2004-07-06 Thread Simone Gianni
with jakarta slide? Basically, everything you said. Hope this helps, ciao, Simone Gianni - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: what is live properties??

2004-06-21 Thread Simone Gianni
Hi, you can find all infos you need in just one chapter of the specifications : http://asg.web.cmu.edu/rfc/rfc2518.html#sec-4.1 Ciao, Simone Gianni P.S. Next time please answer on the mailing list, since this infos could be useful to others as well. Slide Tao wrote: thx for your reply

Re: what is live properties??

2004-06-18 Thread Simone Gianni
Live property is a property which is generated automatically by the server, like getcontentlength that contains the length in bytes of a file stored on the server. This properties cannot be modified by the client, since are dinamically generated, thus the name live. Ciao, Simone Gianni Slide

Re: Helpful technique for debugging

2004-06-17 Thread Simone Gianni
a good free tool, easy to use and available here on apache. This tool or a similar one IS A MUST if you are developing for webdav!! Hope this helps, Ciao, Simone Gianni James Mason wrote: *Somewhere* on the Slide site there used to be a tip on using Axis's tcpmon for doing that. You're right, it's

Re: Proppatch query

2004-06-11 Thread Simone Gianni
www.simons.com noone else can own it, and i'm sure i will not have problems with other softwares using the same namespace. For more informations, search about the XML namespace concept. Hope this helps, Ciao, Simone Gianni Luanne Coutinho wrote: Hello, I would like to define my own properties

Re: URL Parsing Problem

2004-06-11 Thread Simone Gianni
it escaped again, and this time maybe it's a bug. Could you please double check that you are inputting a single % in your url? Simone Gianni Koundinya (Sudhakar Chavali) wrote: Hi Julian, I did similary the way you have explained but instead of taking the same information, it has built the new url

Re: Slide Security Documentation Problem.

2004-06-10 Thread Simone Gianni
The webapp archive, has authentication DISABLED by default. The tomcat bundle has authentication ENABLED by default. This is stated somewhere on the web site, but effectively this could lead to misinterpretation. Simone Michael Furgang wrote: Hello The slide security documentation states: By

Re: How to creat a new user in Slide

2004-06-02 Thread Simone Gianni
logging in. Ciao, Simone Gianni Lea wrote: Maybe I should to modify somewhere in Domain.xml for realm... How do you think? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to creat a new user in Slide

2004-06-01 Thread Simone Gianni
/slide/; namespace. Ciao, Simone Gianni - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: webdav security

2004-05-29 Thread Simone Gianni
post it? Thanks, ciao, Simone Gianni - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: how can i create new user in slide

2004-05-24 Thread Simone Gianni
is created you can login with that user. Hope this helps, Ciao, Simone Gianni At 06.33 24/05/2004, you wrote: Hi, As you said I have to configure Slide Realm in tomcat, can you please guide me how can I configure and enable it for authentication purpose... I am using tomcat 4.1.x that is coming

Re: slide concurrency question???

2004-05-24 Thread Simone Gianni
and code again all this stuff? Ciao, Simone Gianni At 09.12 24/05/2004, you wrote: hi, The slide authentication strategy need client pass the username and password directly to server for very process. I want to write a program to manager the authentication outside the slide. My idea is that I manage

Re: PropPatchMethod and property data types

2004-05-24 Thread Simone Gianni
in a property. Ciao, Simone Gianni At 15.53 24/05/2004, you wrote: Looks like PropPatchMethod is not supporting setting datatypes on the properties to be set, thus limiting me to setting String type properties only. Since my project absolutely requires support for other data types on the client

Re: How to get group-member-set property?

2004-05-23 Thread Simone Gianni
the XML parts correctly indented (well, this works sometimes ... :D) Using tcpmon maybe you'll be able to understand what's goin on with your Slide. Ciao, Simone Gianni At 23.51 22/05/2004, you wrote: Hi Simone, Thank you for your codes. I will try it. Do you happen to know why the group-member-set

Re: how can i create new user in slide

2004-05-21 Thread Simone Gianni
At 13.03 21/05/2004, you wrote: Hi, I am very new to slide… I have seen in the “users” directory that there are few users like root, john, john2 are created Now I wanted to create my own user, so could anyone please guide me how can I do that using slide Command line tool. very simple : cd users

Re: how can i create new user in slide

2004-05-21 Thread Simone Gianni
use another authentication method. In this case it think that to make ACLs useful you will need a collection under /users/ anyway, because ACL specifications require a principal URL anyway. Ciao, Simone Gianni At 16.20 21/05/2004, you wrote: I remember reading somewhere that this is specific

Re: How to get group-member-set property?

2004-05-21 Thread Simone Gianni
log on must have the right permission to issue a proppatch. Currently i'm using root just to make sure it works. Let us know. Ciao, Simone Gianni At 04.25 22/05/2004, you wrote: Hi, I am trying to add a new user to roles/user group-member-set. According to the documentation

RE: Deploy Slide WinXP Tomcat5

2004-05-15 Thread Simone Gianni
, and running on older or non standard Java Virtual Machines. Simone Gianni - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Complete newbie

2004-04-23 Thread Simone Gianni
Hi Amr, actually 1.0.x is two years old, and even if it's the last stable release it is really a small subset of the 2.0 functionality and performance. Anyway, the command line client is present also in the 1.0.x and is even easier to read since it's by far less complicated (since has less

Re: Propput: invalid command

2004-04-22 Thread Simone Gianni
, but is the real name of the dav method) is correctly handled. Hope it helps! Ciao, Simone Gianni - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Complete newbie

2004-04-22 Thread Simone Gianni
which are based on WebdavFile. Obviously this methods are just a path to follow implementing your own for your own needs. Anyway, WebdavFile is as easy to use as the common java.io.File class, and is fully compatible with it. Hope it helps! Ciao, Simone Gianni At 23.38 22/04/2004, you wrote: Hi