On Tue, 13 Mar 2007 15:17:52 -0400
"Perrin Harkins" <[EMAIL PROTECTED]> wrote:
On Tue, 13 Mar 2007 12:56:06 -0600
"Dave Moore" <[EMAIL PROTECTED]> wrote:
On Tue, 13 Mar 2007 13:52:30 -0500
Frank Wiles <[EMAIL PROTECTED]> wrote:
> http://perl.apache.org/maillist/modperl.html#Searchable_Archives
> ht
On Mar 13, 2007, at 3:17 PM, Perrin Harkins wrote:
On 3/13/07, imacat <[EMAIL PROTECTED]> wrote:
Is there any recent archive out there? I would like to check
if my
questions were discussed before.
Thank you for using the archives! Our list of archives is here:
http://perl.apache.org/
On 3/13/07, imacat <[EMAIL PROTECTED]> wrote:
Is there any recent archive out there? I would like to check if my
questions were discussed before.
Thank you for using the archives! Our list of archives is here:
http://perl.apache.org/maillist/modperl.html#Searchable_Archives
If you find a
Dear all,
Hi. This is imacat from Taiwan. I saw there are several archives
of mod_perl list at:
http://lists.cpan.org/showlist.cgi?name=modperl-user
Which points to:
http://mathforum.org/epigone/modperl
http://msgs.securepoint.com/cgi-bin/get/apache-current.html
http://groups.yahoo.co
hi
i'm doing some debugging with Apache::Status and coming up to an
obstacle. i have 2 modules- one of which works and one doesn't and i'm
having a hard time figuring out what's going on.
here's the top part of the testing module:
package ZZ::testing;
use strict;
use warnings;
use Apache::Const
When I try this I am getting this
SOAP::Transport::new: ()
SOAP::Serializer::new: ()
SOAP::Deserializer::new: ()
SOAP::Parser::new: ()
SOAP::Lite::new: ()
SOAP::Deserializer::new: ()
SOAP::Parser::new: ()
SOAP::Schema::new: ()
And then it just hangs here indefinitely. Would
this be a server
Not really mod_perl but possibly of interest - here's my version, untested:
#!/usr/bin/perl
use SOAP::Lite +trace;
use Data::Dumper;
$soapobj=SOAP::Lite->service('https://myserver.myhost.com/services/EndUser?wsdl');
$soapresult=$soapobj->getUser('wombat104');
if($soapresult->fault){
print "FAU
All,
I have a Php script which I wish to convert to perl
require_once('SOAP/Client.php');
$wsdl_url =
'https://myserver.myhost.com/services/EndUser?wsdl';
$WSDL = new Soap_WSDL($wsdl_url);
$soap = $WSDL->getProxy();
$soap->setCredentials('','password');
$username = "wombat104";