Re: WebDav Acces (User Auths) with JDBC Datasource

2005-03-18 Thread Andy Depue
I submitted code a few weeks ago to accomplish something very similar. You will still have to write a few simple methods (by implementing a DAO style interface) to retrieve your users from MySQL, but my contribution takes care of mapping your user info to the principal store format that Slide

Re: WebDav Acces (User Auths) with JDBC Datasource

2005-03-18 Thread Michael J. Prichard
Hey Andy, Thanks for the response and the code. I am curious, what reason did you build the authentication outside of Slide? I am new to Slide (and Webdav) so please bear with me :) Thanks, Michael Andy Depue wrote: I submitted code a few weeks ago to accomplish something very similar. You

Re: WebDav Acces (User Auths) with JDBC Datasource

2005-03-18 Thread Andy Depue
WebDAV is only part of our architecture. We have rich clients that also communicate with services via Spring's http based remote protocol and via JMS. Sometimes the client may access a document directly, but sometimes the client may invoke a service which then needs access to a document. The

WebDav Acces (User Auths) with JDBC Datasource

2005-03-17 Thread Michael J. Prichard
Hello. I am trying to set up a webdav server that hits a MySQL database to get the authentication information. I also want to direct the user to their home directory structure after they log in. Is this possible and, if so, does anyone out there have any experience with it? Thanks, Michael