Re: using subrequest to different server

2006-12-12 Thread Radoslaw Zielinski
Adam Prime x443 <[EMAIL PROTECTED]> [08-12-2006 20:40]: > If there is actually somethign like an Apache2::Proxy out there, i'd > like to hear about it. It's called mod_perl+mod_proxy... :-) You can configure mod_proxy from mod_perl using $r->proxyreq(2). See perldoc Apache2::RequestRec and my re

Re: MODPERL and Reverse Proxy [patch]

2006-12-12 Thread Radoslaw Zielinski
Jonathan Vanasco <[EMAIL PROTECTED]> [08-12-2006 21:50]: > On Dec 7, 2006, at 3:37 PM, Sumit Shah wrote: >> I want the request to come to My::RequestHandler FIRST and then go >> to the ProxyPass Directive. It does not do this. It BYPASSES my I've been working on something like this recently...

[ANNOUNCE] Tie-DxHash v1.02 released

2006-12-12 Thread Kevin Ruscoe
All Tie-DxHash is intended to permit the use of more elaborate rewrite rules in Apache configuration files written with Perl Sections. I recently released a new version of Tie-DxHash. This release fixes a bug in the NEXTKEY method that was highlighted when using any function which resets th

Re: Instability at startup for Apache2/mod_perl2 using worker MPM

2006-12-12 Thread Perrin Harkins
David Scott wrote: We will probably be moving to DBIx::Class (which is supposed to function well in multithreaded Apache) rather than vanilla DBI. If anyone has experience with DBIx::Class on mod_perl2 using the worker MPM, we would be grateful to hear from you. DBIx::Class is just a library

Registry + DBD::Oracle + LDAP kills apache

2006-12-12 Thread Mark Heiges
I'm experiencing fatal Apache child errors when I attempt to make DBD::Oracle connections under ModPerl::Registry and using LDAP as one of the database name resolution paths. Can anyone offer some advice on this? Here some specifics... To help isolate the problem I wrote a simple Perl cgi

Re: Forking to an interactive program under mod_perl

2006-12-12 Thread Alex Beamish
On 12/12/06, Jonathan Vanasco <[EMAIL PROTECTED]> wrote: On Dec 12, 2006, at 6:13 PM, Robert Landrum wrote: > Alex Beamish wrote: >> What I'm trying to do is come up with scaled page images from a >> PDF on the fly. Thus, I want to launch Ghostscript and then ask >> for a couple of page images

Re: Forking to an interactive program under mod_perl

2006-12-12 Thread Jonathan Vanasco
On Dec 12, 2006, at 6:13 PM, Robert Landrum wrote: Alex Beamish wrote: What I'm trying to do is come up with scaled page images from a PDF on the fly. Thus, I want to launch Ghostscript and then ask for a couple of page images. So, launching Ghostscript and getting the first page might ha

Re: Instability at startup for Apache2/mod_perl2 using worker MPM

2006-12-12 Thread David Scott
Just a note to thank all those who helped me with my three (3) Apache2 problems last week. Here is how it all worked out: - There was an apparent bug in Scoreboard.xs in Apache::Scoreboard 2.08 that prevented its being loaded into Apache::VMonitor. Malcolm is looking into this (thanks). - Th

Re: Forking to an interactive program under mod_perl

2006-12-12 Thread Robert Landrum
Alex Beamish wrote: What I'm trying to do is come up with scaled page images from a PDF on the fly. Thus, I want to launch Ghostscript and then ask for a couple of page images. So, launching Ghostscript and getting the first page might happen on the first request; subsequent requests would come

Re: mod_perl problems - require file

2006-12-12 Thread Perrin Harkins
aj2taylo wrote: ERR: 24: Line 1: Error in Perl code: Can't locate object method "subRoutineA" via package "moduleX" (perhaps you forgot to load "moduleX") at path/moduleX.pm line 123. Sounds like a variation of this: http://perl.apache.org/docs/1.0/guide/porting.html#Name_collisions_with_Module

Re: mod_perl problems - require file

2006-12-12 Thread Philip M. Gollucci
aj2taylo wrote: package moduleX; require "moduleX.methods"; perldoc -f use perldoc -f require note that require does not call ::->import() i.e.: require A; A::x() vs use B; c(); package B; @EXPORT = qw(c); sub c { } package A; sub x { } -- ---

mod_perl problems - require file

2006-12-12 Thread aj2taylo
Hello, Recently I started discovering problems with epl file returning errors, in the format: ERR: 24: Line 1: Error in Perl code: Can't locate object method "subRoutineA" via package "moduleX" (perhaps you forgot to load "moduleX") at path/moduleX.pm line 123. The module "moduleX.pm" has a req

Forking to an interactive program under mod_perl

2006-12-12 Thread Alex Beamish
Hi, I have described the challenge I'm facing in some detail here http://perlmonks.org/?node_id=589147 but essentially I want to launch Ghostscript in an interactive session, and talk to it interactively through a mod_perl request handler. The code that I am trying to run (this is what calls

[JOB] Perl/mod_perl Web Developer in Cologne, Germany

2006-12-12 Thread Tobias Kremer
urbia.com AG is looking for an experienced Perl/mod_perl Web developer (full-time) to support the development of our successful online community at www.urbia.de. More information (in German only) about the job can be found at: http://www.urbia.de/general/jobs/ -- Kind regards Tobias Kremer C

Re: Connecting to more than one Oracle database

2006-12-12 Thread Malka Cymbalista
Thanks for all those who replied. I solved the problem - there was a problem with the syntax of the connect command. thanks again. Malka Cymbalista Webmaster, Weizmann Institute of Science [EMAIL PROTECTED] 08-934-3036 >>> On 12/11/2006 at 9:01 PM, in message <[EMAIL PROTECTED]>, Perrin Harki