Slide authentification

2005-05-26 Thread Bertrand Tignon

 Hi !
>From the Slide FAQ :
"You thus have to either double them in tomcat-users.xml for the default Tomcat 
realm (at least for 4.1.x it is the default) or let Tomcat use the Slide realm. 
In the bundled version the Slide realm is used. "

How can I "let Tomcat use the Slide realm" ?
I use the bundle with Tomcat 5.0.28 and Slide 2.1

Thank you.

Bertrand.

This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


Re: Slide authentification

2005-05-26 Thread Jacob Lund
I would suggest that you use the jaas module - not the slide realm. The jaas 
module will also let you use the slide users for tomcat authentication:


http://jakarta.apache.org/slide/howto-jaas.html

/jacob

- Original Message - 
From: "Bertrand Tignon" <[EMAIL PROTECTED]>

To: "Slide Users Mailing List" 
Sent: Thursday, May 26, 2005 10:30 AM
Subject: Slide authentification



Hi !

From the Slide FAQ :
"You thus have to either double them in tomcat-users.xml for the default 
Tomcat realm (at least for 4.1.x it is the default) or let Tomcat use the 
Slide realm. In the bundled version the Slide realm is used. "


How can I "let Tomcat use the Slide realm" ?
I use the bundle with Tomcat 5.0.28 and Slide 2.1

Thank you.

Bertrand.

This message contains information that may be privileged or confidential and 
is the property of the Capgemini Group. It is intended only for the person 
to whom it is addressed. If you are not the intended recipient,  you are not 
authorized to read, print, retain, copy, disseminate,  distribute, or use 
this message or any part thereof. If you receive this  message in error, 
please notify the sender immediately and delete all  copies of this message.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



subversion on slide

2005-05-26 Thread Paul Hussein

Has anyone tried running subversion on top of slide as the WebDAV server ?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Store object

2005-05-26 Thread Guillaume Chervet
Hello,

Do you know where I can find more informations about slide? I don't
understand the store system. I am using (org.apache.slide.content) but I
don't find how to store some java objects. I can store "String" object
using this example
http://wiki.apache.org/jakarta-slide/Sample_API_application, but nothing
more.
Do you know how it works?

Thanks

Guillaume

 Disclaimer, Security & Viruses :
=
 This email is confidential and intended solely for the use of the individual 
to whom it is addressed. Any views or opinions presented are solely those of 
the author and do not necessarily represent those of Result Group Ltd. If you 
are not the intended recipient, be advised that you have received this email in 
error and that any use, dissemination, forwarding, printing,or copying of this 
email is strictly prohibited.

 If you have received this email in error please notify the sender by reply or 
by telephone on +44 (0)1422 327000.

 Please note that this e-mail has been created in the knowledge that the 
Internet e-mail is not a 100% secure communications medium.
 We advise that you understand and observe this lack of security when e-mailing 
us.

 Although we have taken steps to ensure that this e-mail and attachments are 
free from any virus, we advise that in keeping with good computing practice the 
recipient is responsible for ensuring they are actually virus free.
=


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Help with Weblogic configuration - "not found" and "bad request" errors

2005-05-26 Thread Charlton Chris
Hi,
I'm having problems getting Slide working with Weblogic8.1 SP4 (works
fine with Tomcat).
I've followed the weblogic config advice in the slide wiki, and it
(apparently) deploys nicely - however http://localhost:7001/slide/
  returns a 404 file not found, and connecting
with DavExplorer returns DAV Interpreter: 400 bad request.
 
The weblogic log looks like the following (for the davexplorer failed
connection).
 
ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)',
26-May-2005 13:39:14, root, OPTIONS, 200 "OK", 311 ms, /index.jsp
ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)',
26-May-2005 13:39:20, root, OPTIONS, 200 "OK", 50 ms, /index.jsp
ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)',
26-May-2005 13:39:20, root, PROPFIND, 400 "Bad Request", 20 ms, /index.jsp
 
I thought it could be the default of WLS of not generating a directory
page... so in my weblogic.xml I included 
  
true
  
but that didn't sort it.
 
This may well be a really obvious one- but I can't see what is the problem.
Any help would be gratefully appreciated.
 
Other config information :
I'm using WLS 8.1  SP4 on WinXP, with JDK1.4.2_5 (though also tried with the
beta of wls9.0 and got the same problem - I swapped back to 8.1 wondering if
it was the behaviours of 9.0 that was causing the problem). I'm using the
default file based repository (as specified in a vanilla domain.xml). There
are no errors in the wls log as it starts up, just lots of INFO messages as
various things are initialised.
I'm using BASIC authentication (and that seems to be functioning correctly -
I was also using basic authentication in the Tomcat setup, and that both
seemed to be working, and the webdav bits were working too). In WLS, the
authentication seems to be working correctly, however the webdav bit is not
(apparently).
 
Thanks again,
 
Chris Charlton


RE: Store object

2005-05-26 Thread Darren Hartford
Sounds like your looking for an object-oriented database (storing java
objects).  Check out ozone-db, intersystems cache, db4o, and similar
systems if that is your intent.

If you are looking to use Slide for storing files, recommend you look
into using the WebDAV interface instead of the direct Slide API, or the
WCK (http://jakarta.apache.org/slide/wck.html), and maybe read some of
the website to understand where 'Slide' may fit in.

As for the actual example, it lookes like the 'data' parameter is in
this example an XML data file, per why it's a String?

-D


> -Original Message-
> From: Guillaume Chervet [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, May 26, 2005 7:37 AM
> To: slide-user@jakarta.apache.org
> Subject: Store object
> 
> Hello,
> 
> Do you know where I can find more informations about slide? I 
> don't understand the store system. I am using 
> (org.apache.slide.content) but I don't find how to store some 
> java objects. I can store "String" object using this example 
> http://wiki.apache.org/jakarta-slide/Sample_API_application, 
> but nothing more.
> Do you know how it works?
> 
> Thanks
> 
> Guillaume
> 
>  Disclaimer, Security & Viruses :
> ==
> ===
>  This email is confidential and intended solely for the use 
> of the individual to whom it is addressed. Any views or 
> opinions presented are solely those of the author and do not 
> necessarily represent those of Result Group Ltd. If you are 
> not the intended recipient, be advised that you have received 
> this email in error and that any use, dissemination, 
> forwarding, printing,or copying of this email is strictly prohibited.
> 
>  If you have received this email in error please notify the 
> sender by reply or by telephone on +44 (0)1422 327000.
> 
>  Please note that this e-mail has been created in the 
> knowledge that the Internet e-mail is not a 100% secure 
> communications medium.
>  We advise that you understand and observe this lack of 
> security when e-mailing us.
> 
>  Although we have taken steps to ensure that this e-mail and 
> attachments are free from any virus, we advise that in 
> keeping with good computing practice the recipient is 
> responsible for ensuring they are actually virus free.
> ==
> ===
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]