If the signature is on and you don't see it, chances are it's not loaded
properly.
Beginner wrote:
Lot's of replies, thanx.
On 1 Mar 2007 at 10:50, Foo JH wrote:
To be really sure, turn on the server signature and see what your telnet
trick gives you.
amend in your http.conf:
ServerSigna
On 3/1/07, Philip M. Gollucci <[EMAIL PROTECTED]> wrote:
I don't think you have many other choices. httpd -X or in the
httpd.conf limit t he number of children to 1 and have 1 parent (prefork
mpm obviously)
I agree, but I also don't see the point. It's a development server,
so it should be po
Tristan Greaves wrote:
Hi,
I've got DProf working successfully on a development modperl server
here. It is producing tmon.out files as expected:
proceed_id/tmon.out
Any given tmon.out file will contain all the timing information for all
scripts run under that process ID.
However, we
Woww - thanks so much Randy - I tried this as you suggested and it works
beautifully:
C:\tools\Apache2\bin>ppm install
http://theoryx5.uwinnipeg.ca/ppms/mod_perl-2.0.ppd
Downloading mod_perl-2.0-2.0.3...done
Unpacking mod_perl-2.0-2.0.3...done
Generating HTML for mod_perl-2.0-2.0.3...done
Updatin
On Thu, 1 Mar 2007, Anoop kumar V wrote:
I am having problems installing mod_perl. I have installed perl from
ActivePerl-5.8.8.820-MSWin32-x86-274739. I still get the error
"Cannot load C:/tools/Apache2/modules/mod_perl.so into server: The specified
module could not be found."
[ ... ]
C:\tools
I am having problems installing mod_perl. I have installed perl from
ActivePerl-5.8.8.820-MSWin32-x86-274739. I still get the error
"Cannot load C:/tools/Apache2/modules/mod_perl.so into server: The specified
module could not be found."
C:\tools\Apache2\bin>perl -V
Summary of my perl5 (revision 5
On Mar 1, 2007, at 12:12 PM, Drew Wilson wrote:
FWIW - JSON and SOAP are separate choices.
of course. but from the description, it seems like JSON might be an
easier fit for the task.
When I identified this serialization as a problem here at work and
commented that JSON::Syck is a mu
FWIW - JSON and SOAP are separate choices.
SOAP is an RPC protocol, typically using http, whose messages are
serialized in XML.
JSON is just a serialization format. However, it is often used w/
http requests (i.e. REST) to implement RPC.
We use SOAP::Lite extensively in our build & inform
On 3/1/07, John ORourke <[EMAIL PROTECTED]> wrote:
I'm with Perrin, SOAP::Lite is the one.
I should point out that I'm not endorsing SOAP::Lite. It's just that
there literally are no other choices, AFAIK.
- Perrin
This, of course, is the solution. Thanks, both!
In case you wonder why I hadn't just copied a working handler and
started by changing that, I wonder too. Stubborn is my middle name, I
am afraid.
Martijn
On 3/1/07, Martin Moss <[EMAIL PROTECTED]> wrote:
As I understand it...
if you use this ->
Martin Moss wrote:
It's been a while since I've posted, but I have a new
project which has a SOAP interface. I have limited
experience with SOAP, so I was wondering if there is a
consensus of opinion as to what the best modules to
use are?
I'm with Perrin, SOAP::Lite is the one. I've successf
On Mar 1, 2007, at 6:02 AM, Martin Moss wrote:
Effectively I'll be simply posting strings of SOAP XML
to a webpage... But eventually we may use SOAP to pass
data around between Classes. Although I'm not sure if
this would be overkill.
Any hints/advice would be much appreciated..
Have you con
Cheers Perrin :-)
--- Perrin Harkins <[EMAIL PROTECTED]> wrote:
> On 3/1/07, Martin Moss <[EMAIL PROTECTED]>
> wrote:
> > It's been a while since I've posted, but I have a
> new
> > project which has a SOAP interface. I have limited
> > experience with SOAP, so I was wondering if there
> is a
>
On 1 Mar 2007 at 8:40, Perrin Harkins wrote:
> On 3/1/07, Beginner <[EMAIL PROTECTED]> wrote:
> > I have a number of handler configured like so:
> >
Apache2::Const qw(OK DECLINED NOT_FOUND);
>
> I don't see how this could work if you're really running mod_perl
> 1.99. There is no module by that
On 3/1/07, Beginner <[EMAIL PROTECTED]> wrote:
I have a number of handler configured like so:
SetHandler perl-script
PerlHandler MY::calendar
Order...
Then mod_perl is installed.
use Apache2::Const qw(OK DECLINED NOT_FOUND);
I don't see how this could work if
On 3/1/07, Martin Moss <[EMAIL PROTECTED]> wrote:
It's been a while since I've posted, but I have a new
project which has a SOAP interface. I have limited
experience with SOAP, so I was wondering if there is a
consensus of opinion as to what the best modules to
use are?
I think SOAP::Lite is th
On 3/1/07, Martijn <[EMAIL PROTECTED]> wrote:
But then it still didn't work, until for some reason I changed
PerlAuthenHandler MyRoot::Testing->autologin
to
PerlAuthenHandler MyRoot::Testing::autologin
Don't forget to mark autologin as a method. In mod_perl 2, that means
adding a sub attri
As I understand it...
if you use this ->autologin the first argument to
your autologin subroutine will be a string
'MyRoot::Testing'
if you use ::autologin It won't be...
Perhaps this might have something to do with it...
I setup my subroutines like this:-
http.conf
PerlModule MyRoot
Hi,
I've got DProf working successfully on a development modperl server
here. It is producing tmon.out files as expected:
proceed_id/tmon.out
Any given tmon.out file will contain all the timing information for all
scripts run under that process ID.
However, we want to work on allo
As someone here pointed out in an off-list email (thanks!), I had
forgotten to load the perl module, by writing
PerlModule MyRoot::Testing
in httpd.conf. That wasn't very clever...
But then it still didn't work, until for some reason I changed
PerlAuthenHandler MyRoot::Testing->autologin
to
Pe
All,
It's been a while since I've posted, but I have a new
project which has a SOAP interface. I have limited
experience with SOAP, so I was wondering if there is a
consensus of opinion as to what the best modules to
use are?
Effectively I'll be simply posting strings of SOAP XML
to a webpage...
Hello.
I've been building a perl script that automatically logs a visitor in
upon visiting the website (given that they're not logged in already
and they have chosen to be remembered by the server etc.).
I've written a handler that does this and I call it using
PerlAuthenHandler MyRoot:
Lot's of replies, thanx.
On 1 Mar 2007 at 10:50, Foo JH wrote:
> To be really sure, turn on the server signature and see what your telnet
> trick gives you.
>
> amend in your http.conf:
> ServerSignature on
ServerSignature is already on:
httpd.conf:ServerSignature On
Can we draw any conclusio
23 matches
Mail list logo