Re: [cgiapp] how to use C::A::Dispatch with FastCGI ?

2008-02-21 Thread Ron Savage
On Thu, 2008-02-21 at 09:59 +0800, Silent wrote: Hi Slient has anyone use C-A-Dispatch with FastCGI ? I had no trouble using it. I can send my code it that helps. -- Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html # CGI::Application community mailing list

Re: [cgiapp] how to use C::A::Dispatch with FastCGI ?

2008-02-21 Thread David Steinbrunner
Silent wrote: has anyone use C-A-Dispatch with FastCGI ? snip 2. after search from google, I tryed: #!/usr/bin/perl use lib .; use CGI::Fast qw(:standard); use APP::Dispatch; while (my $q = CGI::Fast ) { APP::Dispatch-dispatch( args_to_new = { QUERY = $q },

Re: [cgiapp] CGI::Application Testing Methodologies

2008-02-21 Thread David Steinbrunner
Jason Purdy wrote: My advice would be to factor your code such that the code is separated into a testable module. If your delete_customer function works as expected, then all the layers above should work as well since those layers are independently tested. My awareness of testing is that

Re: [cgiapp] how to use C::A::Dispatch with FastCGI ?

2008-02-21 Thread Silent
2008/2/21, David Steinbrunner [EMAIL PROTECTED]: Silent wrote: has anyone use C-A-Dispatch with FastCGI ? snip 2. after search from google, I tryed: #!/usr/bin/perl use lib .; use CGI::Fast qw(:standard); use APP::Dispatch; while (my $q = CGI::Fast ) {