jeyabal has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks, I already developed a program in perl. It will work in command line console window. Now I want to add a web interface for that. Please suggest me is there any option to add web interface for existing perl command line program. Thanks, Jeyabal

Replies are listed 'Best First'.
Re: Perl web programming
by moritz (Cardinal) on Nov 12, 2010 at 09:36 UTC
    There are several posssible tools you can use. If it's a simple script, Plack, CGI or CGI::Application might do the trick, for more complicated ones you might want to use Catalyst or Mojolicious.

    In any case you'll need to adapt your script; due to the nature of different interaction imposed by the HTTP protocol there's no tool that can simply wrap a command line script into a web interfaces and produce a good user experience.

Re: Perl web programming
by marto (Cardinal) on Nov 12, 2010 at 09:38 UTC
Re: Perl web programming
by Anonymous Monk on Nov 12, 2010 at 12:03 UTC