Re: character encoding - put method

2002-05-23 Thread Elodie Tasia
use. WebFolders uses platform-specific encoding, IE either utf-8 (default) or uses platform-specific encoding. Slide client API uses utf-8 as default. Best regards, Juergen -Original Message- From: Elodie Tasia [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 11.38 AM To: Slide

Re: character encoding - put method

2002-05-23 Thread Elodie Tasia
for the client is utf-8, the default for the server is platform encoding, this could explain your problems. Do you want to try to use org.apache.slide.urlEncoding=UTF-8 to set the server to utf-8. Best regards Juergen -Original Message- From: Elodie Tasia [mailto:[EMAIL PROTECTED]] Sent: Thursday

protecting resources with ACL method

2002-05-13 Thread Elodie Tasia
With Slide, how can I prevent some resources from being modified or deleted by ANY user ? I already noticed that the URI of users were like that : /users/someone. So, if I call the ACL method with a deny on write privilege for all users, does it work ? Please help ! And thanx in advance ;o)

differences between nightly builts

2002-05-02 Thread Elodie Tasia
Hi, Is that normal that, in the Slide's built from May, 1st , the proppatchmethod is different from April 28th's built ? I mean : the 'action' parameter disappeared ! Was this change forgotten, or was it a mistake to implement it ? thanx

deploying web application in Slide

2002-04-30 Thread Elodie Tasia
Hi, I tried, like in tomcat, to deploy a .WAR by putting it in the webapps directory and lauching Slide server. But it didn't work. Is that normal ? Must I set a context ? configuring something ? Thanx in advance

future of Tomcat

2002-04-30 Thread Elodie Tasia
Hi, I know that not all the webdav functionnalities are implemented in Tomcat 4 (e.g. ACL and PROPPATCH if I can remember). I would like to know what is the future of Tomcat in that domain : will the missing methods be implemented ? was is just a 'test', just to see what can WebDav do ? thanx

Tomcat with Slide as a webapp : a future ?

2002-04-30 Thread Elodie Tasia
Hi, Excuse me for asking so many questions ;o) (this is my third !) I had many weeks ago some problems to integrate Slide in TC as a web application. In fact, the problem was to using the Slide's realm : TC didn't want at all. Someone answered me that the problem was known of the developpers.

Re: Propfing with depth different from 0

2002-04-26 Thread Elodie Tasia
fixed the javadoc messages of propfindMethod for you. It would be helpful to you. Thanks, Sung-Gu - Original Message - From: Elodie Tasia [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 10:28 PM Subject: Re: Propfing with depth

Removing properties (bis)

2002-04-26 Thread Elodie Tasia
an idea ? Thanx in advance... - Original Message - From: Elodie Tasia [EMAIL PROTECTED] To: Slide Group [EMAIL PROTECTED] Sent: Monday, April 22, 2002 9:39 AM Subject: Removing properties Hi, I noticed that the Slide client APUI's propatchMethod only add or update properties, and can't

Re: lockMethod() unlockMethod() w/diff instances fails

2002-04-25 Thread Elodie Tasia
I had the same problem last week. The only solution is to use the LockMethod and UnlockMethod classes directly. You get the locktoken in this way (you need it to unlock) : HttpClient client = new HttpClient(); HttpURL hu = this.davRes.getHttpURL(); client = davRes.getSessionInstance(hu);

Using ACL

2002-04-25 Thread Elodie Tasia
Hi, I used the aclMethod on a resource to prevent it from being written : resource.setAcl(principal, deny, privilege) with : principal = all; privilege = write; deny = true. When I get the properties on the resource, I can see such an acl property : acl : denied to all (not protected)

Using ACL (erratum)

2002-04-25 Thread Elodie Tasia
= ; aces[0] = new Ace(principal, deny, protectedAce, inherited, inheritedFrom); priv = new Privilege(DAV:, privilege, ); aces[0].addPrivilege(priv); return resource.aclMethod(path, aces); Sorry... - Original Message - From: Elodie Tasia [EMAIL PROTECTED] To: Slide

Re: Propfing with depth different from 0

2002-04-25 Thread Elodie Tasia
with depth different from 0 The depth 1 means including subcollection (subdirectory?) Of course, it includes files in the subdirectory. You should check it's a just a resource or collection. Sung-Gu - Original Message - From: Elodie Tasia [EMAIL PROTECTED] To: Slide Group [EMAIL

Re: Problem with PUT and DELETE

2002-04-25 Thread Elodie Tasia
I noticed that, when I try to PUT on a server some data from an inexisting file, the server creates the asked resource, but empty. (For example : I call putMethod(destination, file) with destination = /files/onefile.htm but file path is false.) Why did you do that? --a Before using

Propfing with depth different from 0

2002-04-24 Thread Elodie Tasia
Hi, I tried to use the propfindMethod defined in WebdavResource with depth = 1. What I don't understand is that, when I invoke this method on a collection, the displayname returned, not only for the collection, but for its ressources too, is the name of the collection itself ! Why ? Thanx

Problem with PUT and DELETE

2002-04-24 Thread Elodie Tasia
Hi, I'm using Slide server 1.0.16 with the client library. I noticed that, when I try to PUT on a server some data from an inexisting file, the server creates the asked resource, but empty. (For example : I call putMethod(destination, file) with destination = /files/onefile.htm but file path

Removing properties

2002-04-22 Thread Elodie Tasia
Hi, I noticed that the Slide client APUI's propatchMethod only add or update properties, and can't remove them, although the PROPATCH does. So I use the PropPatchMethod class, with the addPropertyToRemove method. The problem is that, although I can add new properies and change them, the server

Re: UNLOCK big problem

2002-04-22 Thread Elodie Tasia
trying to unlock won't be found, and so no UNLOCK request will be issued to the server. -Tim -Original Message- From: Elodie Tasia [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 8:28 PM To: Slide Group Subject: UNLOCK big problem Hi, I'm afraid

UNLOCK big problem

2002-04-19 Thread Elodie Tasia
Hi, I'm afraid by something grave in the Slide client API : imagine you lock a resource for a long time or even infinite time. You get the resource and work it. It can take just a few minutes, or many hours... but you need anyway that the resource is locked because you're modifying it. And

Retrieving lock owners

2002-04-16 Thread Elodie Tasia
Hi, I want to retrieve the owner of a lock set on a particular resource. So I call the method : WebdavResource.getActiveLockOwners(). The problem is that, when I set my lock with a user called franck, for example, the owner returned is : /users/franck... because I'm using Slide ! But if I use

admin view in Slide

2002-04-15 Thread Elodie Tasia
In Slide's documentation, it is said, about the admin view : The first management component which is available is the Catalina manager web application. It can be accessed in context manager on port 8080 (it runs on the same host as the client view). The manager requires an authenticated user

Re: Lock and Unlock

2002-04-10 Thread Elodie Tasia
OK, so, I just have to understand your code, now, Mr Denbo ;o) What I've understood it that you wait for an event before unlocking, isn't it ? But could you tell me was is that rNode ? I don't where it comes from... Thanx SDRFrame.startAnimation(); try {

problem with UNLOCK

2002-04-09 Thread Elodie Tasia
Hi ! I've got a strange problem with the lock/unlock mechanism. I'm using TC4 with his webdav webapp (not Slide because it doesn't want to work...). When I lock a resource for the first time, with a given user, it works. But when I want to unlock this resource, it doesn't find any lock owner,

Re: Configuring Slide with Tomcat 4

2002-04-05 Thread Elodie Tasia
Did you find where the probelm was ? Because I tried the same thing (modifying the server.xml file), and it doesn't work at all, too... - Original Message - From: [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, April 03, 2002 5:58 PM Subject: RE:

Re: Configuring Slide with Tomcat 4

2002-04-05 Thread Elodie Tasia
I downloaded Tomcat/4.0.4-b2 and slide nightly build from 04/02. I started deployed justl slide.war into Tomcat and Tomcat would start up just fine. The moment I started to change the authentication Realm to SlideRealm, Tomcat could not fined several dependencies, (which is documented)

Tomcat with Slide as webapp

2002-04-03 Thread Elodie Tasia
Hi, I'm using Tomcat with Slide as webapp. In the CATALINA_HOME/webapps/webdav/WEB-INF directory, there is a web.xml file. I uncommented these lines, as it was said in Tomcat's documentation : !-- Security Constraints for Testing === -- security-constraint

Re: Tomcat with Slide as webapp

2002-04-03 Thread Elodie Tasia
CATALINA_HOME/webapps/webdav/WEB-INF That's got nothing to do with slide, it's the WebDAV-Servlet that comes with Tomcat AFAICT. Ok, so, what must I do if I want Tomcat to use Slide ? I already put the slide.war it its webapp directory, but I don't know how to configure it correctly. --

Re: Tomcat 4 with Slide

2002-04-02 Thread Elodie Tasia
I think I missed something : what you call CATALINA_HOME is where you put Tomcat or Slide ? Because these files (slide.xml, slide.conf...) are in the /conf directory of Slide and not Tomcat... Maybe must I put them in Tomcat's directory but I didn't read that in any doc... The server

Re: Tomcat 4 with Slide

2002-04-02 Thread Elodie Tasia
RFC 2068 is http. The response you are getting was not generated by the WebdavServlet. I'm guessing it wasn't installed properly. Try the following : - unpack the binary distribution anew somewhere, lets say at c:/ - edit c:/jakarta-slide-1.0.16/server/conf/slide/slide.data : find objectnode

Lock and Unlock

2002-04-02 Thread Elodie Tasia
Hi, I'm implementing the lock/unlock mechanism using the Slide client API. When I lock a resource with a given user and a given timeout, and if I want to unlock it, the api doesn't see that the user is the same : it says that the resource is locked (code 423), but in the code, it finds a lock

Re: Lock and Unlock

2002-04-02 Thread Elodie Tasia
Elodie, I found it necessary to use the same WebdavResource to lock, upadate, and then unlock the resource or I got a similar error. What you mean is that I must use the same instance of WebdavResource to lock and unlock ? Here a code fragment that demonstrates my solution

Re: Tomcat 4 with Slide

2002-04-01 Thread Elodie Tasia
Is that normal that I can get anything when I call localhost:8081 or localhost:8081 ? Sorry I didn't get that one. Could you rephrase ? Oups, excuse me, I wanted to say : is that normal that I CAN'T get anything when I call http://localhost:8081 or localhost:8081 ? When you declare a

Re: Tomcat 4 with Slide

2002-03-28 Thread Elodie Tasia
bericht- Van: Elodie Tasia [mailto:[EMAIL PROTECTED]] Verzonden: Friday, March 08, 2002 3:36 PM Aan: Slide Group Onderwerp: Tomcat 4 with Slide Hi, I'm using Tomcat 4 with Slide. I remarked that, when I test the slide command line client, the server points to SLIDE_HOME\client\ directory

Problem with proppatch

2002-03-27 Thread Elodie Tasia
Hi ! I have a big problem with the PROPPATCH method... I try to do that kind of action : I create a resource and I had a new property. My code is like that : WebdavResource res = new WebdavResource(localhost, 8080, /webdav/index.html, root, root); res.proppatchMethod(/webdav/index.html,

Re: Problem with proppatch

2002-03-27 Thread Elodie Tasia
- Original Message - From: Remy Maucherat [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 27, 2002 5:53 PM Subject: Re: Problem with proppatch Yes, I guess, but how ? I don't understand anything in these configuration files :o( Must I write

problem with Apache propfind

2002-03-22 Thread Elodie Tasia
Hi ! When I use the constructor method WebdavResource(HttpUrl, action, depth), it works very well if the HttpUrl corresponds to a resource on a Slide server (with host = localhost and port = 8080). But when I use it for a resource on Apache/mod_dav server (port = 80), I get that horrible

Re: problem with Apache propfind

2002-03-22 Thread Elodie Tasia
Users Mailing List [EMAIL PROTECTED] Sent: Friday, March 22, 2002 11:23 AM Subject: Re: problem with Apache propfind - Original Message - From: Elodie Tasia [EMAIL PROTECTED] To: Slide Group [EMAIL PROTECTED] Sent: Friday, March 22, 2002 6:13 PM Subject: problem with Apache propfind

Re: problem with Apache propfind

2002-03-22 Thread Elodie Tasia
You should get HttpException and its message is about authentication. As I remember it... And in HttpException you can set user info. I don't know why u don't get it right now. :( Yes, that's what I've just found : I had to set the userInfo for the HttpUrl, and not only for the

Propfind method in Slide client

2002-03-21 Thread Elodie Tasia
Hi, I'm trying to use the propfindMethod(path, depth) from WebdavResource class, but I don't understand why it returns an Enumeration of XMLMethodBase, that I can't use to get the properties. What is the right call to this method ? Thanx

proppatchMethod

2002-03-21 Thread Elodie Tasia
Hi, I'm testing the proppathMethod from the class WebdavResource. But I've seen in the code source that there is written that the property name must be in DAV: namespace. When I try to use it to change the value of an existing property, I get a not allowed method, even if I'm logged as root

Re: problem with Host header

2002-03-14 Thread Elodie Tasia
://; or not. :( However, it shouldn't be there... :( Did you run with common http in Slide cvs repository? Sung-Gu - Original Message - From: Elodie Tasia [EMAIL PROTECTED] To: Slide Users Mailing List [EMAIL PROTECTED] Sent: Thursday, March 14, 2002 4:39 PM Subject: Re: problem

Problem with Slide server

2002-03-13 Thread Elodie Tasia
Did someone ever have such a message when using the slide server and calling the mkcol method implemented in the slide client API ??? HTTP/1.1 501 Method MKCOL is not defined in RFC 2068 and is not supported by the Servlet API Content-Type: text/html Date: Wed, 13 Mar 2002 15:38:30 GMT

problem with Host header

2002-03-12 Thread Elodie Tasia
Hi ! I'm using a code example that was given on this list : HttpClient client=new HttpClient(); client.startSession(localhost,80, new Credentials(root,root)); client.setDebug(10); MkcolMethod mc=new MkcolMethod(); mc.setPath(/newpath);

Re: Problem with Slide command line client

2002-03-08 Thread Elodie Tasia
Thanx, now I can run it ! But many methods don't work. For example : [LOCALHOST] /slide/ $ mkcol test2 Making '/slide/test2' collection: failed. Bad Request (400) I tried with many differnts directories or calls, but I get every time a Bad Request. Why ? And I've got an other sort of error :

Re: Problem with Slide command line client

2002-03-08 Thread Elodie Tasia
I'm using Slide 1.0.16. In fact, my real problem is that I get bad request error when I try tu use any method of the Slide client API. So I wanted to try with the command line client, but the problem is the same... Maybe I missed something in the configuration of Tomcat and/or Slide, but I can't

Tomcat 4 with Slide

2002-03-08 Thread Elodie Tasia
Hi, I'm using Tomcat 4 with Slide. I remarked that, when I test the slide command line client, the server points to SLIDE_HOME\client\ directory. Is that normal ? Can I change it ? And I've another question : it is the same thing that lanching Tomcat, with slide.war in webapps directory, and

Servlet not in webapps directory

2001-06-21 Thread elodie . tasia
Hi ! It is possible to lauch a sevlet that is not in the TOMCAT_HOME directory ? Can I do that by configuring a Context for my servlet ? And how exactly ? thanx -- Sent through GMX FreeMail - http://www.gmx.net

RE: Servlet not in webapps directory

2001-06-21 Thread elodie . tasia
In the server.xml you can define a new Context that maps between context and actual directory. In the following example calling servlets through http://your.company.com/tt/servlet/myservlet will launch the servlets from d:/xx/yy/zz/webpages Context path=/tt

RE: Servlet not in webapps directory

2001-06-21 Thread elodie . tasia
In order that it will work the d:/xx/yy/zz/webpages/ directory should be in the classpath variable before running Tomcat, so Tomcat can find your servlet. Another way, and actually the standard one, is to create WEB-INF/classes directory under d:/xx/yy/zz/webpages/ and put there your

[forum CSSA] Et Dominique Gourville alors!!!!

2001-04-12 Thread Elodie
d'être remplaçant de Cédric ELZEARD, que va devenir Dominique Gourville. je trouve que c'est pas juste pour lui de devoir jouer à chaque fois en CFA2 alors qu'il était là avant David. Qu'en pensez-vous fidéles supporters. ELODIE Sent

<    1   2   3   4   5   6