Re: running CGI locally??

2004-03-05 Thread WC -Sx- Jones
Freimuth,Robert wrote: Since I'm trying to generate dynamic HTML pages, I thought CGI would be the way to go. However, from what I understand of CGI, it requires a web server and can't be run locally. Since all of my code is in perl, I would prefer to stick with it, if possible. A coworker

RE: running CGI locally??

2004-03-05 Thread Bob Showalter
Freimuth,Robert wrote: Hello, ... I would like to build a simple browser-based UI ... That's good. You'll need a web server of some sort, since that's what browsers talk to. Since I'm trying to generate dynamic HTML pages, I thought CGI would be the way to go. However, from what I

Re: running CGI locally??

2004-03-05 Thread Teresa Raymond
Just wondering what URLs you might have for these: There are web servers written in Perl alsoo =) --Teresa -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

RE: running CGI locally??

2004-03-05 Thread Freimuth,Robert
... I would like to build a simple browser-based UI ... That's good. You'll need a web server of some sort, since that's what browsers talk to. Since I'm trying to generate dynamic HTML pages, I thought CGI would be the way to go. However, from what I understand of CGI, it

Re: running CGI locally??

2004-03-05 Thread WC -Sx- Jones
Teresa Raymond wrote: Just wondering what URLs you might have for these: There are web servers written in Perl alsoo =) http://www.earth.com/server/doc/plexus.html http://sites.inka.de/sites/bigred/sw/tinyhttpd.html Plus there are CPAN Modules to help contruct your own server. -Bill-

RE: running CGI locally??

2004-03-05 Thread Bob Showalter
Freimuth,Robert wrote: ... I would like to build a simple browser-based UI ... That's good. You'll need a web server of some sort, since that's what browsers talk to. Since I'm trying to generate dynamic HTML pages, I thought CGI would be the way to go. However, from

running CGI locally??

2004-03-04 Thread Freimuth,Robert
Hello, I have very little experience with web programming, and even less with CGI, so I'm really in need of help here. I have an application that runs in batch mode and generates 5 output files for every input file (all are flat text, and each of the 5 is in a different directory). I would like

RE: running CGI locally??

2004-03-04 Thread Charles K. Clarkson
Freimuth,Robert [EMAIL PROTECTED] wrote: : I have very little experience with web programming, and even less : with CGI, so I'm really in need of help here. Let's clarify some terminology. CGI is the Common Gateway Interface. It is language independent. For the most part, web programming is

RE: running CGI locally??

2004-03-04 Thread Freimuth,Robert
: I have an application that runs in batch mode and generates 5 output : files for every input file (all are flat text, and each of the 5 is : in a different directory). : I would like to build a simple browser-based UI that provides links : to each output file, so they can be opened and

RE: running CGI locally??

2004-03-04 Thread Teresa Raymond
Hi, I think what you are trying to do is imminently accomplishable with Perl if you are putting the interface on the web. With that being said, would you be sending this program to others or would they access a website to find the information? I don't how to write standalone Perl applications