DataCrawler Web-based application development

2000-04-20 Thread Joseph R. Junkin
Hi everyone, we are looking for some beta testers for a new online application development environment. The easiest way to describe it is to think of it as MS Access offered exclusively online with an underlying MySQL database. http://www.datacrawler.com This service may be an ideal interface f

Re: Finding if SSL is enabled on backend ..

2000-01-06 Thread Joseph R. Junkin
Actually, I am wrong, the HTTP_REFERER is the previous referring document, not the current URL so this does not solve my problem. Again, if anyone knows a way to determine if SSL is activated on the backend, please let me know. > > Hi all, > > I have a two machine setup: > > (A) A frontend runnin

Re: Finding if SSL is enabled on backend ..

2000-01-06 Thread Joseph R. Junkin
Duh, I see 'https://...' in the $ENV{HTTP_REFERER}. Problem solved. Thanks anyway! "Joseph R. Junkin" wrote: > > Hi all, > I have a two machine setup: > (A) A frontend running mod_ssl, mod_rewrite and mod_proxy. > (B) A backend mod_perl machine server not r

Finding if SSL is enabled on back-end proxy-passed server

2000-01-06 Thread Joseph R. Junkin
Hi all, I have a two machine setup: (A) A frontend running mod_ssl, mod_rewrite and mod_proxy. (B) A backend mod_perl machine server not running SSL that is proxypassed to from the frontend Problem: I need to know within my mod_perl backend server whether or not SSL is active on the frontend, be

Re: Best setting for KeepAliveTimeout

1999-12-13 Thread Joseph R. Junkin
Perhaps I should have read the configuration first: KeepAlive Off This seems like the best setting? > This makes sense to me. Does it make sense to others? > > [EMAIL PROTECTED] > http://www.datacrawler.com

Best setting for KeepAliveTimeout with proxypass to modperl

1999-12-13 Thread Joseph R. Junkin
I was wondering what people have found to be the best setting for the 'KeepAliveTimeout' for a backend modperl server that is proxypassed from a front end. My hunch is: On the front end, keep the normal setting (15 or so) On the back end, set KeepAliveTimeout to 0 because above all, I do not wan

Re: mod_perl Programmers demand is going up...

1999-12-04 Thread Joseph R. Junkin
John White wrote: > > On Fri, Dec 03, 1999 at 11:15:53PM +0200, Stas Bekman wrote: > > > Does anybody see a niche for a new web-hosting company specializing in > > > mode_perl and other goodies, rather than the generic "package" ? Matt ? > > > That could ease the management problem of "we agree m

Modperl/ProxyPass & ModSSl

1999-11-23 Thread Joseph R. Junkin
Hello all, I am using a two server setup with a lightweight modproxy front end doing a proxypass to a backend modperl app server. So now I want to utilize modssl and enable an encrypted version, while still retaining a non-encrypted version. In this situation, where do I set up modssl? 1) on the

Re: Session state with/without cookies

1999-10-30 Thread Joseph R. Junkin
This is not a simple answer, but here is my take: This is only My Opinion. Rule #1: Design your 'working part' of the app to minimize the dependence on stored session. This means to place common actions in the URL. Some people would say that's messy, but I disagree. This is because you can 'Walk