RE: use perl modules in Apache::ASP

2004-04-19 Thread Søren Tauber Lassen
Great! Thanks guys! Your suggestions were very helpful. I can now make it work. /Søren - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: use perl modules in Apache::ASP

2004-04-19 Thread Dr. Helmut Zeilinger
Hi S=F8ren, several ways: 1) in your asp file: .. do 'test.pl'; subroutine(); .. or "do 'path/test.pl'" if test.pl is in another path than your asp script. 2) in your apache.conf: .. PerlRequire path/test.pl .. important: test.pl must return a true value e.g. must end with "1;" and your subro

Re: use perl modules in Apache::ASP

2004-04-17 Thread Helmut Zeilinger
Hi Søren, several ways: 1) in your asp file: .. do 'test.pl'; subroutine(); .. or "do 'path/test.pl'" if test.pl is in another path than your asp script. 2) in your apache.conf: .. PerlRequire path/test.pl .. important: test.pl must return a true value e.g. must end with "1;" and your subrout

use perl modules in Apache::ASP

2004-04-17 Thread Søren Tauber Lassen
Hi all,   Is it possible to include/use an external PERL module in an ASP page? I have a ASP page that needs to access subroutines placed in a PERL file.   E.g. test.asp needs to use test.pl in order to access the subroutine test.   --- Apache server Apache:ASP Win2000 Server -