Re: Servlet

2006-06-05 Thread Dave Gray
On 5/30/06, Tom Allison [EMAIL PROTECTED] wrote: How can I impliment a Servlet in Perl without writing my own http server or running apache? What exactly are you trying to do? I assume you didn't get a response because you weren't very specific. -- To unsubscribe, e-mail: [EMAIL PROTECTED

Servlet

2006-05-30 Thread Tom Allison
How can I impliment a Servlet in Perl without writing my own http server or running apache? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

Servlet::Http::HttpServlet

2006-05-27 Thread Tom Allison
, and establish an authentication method (BASIC). As I understand it, I can create an object: my $server = Servlet::Http::HttpServlet-new(); and I guess I can create the same server with specific options via: my $server = Servlet::Http::HttpServlet-($config); where $config is a hash reference

CGI vs. Servlet technologies

2002-01-08 Thread Naveen Parmar
What are the key differences between CGI and Servlets? - NP _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: CGI vs. Servlet technologies

2002-01-08 Thread Brett W. McCoy
process via a 'servlet' container, like Tomcat. Some servlet containers can run standalone as a web server (Tomcat can), others, need to be run as a process invoked by a web server like Apache via an intermediary module, like mod_jk. Actually, Tomcat can be used as either of these. :-) Of course

RE: CGI vs. Servlet technologies

2002-01-08 Thread RArul
Servlets are more scalable than CGIs and that is what is one of the biggest advantages! A Servlet is instantiated for the first request and any subsequent requests to the same servlet spawns a separate thread, whereas CGIs are costly and had to be instantiated afresh for every fresh request

RE: CGI vs. Servlet technologies

2002-01-08 Thread Hanson, Robert
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 08, 2002 4:50 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: CGI vs. Servlet technologies Servlets are more scalable than CGIs and that is what is one of the biggest advantages! A Servlet

RE: CGI vs. Servlet technologies

2002-01-08 Thread Curtis Poe
--- Hanson, Robert [EMAIL PROTECTED] wrote: But don't forget that there are other technologies other than servlets that cache code so that they don't need to be recompiled for each hit. ...And this being a Perl list there is mod_perl a plugin for Apache (free) and PerlEx for IIS (from

Re: CGI vs. Servlet technologies

2002-01-08 Thread Mark Maunder
[EMAIL PROTECTED] wrote: Servlets are more scalable than CGIs and that is what is one of the biggest advantages! A Servlet is instantiated for the first request and any subsequent requests to the same servlet spawns a separate thread, whereas CGIs are costly and had to be instantiated