Looks like I have to implement PoolingConnectionManager.java
Thanks,
Jane
----- Original Message ----- 
From: "Jane [EMAIL PROTECTED]" <[EMAIL PROTECTED]>
To: "Slide Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, November 22, 2004 1:06 PM
Subject: WebDav User Authentication


Hi,
I just started to add WebDav to my Document/File Management System. I have a
session in my File Mgmt System. To start using the File Mgmt System, a user
has to obtain a session. (Authentication is done here). I want to let WebDav
authentication to call this obtaining session authentication. Will the
following code do the trick?

 public class EfsSessionManager implements SessionAuthenticationManager {

    private LibrarySession session = null;

    public Object getAuthenticationSession(String user) {
        return session;
    }

    public Object getAuthenticationSession(String user, String password)
throws Exception {

        session = new LibrarySession(user,password);
        return session;
    }

Any advice welcome.

Thanks,
Jane


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

Reply via email to