[ANNOUNCE] Apache::ASP v2.15]

2001-06-13 Thread Joshua Chamas
Hey, Apache::ASP v2.15 is released and is in your local CPAN or: http://www.perl.com/CPAN-local/modules/by-module/Apache/ This release mainly fixes a bug which makes 2.11 not work under perl 5.6.1/5.7.1 The web site for Apache::ASP is http://www.apache-asp.org Apache::ASP provides an

Re: Is this feasible in Perl??

2001-06-13 Thread Franck PORCHER
Perl developpers are helpful. Eventhough this list is not dedicated to stricto sensu Perl programming, I will answer your question, but just this time. Please refer to the right list (I thing there is a Perl beginners list), and above all, get the Camel book (Programming Perl 3rd Edition,

Re: SOAP, WSDL etc.

2001-06-13 Thread Franck PORCHER
Also, any recommended books for learning SOAP and related technology? IBM www.ibm.com/developerworks/ had quite some good white papers related to SOAP/Perl and webservices not long ago (about 4 weeks). It's worth checking. Franck Franck PORCHER Essential Software

Re: SOAP, WSDL etc.

2001-06-13 Thread Ron Savage
http://www.soaplite.com/ Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html

Re: Just a few questions...

2001-06-13 Thread Thomas Eibner
On Tue, Jun 12, 2001 at 07:48:57PM -0400, Matt Ellison wrote: There are a couple slightly different versions of this program. The current version has been tuned to cache everything it does in hashes per iteration through the handler sub - database queries, reading of HTML templates, etc.

Win32: Cannot load mod_perl.so into server

2001-06-13 Thread Ender Josef
Maybe a hint for other users with the same problem (I spent nearly two hours): I installed ftp://theoryx5.uwinnipeg.ca/pub/other/perl-win32-bin-0.7.exe on NT 4.0 SP 6a. I used perl-win32-bin-0.6 from the same location before. I used the default.conf with the following additional line:

Mod Perl help needed.

2001-06-13 Thread Doug Balmer
I'm having trouble fiddling around with user authentication on a proxy server. This is the basic setup. User requests a page = Apache proxy = MediaSurface = NT site Content is split between both MS NT boxes and some content is public and some is

Charset woes

2001-06-13 Thread Robin Berjon
Hi, I'm running into trouble with browsers submitting data using various charsets and not telling me which charset they're using. This results in all sorts of breakages and unusable text. I can't be the only one dealing with this problem (if I am, then I'm really out of luck) so I was

Re: SOAP, WSDL etc.

2001-06-13 Thread James G Smith
=?iso-8859-1?Q?Jes=FAs_Lasso_S=E1nchez?= [EMAIL PROTECTED] wrote: Hi James, I'm working on a similar project with a farm of web servers that must to access data in a LDAP server. May you explain something more about the application you use in your work, please?. We're thinking to develope a

can not redirect on POST w/ CGI.pm

2001-06-13 Thread David Young
I've found that if I post to this PerlAccessHandler, I get no response: # package Apache::Redirect; use strict; use Apache::Constants qw(REDIRECT); use CGI (); sub handler { my($r) = @_; my $q = new CGI(); $r-header_out(Location =

Re: can not redirect on POST w/ CGI.pm

2001-06-13 Thread Matthew Byng-Maddick
On Wed, Jun 13, 2001 at 11:58:24AM -0400, David Young wrote: I've found that if I post to this PerlAccessHandler, I get no response: # package Apache::Redirect; use strict; use Apache::Constants qw(REDIRECT); use CGI (); sub handler { my($r) = @_; my

Apache::DB fatal error U1077 on Win32

2001-06-13 Thread Ender Josef
Hello When I tried to install Apache::DB on NT 4.0, Perl 5.6.1, Apache 1.3.20 mod_perl/1.25_01-dev the following error occured: C:\Perl\lib\CORE\perl56.lib : fatal error LNK1106: invalid file or disk full: ca nnot seek to 0x3afe435e NMAKE : fatal error U1077: 'link' : return code '0xc' Stop.

[ANNOUNCE] Hello World Benchmark Suite, latest release

2001-06-13 Thread Joshua Chamas
Hey, I have released the latest Hello World benchmark suite, which you can find at http://www.chamas.com/bench/hello.tar.gz ... Enjoy! --Josh CHANGES 1) Apache::Registry Hello World 2000 benchmark added, fastest of group, showing perl's raw template rendering power! 2) New XSLT AxKit

Re: Charset woes

2001-06-13 Thread Riardas epas
On Wed Jun 13 16:17:14 2001 +0200 Robin Berjon wrote: Hi, I'm running into trouble with browsers submitting data using various charsets and not telling me which charset they're using. This results in all sorts of breakages and unusable text. I can't be the only one dealing with this

[JOB] (mod_)Perl/Oracle Application Engineer positions in Portland, OR

2001-06-13 Thread Devin Ben-Hur
++ Software Engineer Position(s) ++ ++ The eMarket Group (eMerchandise.com) ++ The eMarket Group (TeG) is a successful entertainment merchandise retailer. We focus on online and mail-order sales through our branded storefront http://www.eMerchandise.com and private-label storefronts for third

Re: Charset woes

2001-06-13 Thread Robin Berjon
On Wednesday 13 June 2001 20:15, Ričardas Čepas wrote: On Wed Jun 13 16:17:14 2001 +0200 Robin Berjon wrote: Hi, I'm running into trouble with browsers submitting data using various charsets and not telling me which charset they're using. This results in all sorts of breakages and

Announcing the first release of the RPC::XML package

2001-06-13 Thread Randy J. Ray
(Note: I am developing and maintaining this module using my personal resources and address of [EMAIL PROTECTED] I am only posting this message using my redhat.com account due to the fact that this is the address from which I am subscribed to this list.) My apologies in advance to anyone who

[ANNOUNCE] First release of Apache::DnsZone

2001-06-13 Thread Thomas Eibner
Hi all, I'm pleased to announce that today I've released the first version of DnsZone. It's downloadable from the website and should be ready on CPAN really soon as Apache::DnsZone. Short roundup: DnsZone allows users to change their own zones without actually having access to the nameserver

Re: [ANNOUNCE] Hello World Benchmark Suite, latest release

2001-06-13 Thread Joshua Chamas
I have an update already ... Matt kindly told me to lose the AxDebug 10 setting, now AxKit easily beats Apache::ASP on the XSLT benchmark. Also, I have some new Tomcat/mod_jserv benchmarks for Hello World and Hello World 2000. As before, you can download the benchmarks at

Re: can not redirect on POST w/ CGI.pm

2001-06-13 Thread Rodney Broom
From: David Young [EMAIL PROTECTED] DY I've found that if I post to this PerlAccessHandler, I get no response: DY $r-header_out(Location = http://www.modperl.com/;); DY return REDIRECT; - Are you actually wanting your orriginally POSTed data to make it to the redirected location? - Do

Re: can not redirect on POST w/ CGI.pm

2001-06-13 Thread Joachim Zobel
At 17:46 13.06.2001 +0100, you wrote: Actually, it's apache not letting it redirect on a POST form. I don't know why commenting out CGI makes any difference, but the HTTP RFC does say that the behaviour is undefined, for 301/2 on anything other than GET, if you think about it, this makes sense:

Re: can not redirect on POST w/ CGI.pm

2001-06-13 Thread David Young
From: Rodney Broom [EMAIL PROTECTED] From: David Young [EMAIL PROTECTED] DY I've found that if I post to this PerlAccessHandler, I get no response: DY $r-header_out(Location = http://www.modperl.com/;); DY return REDIRECT; - Are you actually wanting your orriginally POSTed data to

Re: templating benchmarks...

2001-06-13 Thread Perrin Harkins
wow. template toolkil took a big hit, there. (no mod_perl on this list? hmm!) This benchmark can be very non-representive. If you don't know how to optimize each and every thing under test, you end up with unfair benchmark and come to potentially wrong conclusions. Take TT, add compiled

Re: templating benchmarks...

2001-06-13 Thread Perrin Harkins
Tom Lancaster [EMAIL PROTECTED] wrote: Absolutely. But I'd like to bring up something I've noticed in benchmarking 'real' sites: many, if not all, of the templating solutions appear to parse the whole of an html page. This is at least true of Apache::ASP and HTML::Mason, which I have used. Is

Re: Win32: Cannot load mod_perl.so into server

2001-06-13 Thread Ron Savage
Josef I get exactly the same error, altho on d:. Rebooting does not fix it. Details here: http://savage.net.au/Perl/Html/configure-apache.html Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html - Original Message - From: Ender Josef [EMAIL PROTECTED] To: [EMAIL

Re: Apache::DB fatal error U1077 on Win32

2001-06-13 Thread Randy Kobes
On Wed, 13 Jun 2001, Ender Josef wrote: Hello When I tried to install Apache::DB on NT 4.0, Perl 5.6.1, Apache 1.3.20 mod_perl/1.25_01-dev the following error occured: C:\Perl\lib\CORE\perl56.lib : fatal error LNK1106: invalid file or disk full: cannot seek to 0x3afe435e NMAKE : fatal

Re: Apache::DB fatal error U1077 on Win32

2001-06-13 Thread William A. Rowe, Jr.
From: Randy Kobes [EMAIL PROTECTED] Sent: Wednesday, June 13, 2001 10:47 PM On Wed, 13 Jun 2001, Ender Josef wrote: C:\Perl\lib\CORE\perl56.lib : fatal error LNK1106: invalid file or disk full: cannot seek to 0x3afe435e NMAKE : fatal error U1077: 'link' : return code '0xc' Stop.

Re: [Patch] Apache-dso_module()

2001-06-13 Thread Doug MacEachern
On Fri, 25 May 2001, Philippe M . Chiasson wrote: I know I posted this patch a while ago, but I am looking thru a few patches I have and I thought I might re-post this one along with the rest This module allows one to do Apache-dso_module('module_name.c') and it will be true only of the

Re: [Patch] apxs location forgotten in MyConfig.pm

2001-06-13 Thread Doug MacEachern
On Fri, 25 May 2001, Philippe M . Chiasson wrote: When building mod_perl with apxs as a DSO, MyConfig.pm looses track of the location of apxs. Therefore, when using 3rd parties perl modules that require some access to Apache information, like Apache::src-new-inc, it will most likely fail,

Re: [Patch] perl Makefile.PL PREFIX=/foo/bar breakage

2001-06-13 Thread Doug MacEachern
On Fri, 25 May 2001, Philippe M . Chiasson wrote: When passing a PREFIX=/foo/bar to Makefile.PL, all the perl .pm will get installed under /foo/bar/lib/site_perl/perl-version/perl-arch but mod_perl.so isn't aware of that. So, mod_perl will refuse to start, failing to locate Apache.pm. My

Proxy and KeepAlives in 1.3.19

2001-06-13 Thread Joe Schaefer
Just wondering- has anybody noticed that starting with 1.3.19, mod_proxy now maintains the browser-proxy connection status (provided the browser is using HTTP/1.1, which NS 4.7* doesn't)? ICBW, but I don't think the current 1.3.* mod_proxy claims to be a true HTTP/1.1 proxy (yet). In the past

Re: BUG PATCH (was: Strange status returns from perl_handler)

2001-06-13 Thread Doug MacEachern
On Wed, 23 May 2001, Julian Gilbey wrote: Right, here's a patch. This line of code was erroneously removed some time between version 1.21 and 1.25 of mod_perl. see Changes: fix bug where Apache::send_http_header was resetting r-status = 200 thanks to brian d foy for the spot the problem is

Re: segfault on subrequest?

2001-06-13 Thread Doug MacEachern
On Thu, 15 Mar 2001, Pierre Phaneuf wrote: I have a PerlTransHandler that is very simple: the problem is likely that your trans handler is recursing. try adding this to prevent recursion: sub handler { my($r) = @_; return unless $r-is_main; my($info); $info =

Re: Segfault on ppc-linux with modperl-1.25 with Apache 1.3.19 whencalling $r-send_fd()

2001-06-13 Thread Doug MacEachern
On 19 Mar 2001, Mark Lipscombe wrote: open ($FH, $fname); ... $r-send_fd($FH); you didn't check the return value of open(); patch below will check if the filehandle is NULL and croak rather than segfault. Index: src/modules/perl/Apache.xs

Re: Efficient pre-loading of symlinks and virtual directories

2001-06-13 Thread Doug MacEachern
On Thu, 29 Mar 2001, Stas Bekman wrote: The latest policy is mod_perl-1.3 doesn't accept any new features and provides only bug fixes. All the development goes into 2.0. i think you mean mod_perl-1.xx :) and, its Apache::Registry that doesn't accept new features. Apache::RegistryNG and

Re: accessing SSL environment data in Perl*Handler

2001-06-13 Thread Doug MacEachern
On Wed, 4 Apr 2001, Paul wrote: Though I feel rather foolish, the fact remains that I can't seem to find my SSL environment variables. httpd.conf has Directory / SSLVerifyClient require SSLOptions+StdEnvVars # ... /Directory Exactly when and where are they set?

Re: installating mod_perl-1.25/apache_1.3.19/perl 5.005_02/solaris5.6

2001-06-13 Thread Doug MacEachern
On 10 May 2001, qazi Ahmed wrote: gcc -O -I/usr/local/lib/perl5/sun4-solaris/5.004/CORE -I/usr/local/inusr/local/lib/perl5/sun4-solaris/5.004/CORE -I../../os/unix -I../../i/../apaci` -c Apache.c perl /usr/local/lib/perl5/ExtUtils/xsubpp -nolinenumbers -typemap /us Usage: xsubpp [-v] [-C++]

Re: can not redirect on POST w/ CGI.pm

2001-06-13 Thread Doug MacEachern
On Wed, 13 Jun 2001, David Young wrote: I've found that if I post to this PerlAccessHandler, I get no response: ... mod_perl/1.24 this problem is fixed in 1.25, from Changes: fix $r-read() so it will not block if all data has already been read and so that Apache will not hang during

cvs commit: modperl/src/modules/perl Apache.xs

2001-06-13 Thread dougm
dougm 01/06/13 21:36:22 Modified:.Changes t/net/perl api.pl src/modules/perl Apache.xs Log: $r-custom_response($code, undef) will now unset the current CustomResponse Revision ChangesPath 1.595 +3 -0 modperl/Changes

cvs commit: modperl Makefile.PL Changes

2001-06-13 Thread dougm
dougm 01/06/13 21:44:13 Modified:.Makefile.PL Changes Log: add %Apache::MyConfig aliases for Apache::src backwards compat Revision ChangesPath 1.185 +2 -1 modperl/Makefile.PL Index: Makefile.PL

cvs commit: modperl/apaci mod_perl.config.sh

2001-06-13 Thread dougm
dougm 01/06/13 21:49:10 Modified:.Changes Makefile.PL src/modules/perl mod_perl.c apacimod_perl.config.sh Log: if PREFIX is given to Makefile.PL add it to @INC at startup Revision ChangesPath 1.597 +3 -0

cvs commit: modperl/apaci .cvsignore

2001-06-13 Thread dougm
dougm 01/06/13 21:50:11 Modified:src .cvsignore apaci.cvsignore Log: add files to ignore from Philippe Revision ChangesPath 1.2 +1 -0 modperl/src/.cvsignore Index: .cvsignore

cvs commit: modperl/src/modules/perl Apache.xs

2001-06-13 Thread dougm
dougm 01/06/13 22:26:29 Modified:.Changes src/modules/perl Apache.xs Log: croak if the filehandle passed to $r-send_fd is NULL Revision ChangesPath 1.598 +3 -0 modperl/Changes Index: Changes

cvs commit: modperl ToDo

2001-06-13 Thread dougm
dougm 01/06/13 23:01:40 Modified:.ToDo Log: todo Revision ChangesPath 1.282 +13 -0 modperl/ToDo Index: ToDo === RCS file: /home/cvs/modperl/ToDo,v retrieving revision 1.281