Re: [Catalyst] Catalyst and oracle database.

2011-03-10 Thread Rohan M
Dear all, Thanks for the reply. I'm trying to connect the Catalyst application hosted on 192.168.100.10 to the Oracle server on 192.168.100.107. I tested the oracle connection from 192.168.100.10 with sql plus and perl-DBI combination. Anything that I'm missing? Regards, Rohan M On Thu, Mar 10

[Catalyst] Formbuilder will not render

2011-03-10 Thread Dave Gethings
Hi dudes and dudettes, I'm new to Catalyst and am following the example set out in Chapter 3 of 'The Book' (I've bought the book but have only got this far). I have a problem with Formbuilder not rendering the form for editing an address. Editing a person works fine. I've added some debug code

Re: [Catalyst] Catalyst/FastCGI process management

2011-03-10 Thread Charlie Garrison
Good morning, On 10/03/11 at 12:06 PM -, gvim wrote: Downloaded daemontools but on my Centos5.5 machine the install produced an error: Did you ask Google about it?

Re: [Catalyst] Catalyst As OAuth Service Provider

2011-03-10 Thread Ron White
Hi, Thanks for the suggestion. This looks like a good starting point but it appears to be an incomplete port of OAuth::Lite::Server to Catalyst. Thanks! Ron On Mar 10, 2011, at 3:19 AM, Matthias Dietrich wrote: > Hi, > > Am 09.03.2011 um 22:29 schrieb Ron White: > >> I'm looking to create a

Re: [Catalyst] Catalyst and oracle database.

2011-03-10 Thread Jorge Gonzalez
I think you are doing it right from the Catalyst side, I connect to Oracle routinely in exactly the same form as you show, with no issues. If you omit the "create=static", it's probably creating a dynamic schema, and so it's created OK but you run into problems at runtime, since the creation o

Re: [Catalyst] Catalyst and oracle database.

2011-03-10 Thread Rohan M
On Thu, Mar 10, 2011 at 4:32 PM, Octavian Rasnita wrote: > *From:* Rohan M > > Dear All, > > I'm trying to use Oracle database as a back-end database for Catalyst > application. (I tried MySQL and its working properly for me ). > > At first, I tried the following command - > > perl script/te

Re: [Catalyst] Catalyst/FastCGI process management

2011-03-10 Thread gvim
On 09/03/2011 03:32, Charlie Garrison wrote: suggest (& use) daemontools. http://cr.yp.to/daemontools.html The run script can be as simple as: --- #!/bin/sh exec 2>&1 exec setuidgid appuser envdir ./env /home/appuser/myapp/script/myapp_fastcgi.pl -e -l 127.0.0.1

Re: [Catalyst] Catalyst As OAuth Service Provider

2011-03-10 Thread Presley Cannady
Woops, my mistake as well. -- Presley H. Cannady, Jr. Correlate Systems e: revp...@correlatesystems.com p: 617 500 3378 p: 617 500 8532 On 3/9/2011 4:40 PM, Devin Austin wrote: > Ah, nevermind me, that's a consumer, not a provider. > > -- > Devin Austin > http://www.codedright.net > 970290666

Re: [Catalyst] Catalyst As OAuth Service Provider

2011-03-10 Thread Presley Cannady
Community support seems to be moving around from older, credential and store specific implementations and coalescing around Doran's Authentication plugin (Catalyst::Plugin::Authentication). http://search.cpan.org/~bobtfish/Catalyst-Plugin-Authentication-0.10017/lib/Catalyst/Plugin/Authentication.p

Re: [Catalyst] Catalyst and oracle database.

2011-03-10 Thread Octavian Rasnita
From: Rohan M Dear All, I'm trying to use Oracle database as a back-end database for Catalyst application. (I tried MySQL and its working properly for me ). At first, I tried the following command - perl script/testapp_create.pl model DB DBIC::Schema DB::Schema create=static '

[Catalyst] Catalyst and oracle database.

2011-03-10 Thread Rohan M
Dear All, I'm trying to use Oracle database as a back-end database for Catalyst application. (I tried MySQL and its working properly for me ). At first, I tried the following command - perl script/testapp_create.pl model DB DBIC::Schema DB::Schema * create=static* 'dbi:Oracle:sid=TEST1;host=

Re: [Catalyst] Catalyst As OAuth Service Provider

2011-03-10 Thread Matthias Dietrich
Hi, Am 09.03.2011 um 22:29 schrieb Ron White: > I'm looking to create a new API for our Catalyst website using OAuth > authentication. In this scenario our website would be the OAuth service > provider, not a consumer of some other public OAuth service. > > I found mention of a Catalyst OAuth