Re: Apache offers to download the perl script rather than execute it!

2007-11-20 Thread Tobias Regneri
Hi, SetHandler perl-script I think it's only a missing file type SetHandler perl-script .pl Hth, Tobias

Re: Question...

2007-09-26 Thread Tobias Regneri
Hi Tyler, I gave your script a test run on an apache 1.3 and had the same effect (blank page). I then modified the script as follows and everything was fine. #!/usr/bin/perl -w my $time = 65; for(my $i = 0; $i $time; $i++) { warn(iteration... . $i); sleep(1); } print

Re: Question...

2007-09-25 Thread Tobias Regneri
Hi Tyler, I don't think that your script causes the issue. Is there a timeout value set in the httpd.conf? Hth, Tobias

Re: SOPE::Lite / prcessing complex data types at server side

2007-04-05 Thread Tobias Regneri
Robert Landrum wrote: I would use Data::Dumper; warn(Dumper([EMAIL PROTECTED])); and see what's in the logs. Thanks for your hint. DataDumper says: (eval): MyProvider MyGroup attrList=HASH(0x517834) $VAR1 = \'MyProvider'; $VAR1 = \'MyGroup'; $VAR1 = \bless( { 'listItem' = [

Re: SOAP::Lite / processing complex data types at server side

2007-04-05 Thread Tobias Regneri
Raf wrote: A quick test might be to change warn([EMAIL PROTECTED]) to: warn($_[2]-{listItem}-[0]-{attrVal}) and see if you get 'Wert1'? Thanks for your reply, Ralf. Finally, I got it to work an hour ago. I try no more to access the parameters directly but with help of the SOAP::Server object.

SOPE::Lite / prcessing complex data types at server side

2007-04-04 Thread Tobias Regneri
Hi List, currently I'm developing a soap server with SOAP::Lite. Now i ran into trouble because I use an own schema with complex data types. On client side everything works fine. Now I try to handle the generated requests on the server side. But I can't figure out how the deserializer presemts me

Crypt::OpenSSL::X509

2006-04-12 Thread Tobias Regneri
v0.9.6g Crypt-OpenSSL-X509-0.3.1 Sorry for the not modperl-related post, but I hope here's someone who can help me. Thanks, Tobias -- Tobias Regneri mailto:[EMAIL PROTECTED]

Re: the modperl book link is broken

2006-02-08 Thread Tobias Regneri
Ken Perl wrote: their links http://modperlbook.org/ ... are both broken modperlbook.org works fine for me, try it again ... TR