trouble with mod-perl soap handler

2002-02-27 Thread Rizwan Majeed
Hi all, I really need some help. Iam using the mod-perl handler for soap. I wasnt sure how to test it. Can any body tell me how to test the service I make. MORE Importantly. how should I make sure the handler is invoked. I think it is not being invoked. I have also copied the package in

How to do connection pooling

2002-02-27 Thread A.C.Sekhar
Hi all, How can I maintain the connections in perl? For this I want to use connection pooling to contol the traffic of my site. How can I do this in perl? Can anybody help me in this regard? If possible please give the steps included in this. Thanks and Regards A C Sekhar

Re: How to do connection pooling

2002-02-27 Thread Dave Hodgkinson
A.C.Sekhar [EMAIL PROTECTED] writes: Hi all, How can I maintain the connections in perl? For this I want to use connection pooling to contol the traffic of my site. How can I do this in perl? Can anybody help me in this regard? If possible please give the steps included in this. Use a

Re: trouble with mod-perl soap handler

2002-02-27 Thread Mark Fowler
On Wed, 27 Feb 2002, Rizwan Majeed wrote: I am using the mod-perl handler for soap. I wasnt sure how to test it. Can any body tell me how to test the service I make. Hi. I was playing with this stuff yesterday, so here are some points from someone who's new to this stuff First off,

Net::LDAP::Extension

2002-02-27 Thread Murugan K
Hi Can please you direct me to the Net::LDAP::Extension Documentation. Thanks in advance. Regards K.Murugan

Re: Net::LDAP::Extension

2002-02-27 Thread Jon Molin
Murugan K wrote: Hi Can please you direct me to the Net::LDAP::Extension Documentation. http://search.cpan.org/search?mode=modulequery=Net%3A%3ALDAP%3A%3AExtension Thanks in advance. Regards K.Murugan

another article on perl.com

2002-02-27 Thread Geoffrey Young
it seems mod_perl is gathering some serious momentum lately... in addition to Paul's Preventing Cross-site Scripting Attacks article last week http://www.perl.com/pub/a/2002/02/20/css.html we have a new article by Stas, Why mod_perl? http://perl.com/pub/a/2002/02/26/whatismodperl.html so,

Re: trouble with mod-perl soap handler

2002-02-27 Thread Rizwan Majeed
Thanks for the help I am doing the following: #-- package ServerDemo; use strict; use SOAP::Transport::HTTP::Apache; sub handler { my $safe_classes = { BlotterService = undef }; SOAP::Transport::HTTP::Apache-handler($safe_classes); } #--- package

Re: How to do connection pooling

2002-02-27 Thread Perrin Harkins
A.C.Sekhar wrote: How can I maintain the connections in perl? Which connections? Connections to a database? A web browser? Something else? - Perrin

Re: another article on perl.com

2002-02-27 Thread Stas Bekman
Geoffrey Young wrote: it seems mod_perl is gathering some serious momentum lately... in addition to Paul's Preventing Cross-site Scripting Attacks article last week http://www.perl.com/pub/a/2002/02/20/css.html we have a new article by Stas, Why mod_perl?

Re: Net::LDAP::Extension

2002-02-27 Thread [EMAIL PROTECTED]
hi, Have you looked at CPAN ? once you have untarred then do a less *.pm . Read code assimulate. Read README.. Read INSTALL Search Engines. Try tests. Analyse tests .. done. Hope that helps. Best Regards, [EMAIL PROTECTED] On Wed, Feb 27, 2002 at 04:37:05AM -0700, Murugan K wrote: Hi

Re: Net::LDAP::Extension

2002-02-27 Thread Mark Fowler
On Wed, 27 Feb 2002, [EMAIL PROTECTED] wrote: hi, Have you looked at CPAN In particular you might want to have a look at search.cpan.org which will allow you to search for modules and read the built in documentation (called pod - ships with every module on CPAN) on the web before you

Re: another article on perl.com

2002-02-27 Thread Issac Goldstand
Can I humbly suggest some articles that would lead to a guide for mod_perl 2? I'm actually a bit embarrassed to admit that this is more out of personal laziness than real need... I've just been so swamped lately, I've never gotten around to looking at the API for Apache 2.0, and therefore have

Re: another article on perl.com

2002-02-27 Thread Geoffrey Young
Issac Goldstand wrote: Can I humbly suggest some articles that would lead to a guide for mod_perl 2? I'm actually a bit embarrassed to admit that this is more out of personal laziness than real need... I've just been so swamped lately, I've never gotten around to looking at the API for

Re: another article on perl.com

2002-02-27 Thread Stas Bekman
Issac Goldstand wrote: Can I humbly suggest some articles that would lead to a guide for mod_perl 2? I'm actually a bit embarrassed to admit that this is more out of personal laziness than real need... I've just been so swamped lately, I've never gotten around to looking at the API for

Re: another article on perl.com

2002-02-27 Thread Stas Bekman
Keith G. Murphy wrote: Stas Bekman wrote: If you know of other prospective magazines looking for articles please let me know. Well, on the web side of things, there's this: http://www-106.ibm.com/developerworks/ They have a fair number of decent articles, including one on CGI.pm

Making perl handlers handle non-Perl

2002-02-27 Thread Andy Lester
How can I get mod_perl to handle all Apache output, whether or not it originates with mod_perl? I'm writing a module that needs to analyze all output generated by Apache. That's easy enough with stacked handlers, but I'm goofing something up with, say, static HTML. If I do this:

Re: another article on perl.com

2002-02-27 Thread Issac Goldstand
[snip] Just to assure you, 99.9% of the old code will run as is. Though there are many new things ;) Actually, that's what I'm interested in... I've mentioned on the IRC room on a number of occasions, that I'd like to try to use the new threaded interface to try to design some new

Re: another article on perl.com

2002-02-27 Thread clayton cottingham
Stas Bekman wrote: Keith G. Murphy wrote: Stas Bekman wrote: If you know of other prospective magazines looking for articles please let me know. Well, on the web side of things, there's this: http://www-106.ibm.com/developerworks/ They have a fair number of decent articles,

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Geoffrey Young
Andy Lester wrote: How can I get mod_perl to handle all Apache output, whether or not it originates with mod_perl? I'm writing a module that needs to analyze all output generated by Apache. That's easy enough with stacked handlers, but I'm goofing something up with, say, static HTML.

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Andy Lester
ok, SetHandler sets a content handler for a given Location - it supersededs everything else. unlike with normal Apache, mod_perl needs two things in order for your handler to be called: the content hander to be perl-script (for Apache) and the name of your handler with PerlHandler (for

Re: Status of mod_perl 2.0

2002-02-27 Thread Issac Goldstand
Which gives me another nice idea for articles... How about some pointers in thread safety with Apache/Perl... What you sould and should not do? Issac - Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Jeff Stuart [EMAIL PROTECTED] Cc: Mod Perl Devel List [EMAIL PROTECTED];

Articles

2002-02-27 Thread Andy Lester
Don't forget the fledgling The Perl Review, available at http://www.theperlreview.com/ We're always lookin' for good stuff... Andy -- %_=split/;/,.;;n;u;e;ot;t;her;c; . # Andy Lester 'Perl ;@; a;a;j;m;er;y;t;p;n;d;s;o;'. # http://petdance.com hack;print map delete$_{$_},split//,q

Re: Status of mod_perl 2.0

2002-02-27 Thread Jeff Stuart
On Wed, 2002-02-27 at 13:00, Stas Bekman wrote: Jeff Stuart wrote: Question? What is the status of mod_perl 2.0? Also, is it working with/playing with Apache 2.0 at all? Tell me what's the status of apache 2.0 and I'll tell you the status of mod_perl 2.0 :) But seriously mod_perl

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Geoffrey Young
Andy Lester wrote: ok, SetHandler sets a content handler for a given Location - it supersededs everything else. unlike with normal Apache, mod_perl needs two things in order for your handler to be called: the content hander to be perl-script (for Apache) and the name of your handler

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Perrin Harkins
Andy Lester wrote: I want my MyFilter to process EVERYTHING that Apache spits out, whether with mod_perl, mod_php or just reading a .html file from the filesystem, especially the mod_php stuff. Assuming you mean you want to look at the generated content from non-mod_perl handlers and do

Re: Status of mod_perl 2.0

2002-02-27 Thread Stas Bekman
Issac Goldstand wrote: Which gives me another nice idea for articles... How about some pointers in thread safety with Apache/Perl... What you sould and should not do? please refer to the [EMAIL PROTECTED] list archives, there were quite long discussions there. Issac - Original

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Andy Lester
Assuming you mean you want to look at the generated content from non-mod_perl handlers and do something with it, apache doesn't work that way. Apache 2.0 does, but that won't help you right now. You might try using a proxy server setup to do this instead. THAT'S the answer I was looking

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Geoffrey Young
Perrin Harkins wrote: Andy Lester wrote: I want my MyFilter to process EVERYTHING that Apache spits out, whether with mod_perl, mod_php or just reading a .html file from the filesystem, especially the mod_php stuff. Assuming you mean you want to look at the generated content from

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Perrin Harkins
Andy Lester wrote: So, my HTML::Lint checking is only going to work on output from the mod_perl chain. If you aren't terribly concerned about performance, there are several Apache::Proxy modules which should be easy to modify to put your lint checking in. Do a search for proxy on CPAN to

Status of mod_perl 2.0

2002-02-27 Thread Jeff Stuart
Question? What is the status of mod_perl 2.0? Also, is it working with/playing with Apache 2.0 at all?

Re: Status of mod_perl 2.0

2002-02-27 Thread Stas Bekman
Jeff Stuart wrote: Question? What is the status of mod_perl 2.0? Also, is it working with/playing with Apache 2.0 at all? Tell me what's the status of apache 2.0 and I'll tell you the status of mod_perl 2.0 :) But seriously mod_perl 2.0 will be ready about the time apache 2.0 (i.e.

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Nico Erfurth
Andy Lester wrote: How can I get mod_perl to handle all Apache output, whether or not it originates with mod_perl? I'm writing a module that needs to analyze all output generated by Apache. That's easy enough with stacked handlers, but I'm goofing something up with, say, static HTML.

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Perrin Harkins
Nico Erfurth wrote: your handler could tie the output-handle (is this possible?) and run a subrequest. Nope, not possible. You can only do that for mod_perl requests. - Perrin

[DIGEST] mod_perl digest 2002/02/17

2002-02-27 Thread jgsmith
-- mod_perl digest February 17, 2002 - February 23, 2002 -- Recent happenings in the mod_perl world... Features

virtual host server root

2002-02-27 Thread Rick Myers
I'm trying to create a root directory for each of my virtuals. The reason is that there's plenty of stuff within the realm of the virtual that certainly shouldn't be within the document root -- templates, cache, logs, etc. Plus, I might want to point a virtual into a user dir somewhere. I've

how to disable mod_perl in a subdir?

2002-02-27 Thread Dan Baker
I am working with a host that has everything under /cgi-bin running mod_perl by default, and well as using EmbPerl to run the dynamic pages. Unfortunately, I have a set of scripts that really need regular perl, and I can't seem to figure out the configuration to disable mod_perl in a specific

Re: how to disable mod_perl in a subdir?

2002-02-27 Thread Marc Slagle
Maybe you can try Apache::PerlRun instead of Apache::Registry for the directories that you need to run those scripts. The perldocs show how to set it up. Marc Slagle - Original Message - From: Dan Baker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 11:14 PM

Re: another article on perl.com

2002-02-27 Thread Joe Brenner
clayton cottingham [EMAIL PROTECTED] wrote: what about slashdot and perlmonks? When I finish reading the Mod_perl Developer's Cookbook, I was planning on writing a review and submitting it to slashdot (presuming no one beats me to it). I'm not calling dibs or anything, just making a

PerlFreshRestart bug - comments please

2002-02-27 Thread Sreeji K Das
Hi I didn't get a response for my first post :-( So I'm making another try (Sorry for cross-posting - but I guess it's relevant to dev list as well) PerlFreshRestart (is anyone using this feature ?) was giving me a lot of problems giving a lot of 'Undefined Subroutine' errors when I restart