I provide contracting services for a company who has a web-based (LAMP)
product. Around a year ago, they got a big client who wanted the
webserver to run on a win32 platform. They were using mod_perl for
registry services on the old setup, and I ported them to a windows
environment with mod_perl
Just want to do a quick poll here.
Most of the comments I read here, come from people who use the Linux/
BSD platform. Is there anybody who actually deploy the Windows combo on
a production server? For those who do, do you have any issues that are
Windows-specific?
For me for example, my gri
> with Modules::SoapServer containing:
>
>
> my $server = SOAP::Transport::HTTP::Apache -> dispatch_to("SoapCalls");
>
> sub handler { $server->handler(@_) }
>
your handler() subroutine needs to be Apache::Filter aware. you can find
out how to do that via the Apache::Filter docs on cpan
h
On Tue, 25 Apr 2006 13:56:12 -0400 (EDT)
Jim Schueler <[EMAIL PROTECTED]> wrote:
> What happened to PerlTransHandler in mod_perl-1.29?
>
> Jim Schueler
> Motor City Interactive
It didn't go anywhere. By chance are you using a recently installed
version where you didn't build it with EVERYTH
What happened to PerlTransHandler in mod_perl-1.29?
Jim Schueler
Motor City Interactive
why not just use mod_deflate ?
On Apr 25, 2006, at 5:42 AM, Alex Greg wrote:
Hi,
We're using SOAP::Transport::HTTP::Apache and I want to enable HTTP
compression. We're using it as follows:
| - - - - - - - - - - - - - - - - - - - -
| RoadSound.com / Indie-Rock.net
| Collaborative Online Manag
Hi,
We're using SOAP::Transport::HTTP::Apache and I want to enable HTTP
compression. We're using it as follows:
PerlSendHeader On
SetHandler perl-script
PerlHandler Modules::SoapServer
Order deny,allow
Allow from all
with Modules::SoapServer containing: