Hi,
I'm not sure but I think that every modification concerning the users
and actions done during the process in Slide are not yet dynamically
updated.
Am I wrong ?
Stef
-----Original Message-----
From: Martin S�nder [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 05, 2001 10:07 AM
To: Slide-User@Jakarta. Apache. Org
Subject: recognise the modification
Hi all,
I use slide 1.0.14 the webdav servlet with tomcat 4.0 b7.
To change the user password I create a second servlet.
But the slide webdav servlet don't recognise the modification.
If I restart tomcat the modification is actual.
My code to change the password is:
...
CredentialsToken credToken = new CredentialsToken(new String("root"));
SlideToken slideToken = new SlideToken(credToken);
NodeRevisionDescriptors revisionDescriptors =
content.retrieve(slideToken,
"/users/test");
NodeRevisionDescriptor revisionDescriptor = new
NodeRevisionDescriptor(0);
revisionDescriptor.setProperty("password", NodeProperty.SLIDE_NAMESPACE,
"thePassword");
content.create(slideToken,"/users/test", revisionDescriptor, null);
...
What can I do ?
Martin