Knowing the connection status

2002-11-07 Thread Jon
Hi list, I'm currently working on a project that uses a closed source C api. I know the functions and what they return but have no clue what happends in the background. To be able to use this with mod_perl I've made a module using perlxs that basicly is a wrapper around the API's functions.

RE: Can't locate object method new via package Apache::Request (via Mason)...

2002-11-07 Thread Gareth Kirwan
You need to set Mason up better - probably. I'm an avid Mason user, and I've seen this a fair few times. If you want help, you're most likely to get it on the [EMAIL PROTECTED] list. However if you want to tell me the version of mason you're using it might help. You could use a mason-handler.pl

Trouble using mod_perl and IE5.x, IE6.x

2002-11-07 Thread simon
Hi, I'm using Apache 1.3.26, mod_perl 1.26 and perl 5.6.1 on a HPUX 11 system. My program genarate HTML page with perl cgi. Sometimes, html pages are lost by the IE browser : Internet Explorer chooses to display the default Microsoft internal server error page instead of the generate HTML

Errors after converting /cgi-bin to PerlRun

2002-11-07 Thread Frank Naude (FJ)
Hi, I'm trying to convert my /cgi-bin directory to PerlRun as it only contain Perl scripts. However, after doing so, I get numerous errors like this: [Wed Nov 6 11:34:21 2002] [error] Can't locate object method uri via package Apache::PerlRun at

Re: Knowing the connection status

2002-11-07 Thread Lupe Christoph
Please wrap your extremely long lines! On Thursday, 2002-11-07 at 09:47:12 +0100, Jon wrote: I'm currently working on a project that uses a closed source C api. I know the functions and what they return but have no clue what happends in the background. To be able to use this with mod_perl

Re: Getting the server to parse files after the handler has doneits work...

2002-11-07 Thread Luis Fagundes
I think you can only do this in Apache 2.0. In Apache 1.3 you can chain perl modules with OutputChain, but you can't chain a perl module and another apache module. Per Einar Ellefsen wrote: Hello Simran, At 00:50 07.11.2002, simran wrote: I have the following scenario: * A Perl Handler i

[Win32] nmake error compiling mod_perl.so

2002-11-07 Thread jheckel
Hi since two weeks I can no longer compile the mod_perl-2.0 package from the snapshot server without errors. The last good compilation was 10/27/2002:-( Apache version 2.0.44-dev, WinXP, Perl 5.6.1 Build 633. My install commands: perl Makefile.PL MP_AP_PREFIX=f:/apache2 nmake nmake install

Re: OO handlers

2002-11-07 Thread Michael Schout
Geoffrey Young wrote: interesting. the last time I tried was with bleedperl before 5.8 was released - I know it worked then because I was writing a patch for mod_perl core based on it. this thread has most of the dialogue: Hrm. Well, not sure how the :method attribute is implemented, but

Re: Getting the server to parse files after the handler has doneits work...

2002-11-07 Thread Michael Schout
Luis Fagundes wrote: I think you can only do this in Apache 2.0. In Apache 1.3 you can chain perl modules with OutputChain, but you can't chain a perl module and another apache module. You CAN do this in 1.3 using Apache::Filter and Apache::SSI. I replied privately to Simran pointing him to

Re: Getting the server to parse files after the handler has done its work...

2002-11-07 Thread Per Einar Ellefsen
At 13:30 07.11.2002, Luis Fagundes wrote: I think you can only do this in Apache 2.0. In Apache 1.3 you can chain perl modules with OutputChain, but you can't chain a perl module and another apache module. And that is why the Apache::SSI and similar modules exist, which duplicate the

Re: Trouble using mod_perl and IE5.x, IE6.x

2002-11-07 Thread simon
Hello, I'm not generating an error page. The trouble occurs for sample with this little simple script (sometime on 1 browser using 16 browsers simultanly for sample) : print(html); sleep (5); print(head); print(titleTITRE DE LA PAGE\/title); print (META http-equiv=\PRAGMA\ content=\NO-CACHE\);

RE: Can't locate object method new via package Apache::Request (via Mason)...

2002-11-07 Thread DeAngelo Lampkin
Hi Gareth, I'm using the latest version of Mason, Mason 1.15. As I posted in my previous email, I put the following lines into my httpd.conf file per the instructions on Mason's website: PerlModule HTML::Mason::ApacheHandler FilesMatch \.msn$ SetHandler perl-script

RE: Can't locate object method new via package Apache::Request (via Mason)...

2002-11-07 Thread Gareth Kirwan
What version of perl ? Post 1.12 Mason has problems with perl 5.6.0 I believe ( or maybe .1 as well ) You're quite right about the problem not necessarily being a mason one. However as a mason user - you're likely to get help there all the same on things that are border line mason ( the new

Re: Can't locate object method new via package Apache::Request (via Mason)...

2002-11-07 Thread Tim Tompkins
Is Apache::Request installed for perl 5.8.0? Sounds like it's not loaded, anyway. Regards, Tim Tompkins -- Programmer http://www.clipart.com/ http://www.rebelartist.com/ -- - Original Message -

Re: Can't locate object method new via package Apache::Request (via Mason)...

2002-11-07 Thread Tim Tompkins
You should pre-load Apache::Request anyway, PerlModule Apache::Request PerlModule HTML::Mason::ApacheHandler FilesMatch \.msn$ SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler /FilesMatch Regards, Tim Tompkins

RE: Can't locate object method new via package Apache::Request (via Mason)...

2002-11-07 Thread Gareth Kirwan
Tim - Did you not get the 18:06 email of mine ? It uses a handler instead. So he wouldn't be using this method anyway - if he decided to follow my suggestion. By the way - i'm new to this list - :-) Gareth -Original Message- From: Tim Tompkins [mailto:timt;arttoday.com] Sent: 07

Re: Can't locate object method new via package Apache::Request (via Mason)...

2002-11-07 Thread Tim Tompkins
Sure I did. I was just keeping my response to the context of his present configuration according to the sample he sent. Regards, Tim Tompkins -- Programmer http://www.clipart.com/ http://www.rebelartist.com/

RE: Can't locate object method new via package Apache::Request (via Mason)...SOLVED

2002-11-07 Thread DeAngelo Lampkin
Thanks to Tim, Gareth, and Phillippe: OK, I'll start with the solution to the problem and then drag on a bit for how I found it. The problem was the location of a shared object file for the Apache Request object. A file called libapreq.so.1 was located in /usr/local/lib (should have been in

[ANNOUNCE] Apache::ASP v2.47 released

2002-11-07 Thread Josh Chamas
Hey, Apache::ASP v2.47 is released to CPAN. It is a major upgrade with significant speed improvements of 15-20% for script execution. As this is a major release, please be sure to read the CHANGES and test your sites before upgrading. The CHANGES are listed below. For more info on

RE: Can't locate object method new via package Apache::Request (via Mason)...SOLVED

2002-11-07 Thread DeAngelo Lampkin
As a quick follow-up, the PerlModule Apache::Request line is NOT needed in the httpd.conf file for Mason to work. However, it was a very valuable debugging tool. -Original Message- From: DeAngelo Lampkin Sent: Thursday, November 07, 2002 11:21 AM To: Tim Tompkins; [EMAIL PROTECTED]

Re: Can't locate object method new via package Apache::Request (via Mason)...SOLVED

2002-11-07 Thread Tim Tompkins
As a quick follow-up, the PerlModule Apache::Request line is NOT needed in the httpd.conf file for Mason to work. However, it was a very valuable debugging tool. That wasn't really the purpose, though. The purpose was to pre-load the module in the parent apache process for efficiency. My

NTLM Authentication patch

2002-11-07 Thread Gerald Combs
We recently installed AuthenNTLM where I work, and ran into the POST problems described in the thread at http://marc.theaimsgroup.com/?t=10317736546r=1w=2 After looking through a couple of network traces I think I've found the problem. It appears that after IE authenticates via NTLM, it

Suspected Apache::AuthenNTLM Bug

2002-11-07 Thread Brett Hales
I believe that there is a bug in the Apache::AuthenNTLM module. Configuration: I have an Apache server with ColdFusion MX 6 installed, there is a requirement for NTLM authentication with the server. I implemented the PerlAuthenHandler Apache::AuthenNTLM to solve this problem. Problem: With

Re: Trouble using mod_perl and IE5.x, IE6.x

2002-11-07 Thread Ged Haywood
Hi there, On Thu, 7 Nov 2002, simon wrote: The trouble occurs for sample with this little simple script print(html); sleep (5); print(head); Do you first send the HTTP headers somehow? 73, Ged.

Re: use http-equiv to refresh the page

2002-11-07 Thread mike808
No, that's server push you're thinking of. NPH (non-parsed header) scripts are CGI scripts that talk directly to the client without the server parsing headers and adding others (like the one that says it's Apache). My bad. It was. But I think one needs to use NPH scripts to generate

Re: [Win32] nmake error compiling mod_perl.so

2002-11-07 Thread Randy Kobes
On Thu, 7 Nov 2002, jheckel wrote: Hi since two weeks I can no longer compile the mod_perl-2.0 package from the snapshot server without errors. The last good compilation was 10/27/2002:-( Apache version 2.0.44-dev, WinXP, Perl 5.6.1 Build 633. My install commands: perl Makefile.PL

RE: Can't locate object method new via package Apache::Request(via Mason)...SOLVED

2002-11-07 Thread Ged Haywood
Hi there, On Thu, 7 Nov 2002, DeAngelo Lampkin wrote: A file called libapreq.so.1 was located in /usr/local/lib (should have been in /usr/lib) [snip] I ended up getting this thing: Syntax error on line 362 of /usr/local/apache/conf/httpd.conf: Can't load

Re: [Win32] nmake error compiling mod_perl.so

2002-11-07 Thread jheckel
Randy Kobes wrote: where this gets defined in general, but a temporary workaround for the above problem is to change in modperl-2.0/xs/Apache/Access/Apache__Access.h, about line 63, the call av_push(config, newSVpvf(..)); to av_push(config, Perl_newSVpvf(..)); Hi, thank you for your

Re: Suspected Apache::AuthenNTLM Bug

2002-11-07 Thread Ged Haywood
Hi there, On 8 Nov 2002, Brett Hales wrote: I believe that there is a bug in the Apache::AuthenNTLM module. Did you see this? 73, Ged. -- Date: Thu, 7 Nov 2002 17:46:15 -0600 (CST) From: Gerald Combs [EMAIL PROTECTED] To:

RE: Trouble using mod_perl and IE5.x, IE6.x

2002-11-07 Thread Alessandro Forghieri
Greetings. Now this is OT'ish but... print(titleTITRE DE LA PAGE\/title); Why are you escaping all your '/'s? There is no need to do it. Cheers, alf P.S: I strongly suspect that the sleep call and its position (what if you move it above the /body tag?) are to blame for the behavior you see