[please post any non mod_perl issues on rt.cpan.org or
stackoverflow.com or email me directly (no response guaranteed)]
That's fixed in 0.717. Can you verify the Apache SOAP handler works in
that distro?
On Sat, Jun 1, 2013 at 7:58 AM, André Warnier wrote:
> Hi.
>
> I don't
Hi.
I don't really know if SOAP::Lite is supported or not ;-), but
I saw PHRED lurking around here, so I'll try my luck.
While trying to find my way around to interface with a Sharepoint web service, I encounter
the following issue (visible at end if you want to skip to the flesh) :
> wrote:
> > It works with things inside the dispatch_to directory.
> (refer to my orig post)
> > Unless i've misconfigured, it's not working
> for things outside that directory.
>
> Sorry, I should have read the whole thing. I think the
> problem is
> that the file you pull in with require has
On Thu, Dec 11, 2008 at 1:43 PM, b. nyec wrote:
> It works with things inside the dispatch_to directory. (refer to my orig post)
> Unless i've misconfigured, it's not working for things outside that directory.
Sorry, I should have read the whole thing. I think the problem is
that the file you pu
> > wrote:
> > > What i have is a SOAP Lite server set up (for
> > development purposes) and i'm wondering if there
> is a
> > way to make changes to files outside the
> > "dispatch_to" directory that are included
> > ("require"
> wrote:
> > What i have is a SOAP Lite server set up (for
> development purposes) and i'm wondering if there is a
> way to make changes to files outside the
> "dispatch_to" directory that are included
> ("require"/"do") in myhandler witho
On Thu, Dec 11, 2008 at 1:03 PM, b. nyec wrote:
> What i have is a SOAP Lite server set up (for development purposes) and i'm
> wondering if there is a way to make changes to files outside the
> "dispatch_to" directory that are included ("require"/"do"
Not sure if subject explains the problem (or not) i'm dealing with but, here
goes.
What i have is a SOAP Lite server set up (for development purposes) and i'm
wondering if there is a way to make changes to files outside the "dispatch_to"
directory that are included
.
- B
--- On Fri, 8/22/08, b. nyec <[EMAIL PROTECTED]> wrote:
> From: b. nyec <[EMAIL PROTECTED]>
> Subject: RE: mp2 + SOAP - SOAP calls fail randomly
> To: modperl@perl.apache.org
> Date: Friday, August 22, 2008, 1:39 PM
> Was there a solution to this, i'm having
Was there a solution to this, i'm having the same problem.
Apache/2.2.4
mod_perl/2.0.3
Perl/v5.8.8
SOAP-Lite-0.710.08
Ive noticed that sometimes my soap requests will fail every 6th request which
is the same number of httpd proccess' that are running.
httpd.conf
[]
Ignore the test case...
It is actually:
TestSpace.pm
package TestSpace;
sub getSession {
return 1;
}
1;
-Original Message-
From: Tom Shaw [mailto:[EMAIL PROTECTED]
Sent: 26 April 2007 14:11
To: 'modperl@perl.apache.org'
Subject: mp2 + SOAP - SOAP calls fai
Im having some mod_perl2 wierdness. Im trying to run some SOAP requests and
Im getting odd things happening.
Is there any reason that I should be experiencing intermittant issues
dispatching SOAP methods to my class?
Sometimes the methods work fine and sometimes they don't.
When they do
Tobias Regneri wrote:
Given the following xml structure of the data to process
Name1
Val1
Name2
Val2
SOAP::Lite will build the internal representation
$VAR1 = [
bless( {
'Lis
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
luk
Webmaster, The Calgary Sun
http://www.calgarysun.com
[EMAIL PROTECTED]
Ph: 403-250-4371
-Original Message-
From: Drew Wilson [mailto:[EMAIL PROTECTED] Sent: March-16-07 1:15 PM
To: modperl mod_perl
Subject: UTF8 fun with SOAP::Lite and mod_perl 1.3.33
I'm trying to track down a Unicode
OK, I think I've got something that I'm happy with.
There were a couple problems with how my SOAP::Lite handler was
processing UTF8.
First, SOAP::Lite encodes extended 8-bit strings as base 64. What a
pain. I found this workaround <http://london.pm.org/pipermail/
london.p
x27;Drew Wilson'; 'modperl mod_perl'
Subject: Re: UTF8 fun with SOAP::Lite and mod_perl 1.3.33
FWIW, if you tell the client to render the page as UTF-8, your 'broken'
mod_perl version works correctly. The content-type header is
instructing the client to render the page
=171082&x=articles&s=showbiz
Hey! Mod_perl guys! Can you say "reproducibility"?
--Aaron Hawryluk
Webmaster, The Calgary Sun
http://www.calgarysun.com
[EMAIL PROTECTED]
Ph: 403-250-4371
-Original Message-
From: Drew Wilson [mailto:[EMAIL PROTECTED]
Sent: March-16-07 1:15 P
Drew Wilson wrote:
But I cannot figure out WHERE this conversion is being done.
I've picked through SOAP::Lite enough to know that unicode conversions
are probably more than it knows how to handle.
However, SOAP::Data::encode_data uses a regex to munge data. Perhaps
there's a
6-07 1:15 PM
To: modperl mod_perl
Subject: UTF8 fun with SOAP::Lite and mod_perl 1.3.33
I'm trying to track down a Unicode malcoding problem using SOAP::Lite
0.67 with mod_perl 1.29 on apache 1.3.33.
The problem I'm seeing is my UTF8 strings are transformed in the http
response.
I'm trying to track down a Unicode malcoding problem using SOAP::Lite
0.67 with mod_perl 1.29 on apache 1.3.33.
The problem I'm seeing is my UTF8 strings are transformed in the http
response.
The strings look correct inside the perl space (e.g. printing to
STDERR inside the pe
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
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');
i
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(''
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
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
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
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
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..
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
> > experie
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 thi
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 X
bject method "dir_config" via package "Apache2::RequestRec"
> > at /usr/lib/perl5/vendor_perl/5.8.8/SOAP/Transport/HTTP.pm line 653.\n
> >
> > Any ideas? Is this a bug in mod_perl/Apache? Am I doing something
> > Stupid?
>
> $r->dir_config isn&
tice] Apache/2.2.3 (Unix) mod_perl/2.0.3
> Perl/v5.8.8 configured -- resuming normal operations
> [Wed Dec 06 08:02:48 2006] [error] [client 204.107.148.116] Can't locate
> object method "dir_config" via package "Apache2::RequestRec"
> at /usr/lib/perl5/vendor_p
6] [notice] Apache/2.2.3 (Unix) mod_perl/2.0.3
Perl/v5.8.8 configured -- resuming normal operations
[Wed Dec 06 08:02:48 2006] [error] [client 204.107.148.116] Can't locate
object method "dir_config" via package "Apache2::RequestRec"
at /usr/lib/perl5/vendor_perl/5.8.8/SOAP
gt; I tried the fedora mod_perl (2.0.2) and I built a 2.0.3 mod_perl package
> and neither one worked.
>
> Fresh install of Fedora Core 6.
> Install mod_perl, perl-SOAP-Lite Fedora packages.
>
> Setup SOAP::Lite according to documentation by adding this to Apache's
&
Tom Cross wrote:
Ok, I tried that. Then I even setup the perl-status thing that shows my
current status. perl-status shows that Apache2::RequestRec is one of
the modules currently loaded and it even knows about "dir_config"!
diff lib/SOAP/Transport/HTTP.pm lib/SOAP/Transport/H
On Tue, 2006-12-05 at 12:41 -0800, Philip M. Gollucci wrote:
> Preload Apache2::RequestRec () in your startup.pl or in your httpd.conf
> via PerlModule.
>
> Its probably something Apache::SOAP should be doing for you. If this
> fixes it, you should submit a patch to Apache::SOA
lt a 2.0.3 mod_perl package
and neither one worked.
Fresh install of Fedora Core 6.
Install mod_perl, perl-SOAP-Lite Fedora packages.
Setup SOAP::Lite according to documentation by adding this to Apache's
conf:
SetHandler perl-script
PerlHandler Apache::SOAP
PerlSetVar dis
ackage
and neither one worked.
Fresh install of Fedora Core 6.
Install mod_perl, perl-SOAP-Lite Fedora packages.
Setup SOAP::Lite according to documentation by adding this to Apache's
conf:
SetHandler perl-script
PerlHandler Apache::SOAP
PerlSetVar dispatch_to "/h
e modulein the downloaded distro is used and not the one already installed (and
patched).TomGeorg Grabler schrieb:> Followed your advice, i filed a bug report.>> Georg>> On 8/2/06, *Tom Schindl* <[EMAIL PROTECTED]
> [EMAIL PROTECTED]>> wrote:>> Would you mind fi
require Apache;
// ...
}
I'd advice the Apache2::SOAP maintainer that he will get into trouble
when mp1 and mp2 are installed in the same tree.
Thanks, Tom! I'll incorporate that change and upload a
new Apache2-SOAP version in the next couple of days.
--
best regards,
Randy
ed (and
patched).
Tom
Georg Grabler schrieb:
> Followed your advice, i filed a bug report.
>
> Georg
>
> On 8/2/06, *Tom Schindl* <[EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>> wrote:
>
> Would you mind filing a bug against Apache2::SOAP. Then Randy ma
Followed your advice, i filed a bug report.GeorgOn 8/2/06, Tom Schindl <[EMAIL PROTECTED]> wrote:
Would you mind filing a bug against Apache2::SOAP. Then Randy may fixhis dirty hack to determine MP2-Version ;-)
http://rt.cpan.org/Public/Dist/Display.html?Name=Apache2-SOAPTomGeorg Grabler s
Would you mind filing a bug against Apache2::SOAP. Then Randy may fix
his dirty hack to determine MP2-Version ;-)
http://rt.cpan.org/Public/Dist/Display.html?Name=Apache2-SOAP
Tom
Georg Grabler schrieb:
> Well, i kicked out the old code which seemed to be buggy of
> Apache2::SOAP, and us
Well, i kicked out the old code which seemed to be buggy of Apache2::SOAP, and used the codepiece you gave me to determine which modperl version i'm using.What shall i say, except thank you very much, Tom. It works perfectly now, and all the day searching for a mistake i did in my s
Georg Grabler schrieb:
> A the logfile says, i execute the method using Apache2.
>
> For a better understanding:
>
> my $cl = ($self->{'MOD_PERL_VERSION'} == 1) ?
> $r->header_in('Content-length') : $r->headers_in->{'Content-length
A the logfile says, i execute the method using Apache2.For a better understanding: my $cl = ($self->{'MOD_PERL_VERSION'} == 1) ? $r->header_in('Content-length') : $r->headers_in->{'Content-length'};
This is the code Apache2::SOAP module uses for de
2006] [error] [client 127.0.0.1 <http://127.0.0.1>]
> Can't locate object method "header_in" via package "Apache2::RequestRec"
> at /home/ggrabler/Apache2-SOAP-0.71/blib/lib/SOAP/Transport/HTTP2.pm
> line 96.\n
Well you are true the method is misspelled.
http://p
"Apache2::RequestRec" at /home/ggrabler/Apache2-SOAP-0.71/blib/lib/SOAP/Transport/HTTP2.pm line 96.\n[Wed Aug 02 10:15:16 2006] [error] [client
127.0.0.1] Can't locate object method "header_in" via package "Apache2::RequestRec" at /home/ggrabler/Apache2-
SOAP-0.
On Tuesday 01 August 2006 16:43, Davood Firoozian wrote:
> libapache2-mod-perl2
Debian stable unfortunately has a pre-release version of
libapache2-mod-perl2. It is really, really not want you want to work
with, so you may have to use backports. You'll find one at
http://www.backports.org/ We'r
Hello,I'm tring to config a Apache2::SOAP Module over a debian box:apache2apache2-commonapache2-mpm-prefork or apache2-mpm-worker or apache2-mpm-perchild (all tested)libapache2-mod-perl2
-- Kindly RegardsDavood FiroozianProud DeveloperOzino Group http://www.ozino.com
a
leak of around 25-30k. The module is as follows:
package Apache::EVC3;
use Apache::Const qw(OK REDIRECT);
You're using an ancient version of mod_perl pre 2.0 RC5
This might be a leak thats been fixed.
READ:
http://perl.apache.org/docs/2.0/rename.html
use SOAP::Lite;
sub handler {
Title: PerlAccessHandler Leaks memory when using Soap::Lite to make a web service call (win32)
I've been trying to solve this problem for a week now with no luck
I have an apache 2.x web server running mod_perl.
I'm trying to write a perlaccesshandler that has to make a web se
> with Modules::SoapServer containing:
>
>
> my $server = SOAP::Transport::HTTP::Apache -> dispatch_to("SoapCalls");
>
> sub handler { $server->handler(@_) }
>
your handler() subroutine needs to be Apache::Filter aware. you can find
out how to do tha
why not just use mod_deflate ?
On Apr 25, 2006, at 5:42 AM, Alex Greg wrote:
Hi,
We're using SOAP::Transport::HTTP::Apache and I want to enable HTTP
compression. We're using it as follows:
| - - - - - - - - - - - - - - - - - - - -
| RoadSound.com / Indie-Rock.net
| Collaborat
Hi,
We're using SOAP::Transport::HTTP::Apache and I want to enable HTTP
compression. We're using it as follows:
PerlSendHeader On
SetHandler perl-script
PerlHandler Modules::SoapServer
Order deny,allow
Allow from all
with Modules::SoapServer
John ORourke wrote:
This is a rare skill set to see on a job spec so I thought I'd post it
to the list, might be useful to someone...
You may also want to point these people to htpp://jobs.perl.org/, if
they don't already know about it.
- Perrin
nment. You must have expert
level C and Perl. Have experience of Web services programming,
particularly using SOAP. CML, HTML, CSS,PHP, PostgreSQL and MYSQL.
You must have experience of Agile methods. Proven team leading
experience. Must have a 1st or 2(i) in Computer Science, Maths or
Physic
On Tue, 20 Dec 2005 06:43:57 -0800 (PST)
jing han <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I meet a problem of "Can't locate object method
> 'dir_config' via package 'Apache2::SOAP'".
>
> I installed httpd-2.0.54-10.i386.rpm and
>
Hello,
I meet a problem of "Can't locate object method
'dir_config' via package 'Apache2::SOAP'".
I installed httpd-2.0.54-10.i386.rpm and
mod_perl-2.0.0-0.rc5.3.i386.rpm with Fedora Core 4
CDs. And then I downloaded and installed
Apache-test-1.26.tar.gz and
Ok, I've figured out why PerlOptions -ParseHeaders
does not work. It should be
PerlOptions +ParseHeaders
- Original Message -
From:
Foo Ji-Haw
To: modperl@perl.apache.org
Sent: Friday, November 25, 2005 7:00
PM
Subject: how to disable sending of
headers?
Hi all, I'm using Apache+MP2+Soap::Lite as a
service platform.
One thing I notice is that my soap method returns
the standard headers, plus the ones that the soap generates. Below is a sample
of the actual response:
Date: Fri, 25 Nov 2005 10:56:32 GMTServer:
Apache/2.0.52 (Win32) mod
Do they have a SOAP::Lite::Simple::Java as
well?
- Original Message -
From:
Leo Lapworth
To: John ORourke
Cc: mod_perl Mailing List
Sent: Friday, September 23, 2005 4:06
PM
Subject: Re: Apache2::SOAP newbie
On 23 Sep 2005, at 08:44, John ORourke
On 23 Sep 2005, at 08:44, John ORourke wrote:I've now got my Apache2::SOAP-based server talking with C#.NET clients, and auto-generating the WSDL using Pod::WSDL when they call http://url?wsdl, which is nice!Probably not relevant for you atm - but check out SOAP::Lite::Simple - and SOAP:
Thanks Foo,
I've now got my Apache2::SOAP-based server talking with C#.NET clients,
and auto-generating the WSDL using Pod::WSDL when they call
http://url?wsdl, which is nice!
I'm now finding out about all the SOAP::Lite overrides and methods I can
use to return a .NET DataSet obj
Yes, you need to do a bit of 'massaging' of the output SOAP XML to make the
.NET server happy. Most of the simple function calls may not work, so you
have to do a bit of a runaround instead. Let me know if you need some
examples.
- Original Message -
From: "Kurt Hansen&quo
John ORourke wrote:
A little OT, but has anyone got any experience or examples that use
Apache2::SOAP or some other means to create a mod_perl SOAP server?
I'm rushing headlong into SOAP development and (as one does) tackled
something nice and big for my first project - a Perl SOAP s
A little OT, but has anyone got any experience or examples that use
Apache2::SOAP or some other means to create a mod_perl SOAP server?
I'm rushing headlong into SOAP development and (as one does) tackled
something nice and big for my first project - a Perl SOAP server that
receives and
On Tue, 23 Aug 2005, Steve Baker wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
[EMAIL PROTECTED] wrote:
| As Perrin mentioned, this may not be a problem with mod_perl
| specifically, so it may be worth asking on the soap-lite
| mailing list. Just to verify this, I've placed at
|
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
[EMAIL PROTECTED] wrote:
| As Perrin mentioned, this may not be a problem with mod_perl
| specifically, so it may be worth asking on the soap-lite
| mailing list. Just to verify this, I've placed at
| http://people.apache.org/~randyk/
| a file
On Mon, 22 Aug 2005, Steve Baker wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I've continued to work on this, but have been unable to progress past
this point. mod_perl seems to work just fine on both systems, except
when it comes to SOAP, in which case I'm getting exactl
On Mon, 22 Aug 2005, Perrin Harkins wrote:
On Mon, 2005-08-22 at 09:37 -0700, Steve Baker wrote:
While I'm familiar with Perl, I am less familiar with SOAP and
mod_perl.
Is there a SOAP-Lite support list? Your problem does not seem to be
with mod_perl, but rather with SOAP-Lite
On Mon, 2005-08-22 at 09:37 -0700, Steve Baker wrote:
> I've continued to work on this, but have been unable to progress past
> this point. mod_perl seems to work just fine on both systems, except
> when it comes to SOAP, in which case I'm getting exactly the same errors
> o
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I've continued to work on this, but have been unable to progress past
this point. mod_perl seems to work just fine on both systems, except
when it comes to SOAP, in which case I'm getting exactly the same errors
on both systems. I mus
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
[EMAIL PROTECTED] wrote:
| On Thu, 18 Aug 2005, Steve Baker wrote:
|
| [ ... ]
|
|> This is my client now:
|>
|> use SOAP::Lite +trace => [qw(all)];
|>
|> my $soap = SOAP::Lite->uri('http:///Demo')
|> ~->
On Thu, 18 Aug 2005, Steve Baker wrote:
[ ... ]
This is my client now:
use SOAP::Lite +trace => [qw(all)];
my $soap = SOAP::Lite->uri('http:///Demo')
~->proxy('http:///steve/rpc/')->on_fault(
~sub {
~my ($soap, $res) = @_;
~die ref
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
[EMAIL PROTECTED] wrote:
|>I call it like this:
|>
|> use SOAP::Lite +trace => [qw(all)];
|>
|> my $soap = SOAP::Lite->uri('http:///Demo');
|> my $proxy = $soap->proxy('http:///steve/rpc/');
|>
Steve Baker wrote:
http://www.cm.aol.com/steve/rpc/ HTTP/1.1
Accept: text/xml
Accept: multipart/*
Content-Length: 448
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://www.cm.aol.com/Demo#hi";
http://www.w3.org/1999/XMLSchema-instance";
xmlns:SOAP-ENC="http://sche
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
[EMAIL PROTECTED] wrote:
| On Thu, 18 Aug 2005, Steve Baker wrote:
|
|> -BEGIN PGP SIGNED MESSAGE-
|> Hash: SHA1
|>
|> I am trying to get SOAP to work under mod_perl. Googling about and
|> reading what I can find on it, it l
> I call it like this:
>
> use SOAP::Lite +trace => [qw(all)];
>
> my $soap = SOAP::Lite->uri('http:///Demo');
>my $proxy = $soap->proxy('http:///steve/rpc/');
>my $obj = $proxy->hi();
>print $obj->result;
try
On Thu, 18 Aug 2005, Steve Baker wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I am trying to get SOAP to work under mod_perl. Googling about and
reading what I can find on it, it looks like there are many ways to do
this, but they are all giving me the same (non-working) result.
I
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
[EMAIL PROTECTED] wrote:
| On Thu, 2005-08-18 at 09:40 -0700, Steve Baker wrote:
|
|>I have two systems I'm trying to do this on: A Mac with Apache
|>1.2.33/mod_perl 1.29, and a Soalris 8 box with Apache 1.1.28 and
|>mod_perl 1.27.
|
|
| One thing tha
On Thu, 2005-08-18 at 09:40 -0700, Steve Baker wrote:
> I have two systems I'm trying to do this on: A Mac with Apache
> 1.2.33/mod_perl 1.29, and a Soalris 8 box with Apache 1.1.28 and
> mod_perl 1.27.
One thing that might help is to use the most recent apache and mod_perl
versions (in the 1.x se
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I am trying to get SOAP to work under mod_perl. Googling about and
reading what I can find on it, it looks like there are many ways to do
this, but they are all giving me the same (non-working) result.
I have two systems I'm trying to do this
On Wed, 15 Jun 2005, Foo Ji-Haw wrote:
> Hello Randy,
>
> Though I've not gotten it up yet, thanks for coming up with Apache2::SOAP!
>
> The link you gave
> (http://sourceforge.net/mailarchive/forum.php?forum=soaplite-dev) seems
> to be either mispelled or outdated. So
Hello Randy,
Though I've not gotten it up yet, thanks for coming up with Apache2::SOAP!
The link you gave
(http://sourceforge.net/mailarchive/forum.php?forum=soaplite-dev) seems
to be either mispelled or outdated. Sorry. Got a new one?
I thought it would make sense to have Apache2::SO
On Wed, 15 Jun 2005, Foo Ji-Haw wrote:
> Hello Randy,
>
> Though I've not gotten it up yet, thanks for coming up with Apache2::SOAP!
>
> The link you gave
> (http://sourceforge.net/mailarchive/forum.php?forum=soaplite-dev) seems
> to be either mispelled or outdated. So
Hello Randy,
Though I've not gotten it up yet, thanks for coming up with Apache2::SOAP!
The link you gave
(http://sourceforge.net/mailarchive/forum.php?forum=soaplite-dev) seems
to be either mispelled or outdated. Sorry. Got a new one?
I thought it would make sense to have Apache2::SO
Randy Kobes wrote:
> On Tue, 14 Jun 2005, Foo Ji-Haw wrote:
>
>>Hi guys,
>>
>>[...]
>>
>>I use ActivePerl (on Windows), and it seems that I can't
>>do a 'ppm install apache2-soap'; it's not on their library
>>list.
The current
On Tue, 14 Jun 2005, Foo Ji-Haw wrote:
> Hi guys,
>
> I'm not exactly new to modperl, but I'm thinking of having
> Apache/mp2 host soap services rather than start up the
> daemon via the command line.
>
> The latest ActivePerl comes only with Apache::SOAP. I
> t
Hi guys,
I'm not exactly new to modperl, but I'm thinking of having Apache/mp2
host soap services rather than start up the daemon via the command line.
The latest ActivePerl comes only with Apache::SOAP. I think this is not
the right one for MP2. A search on CPAN shows a Apache2::S
Juan Natera wrote:
Hello,
I have a few custom modules that work nicely in a standalone SOAP::Lite
server. After deciding we needed the performance boost of moving it to
mod_perl 2, we have encountered some issues.
I am getting this error in the apache error_log:
DBI connect(''
Hello,
I have a few custom modules that work nicely in a standalone SOAP::Lite
server. After deciding we needed the performance boost of moving it to
mod_perl 2, we have encountered some issues.
I am getting this error in the apache error_log:
DBI connect('','username'
Perhaps I'm missing something in what you're trying to do, but you might
try Apache::SOAP. Apache::SOAP makes it super-easy to call perl
subroutines running under mod_perl.
I have something like this in my apache config, which maps requests to a
Perl module:
SetHandler p
Ken Miller <[EMAIL PROTECTED]> writes:
[...]
> So, what's the solution to this?
Consider upgrading to libapreq2/mp2, or use Apache::args() instead
of Apache::Request::args(). The code in question *might* work with
libapreq1 if you replace $r->args with $r->SUPER::args, but I'm
not sure.
--
Jo
On Thu, 10 Jun 2004, Issac Goldstand wrote:
> I seem to recall someone saying that they'd ported
> SOAP::Transport::HTTP::Apache for mp2, but I can't seem to
> find the relevant post(s)... Am I remembering correctly?
>
> Issac
The patches for SOAP::Lite on mp2 are a
I seem to recall someone saying that they'd ported
SOAP::Transport::HTTP::Apache for mp2, but I can't seem to find the relevant
post(s)... Am I remembering correctly?
Issac
--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl
On Wed, 5 May 2004, Issac Goldstand wrote:
> [snip]
>
> > I believe that
> > some patches to SOAP::Lite (specifically, in
> > SOAP::Transport::HTTP) are needed to work with mod_perl 2.
>
> [snip]
>
> Has someone prepared patches for mp2 already? Or are you
[snip]
> I believe that
> some patches to SOAP::Lite (specifically, in
> SOAP::Transport::HTTP) are needed to work with mod_perl 2.
[snip]
Has someone prepared patches for mp2 already? Or are you just saying "it is
something which needs to be done"?
--
Re
1 - 100 of 103 matches
Mail list logo