Re: [Catalyst] Model::LDAP vs Authentication::Credential::LDAP

2008-08-11 Thread Peter Karman
On 08/07/2008 10:52 AM, Buchan Milne wrote: > > So far I have stored the cleartext password in the session, after encrypting > it with the session key. Now, I would like to find some way of providing the > credentials to the model. > > I wrote a connection_class for my models, but it seems t

[Catalyst] URL Aliasing MyApp::Controller - Apache

2008-08-11 Thread Stephen Shorrock
Hi I was wondering whether anyone has experience of aliasing the Controllers of a Catalyst application within Apache. Essentially I would like the Controllers of my Catalyst application to have their own alias locations eg. MyApp::Controller::Area1 to have a URL http://someserver/area1alias and

[Catalyst] Catalyst::*::REST and Javascript

2008-08-11 Thread Robert Krimen
Hi, I'm starting to play around with Catalyst::Action::REST and was wondering if anyone had any recommendations on a javascript utility/library to play nice with RESTful services. I'm thinking of something more comprehensive than the basic YUI, jQuery, or Dojo AJAX functions. Jester (http://thou

Re: [Catalyst] Catalyst::*::REST and Javascript

2008-08-11 Thread Hani Anani
Hi Robert, I have been using YUI along with Catalyst::Action::REST for the development of a prototype that is open to a limited set of users, it has been working out quite well for me. YUI is well documented with plenty of examples and is quite robust. I can't really provide a comparison to other

Re: [Catalyst] Catalyst::*::REST and Javascript

2008-08-11 Thread Steve Atkins
On Aug 11, 2008, at 6:46 PM, Robert Krimen wrote: Hi, I'm starting to play around with Catalyst::Action::REST and was wondering if anyone had any recommendations on a javascript utility/ library to play nice with RESTful services. I'm thinking of something more comprehensive than the basi

Re: [Catalyst] Catalyst::*::REST and Javascript

2008-08-11 Thread J. Shirley
On Mon, Aug 11, 2008 at 6:46 PM, Robert Krimen <[EMAIL PROTECTED]> wrote: > Hi, > > I'm starting to play around with Catalyst::Action::REST and was wondering if > anyone had any recommendations on a javascript utility/library to > play nice with RESTful services. > > I'm thinking of something more

Re: [Catalyst] Catalyst::*::REST and Javascript

2008-08-11 Thread Peter Karman
J. Shirley wrote on 8/11/08 10:03 PM: I use YUI extensively in conjunction with REST -- it works great. Takes a very minimal amount of work to connect Catalyst::Controller::DBIC::API::REST with the YUI DataTable, too. YUI 2.5.1 has better methods for setting the content type, too, so you can

[Catalyst] Cat + DBIC + DBD-Pg + mpm_worker

2008-08-11 Thread Toby Corkindale
Hi, I know the Cat cookbook suggests one should use mod_perl only with the preforking MPM.. but I wanted to try with the worker (ie. threaded) MPM anyway. DBD-Pg had some thread-safety work done years ago, and I meant to be fine.. However I'm seeing errors like this one: Couldn't render template

Re: [Catalyst] Catalyst::*::REST and Javascript

2008-08-11 Thread Mark Trostler
I've had good luck with ExtJS: http://extjs.com/learn/Manual:RESTful_Web_Services Mark Peter Karman wrote: J. Shirley wrote on 8/11/08 10:03 PM: I use YUI extensively in conjunction with REST -- it works great. Takes a very minimal amount of work to connect Catalyst::Controller::DB