Ken Perl wrote:
> their links http://modperlbook.org/ ... are both broken
modperlbook.org works fine for me, try it again ...
TR
v5.8.0
OpenSSL 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]
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
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' =>
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 obj
Hi Tyler,
I don't think that your script causes the issue.
Is there a timeout value set in the httpd.conf?
Hth,
Tobias
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 "Conte
Hi,
> SetHandler perl-script
I think it's only a missing file type
SetHandler perl-script .pl
Hth,
Tobias