Re: Site Host Providers that Support mod_perl?

2002-03-07 Thread Brett W. McCoy
On Thu, 7 Mar 2002, Fran Fabrizio wrote: My ideal setup would be to be able to colocate one of my servers and just use the ISP's bandwidth, but those plans are all pretty pricey. So, I'd really like to have a good ISP that supports mod_perl that I can afford because I'd enjoy being able to

Re: statINC or startINC ??

2002-03-01 Thread Brett W. McCoy
On Fri, 1 Mar 2002, Dermot Paikkos wrote: So I guess I need to know how to make the PERL5LIB variable available to Apache from its first initialisation (would that be the startuppl or the UID of the httpd process?) I also need to make sure that this is variable persists PerlSetVar PERL5LIB

Re: module errors

2002-02-07 Thread Brett W. McCoy
On Thu, 7 Feb 2002, GsuLinuX wrote: we wroted a perl code to fetch some information we want from a web site. The code is as below: #!/usr/bin/perl use LWP::Simple; use HTML::Parse; snippage We have the debug error: Can't locate HTML/Parse.pm in @INC(@INC contains:

Re: mod_perl version for Tomcat

2002-02-06 Thread Brett W. McCoy
On Wed, 6 Feb 2002, Chuck Goehring wrote: Is there anyone out there working on a mod_perl version for Tomcat? We currently have Apache running for mod_perl and Tomcat running for a purchased servlet library. I primarily user mod_perl as a speedup for cgi programs. I need ssl capabilities

Re: weird problem. Lost of the POST data

2002-02-04 Thread Brett W. McCoy
On Mon, 4 Feb 2002, Oscar Serrano wrote: some days ago I wrote to ask for this problem: The CGI.pm (sometimes) could not receive the POST data. I tried all you recomended me here in the list. But I still had the problem. Finally I decide to kick out CGI.pm and start to use the old

RE: email attachments; was modperl growth

2002-02-02 Thread Brett W. McCoy
On Sun, 3 Feb 2002, Jonathan M. Hollin wrote: Er, that's not strictly true. Outlook handles encrypted and/or signed email as well as any other client. Outlook displays the signed email with a unique icon to identify it as such. The attachment contains the actual PGP info (in case you want

Re: perl with java

2001-12-09 Thread Brett W. McCoy
On Fri, 7 Dec 2001, nookala nagaraju wrote: I'm a java programmer. I don't know anything about perl. I just want to know whether it's possible to call servlets from perl scripts after validating some data provided by the user. Thank you very much. Sure -- if you have a servlet engine, like

Re: User customisable website application?

2001-12-09 Thread Brett W. McCoy
On Thu, 6 Dec 2001, Russell Matbouli wrote: Just to clarify what I mean by customisable - the user can log in and change their colour scheme, font, ordering of components, choose a theme... The sort of thing you see on some commercial websites. There are some websites out there that are user

Re: Creating an installable web site.

2001-12-06 Thread Brett W. McCoy
On Thu, 6 Dec 2001, Luciano Miguel Ferreira Rocha wrote: * have on cd apache with mod_perl and postgresl in installable form with your data. Or have them already installed on the cd. The problem here is that the source for your entire site will have to be distributed too and available

Re: CGI.pm 2.78 and mod_perl 1.26 troubles

2001-12-06 Thread Brett W. McCoy
On 6 Dec 2001, David Shrewsbury wrote: Solved it... apparently, if you upgrade CGI.pm while your web server is running, a restart is not good enough. You have to shutdown completely and then start it back up. yeah, especially if you're using mod_perl and have pre-loaded modules at server

Re: ASP.NET Linux equivalent?

2001-12-05 Thread Brett W. McCoy
On Mon, 3 Dec 2001, Vsevolod Ilyushchenko wrote: Is anyone aware of a Linux product equivalent to ASP.NET from MS? Its most attractive feature is the GUI construction of Web forms and the automatic connection of their fields to a database. Since I am getting sick and tired of writing over

Re: Forking problem with mod_perl...

2001-12-02 Thread Brett W. McCoy
On Sun, 2 Dec 2001, Brian wrote: I'm writing a script that will run under mod_perl. Right now, if I disable mod_perl the script runs fine. When I turn mod_perl back on, it stops working. Here's the lowdown. Forking under mod_perl isn't a good idea. Did you read this?

Re: Upgrade Perl to 5.6.1and mod_perl still see 5.6.0

2001-11-27 Thread Brett W. McCoy
On Fri, 23 Nov 2001, Hans Poo wrote: I've just installed a redhat 7.2 machine. I the installed Apache::ASP using CPAN, and ended upgrading to perl 5.6.1. After restarting httpd. i noticed that mod_perl is still int he old libraries. Did you rebuild mod_perl? If not, it's still the 5.6.0

Re: IBM patents Template Systems?

2001-10-17 Thread Brett W. McCoy
On Wed, 17 Oct 2001, Ged Haywood wrote: An only slightly less casual reading indicates that anyone who writes use strict; or html isn't at risk of violating this patent. It looks to me that products like Zope or Midgard are more going to be in violation, but since they are Python and

Re: Mod_perl component based architecture

2001-10-16 Thread Brett W. McCoy
On Tue, 16 Oct 2001, Gargi Bodke wrote: i have been asked to suggest an architecture to seperate the business logic from the html. how is this done in modperl? i guess by using functions for the business logic. is there any other way? There are several solutions you can explore, that are

Re: Mod_perl component based architecture

2001-10-16 Thread Brett W. McCoy
On Tue, 16 Oct 2001, Dominique Quatravaux wrote: As for the remaining of the question, I've been wondering for myself if there is a MVC (model-view-controller) framework for WWW publishing in Perl ? I gather there exist quite a few for Java, but I couldn't find anything significant under

Re: Mod_perl component based architecture

2001-10-16 Thread Brett W. McCoy
On Tue, 16 Oct 2001, Michael wrote: Quite a few, as the other posts in thread have already made reference to. In addition, there is also CGI::Application, which supports templating via HTML::Template and uses an MVC architecture as well. Are any of the packages mentioned particularly

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Brett W. McCoy
On Fri, 20 Apr 2001, Francesco Pasqualini wrote: an interesting feature of JSP is the possibility to use the MVC design pattern (INPUT/OUTPUT/LOGIC separation) This is obtained with the "forward" instruction. How the MVC design pattern can be implemented in the mod_perl (and specifically

Re: Java.pm

2001-04-10 Thread Brett W. McCoy
On Tue, 10 Apr 2001, cbell wrote: Hello everyone, has anyone had any experience with Java.pm? There doesn't seem to be much info in the mail archives. I'm trying to access a JAR from within perl using the Java.pm, but I always receive the error: 'java.lang.ClassNotFoundException'. I can

Re: CGI - mod_perl 101

2001-04-06 Thread Brett W. McCoy
On Fri, 6 Apr 2001, Paul Lombardo wrote: What is the best way (Is there a reference source) to move cgi scripts to perl modules so they run under mod_perl? http://perl.apache.org/dist/cgi_to_mod_perl.html -- Brett http://www.chapelperilous.net/btfwk/

Re: perl session management

2001-03-27 Thread Brett W. McCoy
On 27 Mar 2001, tom joseph wrote: Hello there.. Could u suggest a way to update a session variable. At present it is not possible for me to update a session variable from any other page. I thought it would be automatically updated when i do a new insertion into the session variable which