[offtopic] Re: Problem installing SOAP::SOM, in dependency SOAP::Lite

2013-06-01 Thread Fred Moyer
[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

Problem installing SOAP::SOM, in dependency SOAP::Lite

2013-06-01 Thread André Warnier
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) :

Re: SOAP Lite handler and including other files without apache restart

2008-12-11 Thread 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 pull in with require has

Re: SOAP Lite handler and including other files without apache restart

2008-12-11 Thread Perrin Harkins
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

Re: SOAP Lite handler and including other files without apache restart

2008-12-11 Thread 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"

Re: SOAP Lite handler and including other files without apache restart

2008-12-11 Thread 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") in myhandler witho

Re: SOAP Lite handler and including other files without apache restart

2008-12-11 Thread Perrin Harkins
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"

SOAP Lite handler and including other files without apache restart

2008-12-11 Thread b. nyec
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

RE: mp2 + SOAP - SOAP calls fail randomly

2008-08-25 Thread b. nyec
. - 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

RE: mp2 + SOAP - SOAP calls fail randomly

2008-08-22 Thread b. nyec
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 []

RE: mp2 + SOAP - SOAP calls fail randomly

2007-04-26 Thread Tom Shaw
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

mp2 + SOAP - SOAP calls fail randomly

2007-04-26 Thread Tom Shaw
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

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

2007-04-05 Thread Robert Landrum
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

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

Re: UTF8 fun with SOAP::Lite and mod_perl 1.3.33

2007-03-16 Thread Drew Wilson
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

Re: UTF8 fun with SOAP::Lite and mod_perl 1.3.33

2007-03-16 Thread Drew Wilson
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

UTF-8 fun [was: UTF8 fun with SOAP::Lite and mod_perl 1.3.33]

2007-03-16 Thread Aaron Hawryluk
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

Re: UTF8 fun with SOAP::Lite and mod_perl 1.3.33

2007-03-16 Thread Chris Jacobson
=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

Re: UTF8 fun with SOAP::Lite and mod_perl 1.3.33

2007-03-16 Thread Robert Landrum
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

RE: UTF8 fun with SOAP::Lite and mod_perl 1.3.33

2007-03-16 Thread Aaron Hawryluk
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.

UTF8 fun with SOAP::Lite and mod_perl 1.3.33

2007-03-16 Thread Drew Wilson
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

Re: [OT] SOAP::Lite help

2007-03-13 Thread Martin Moss
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

Re: [OT] SOAP::Lite help

2007-03-13 Thread John ORourke
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

SOAP::Lite help

2007-03-13 Thread Martin Moss
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(''

Re: SOAP

2007-03-01 Thread Jonathan Vanasco
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

Re: SOAP

2007-03-01 Thread Drew Wilson
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

Re: SOAP

2007-03-01 Thread Perrin Harkins
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

Re: SOAP

2007-03-01 Thread John ORourke
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

Re: SOAP

2007-03-01 Thread Jonathan Vanasco
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..

Re: SOAP

2007-03-01 Thread Martin Moss
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

Re: SOAP

2007-03-01 Thread Perrin Harkins
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

SOAP

2007-03-01 Thread Martin Moss
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

Re: Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-06 Thread Tom Cross
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&

Re: Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-06 Thread Geoffrey Young
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

Re: Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-06 Thread Randy Kobes
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

Re: Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-06 Thread Tom Cross
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 &

Re: Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-05 Thread Philip M. Gollucci
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

Re: Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-05 Thread Tom Cross
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

Re: Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-05 Thread Philip M. Gollucci
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

Fedora Core 6, SOAP::Lite and mod_perl -- does this work?

2006-12-05 Thread Tom Cross
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Georg Grabler
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Randy Kobes
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Tom Schindl
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Georg Grabler
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Tom Schindl
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Georg Grabler
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Tom Schindl
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Georg Grabler
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

Re: Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Tom Schindl
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

Problem with Apache 2.2.2 / modperl 2.0.2 and Apache2::SOAP

2006-08-02 Thread Georg Grabler
"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.

Re: mod perl Apache2::SOAP Segmentation fault

2006-08-01 Thread Kjetil Kjernsmo
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

mod perl Apache2::SOAP Segmentation fault

2006-08-01 Thread Davood Firoozian
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

Re: PerlAccessHandler Leaks memory when using Soap::Lite to make a web service call (win32)

2006-05-05 Thread Philip M. Gollucci
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 {

PerlAccessHandler Leaks memory when using Soap::Lite to make a web service call (win32)

2006-05-05 Thread damion.fusco
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

Re: Compressing response from SOAP::Transport::HTTP::Apache

2006-04-25 Thread Geoffrey Young
> 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

Re: Compressing response from SOAP::Transport::HTTP::Apache

2006-04-25 Thread Jonathan Vanasco
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

Compressing response from SOAP::Transport::HTTP::Apache

2006-04-25 Thread Alex Greg
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

Re: mod_perl/Perl/SOAP/XML opportunities in UK

2006-01-05 Thread Perrin Harkins
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

mod_perl/Perl/SOAP/XML opportunities in UK

2006-01-05 Thread John ORourke
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

Re: Can't locate object method "dir_config" via package "Apache2::SOAP"

2005-12-20 Thread Frank Wiles
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 >

Can't locate object method "dir_config" via package "Apache2::SOAP"

2005-12-20 Thread jing han
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

Re: how to disable sending of headers? soap::lite sends its own headers

2005-11-27 Thread Foo Ji-Haw
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?

how to disable sending of headers? soap::lite sends its own headers

2005-11-25 Thread Foo Ji-Haw
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

Re: Apache2::SOAP newbie

2005-09-23 Thread Foo Ji-Haw
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

Re: Apache2::SOAP newbie

2005-09-23 Thread Leo Lapworth
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:

Re: Apache2::SOAP newbie

2005-09-23 Thread John ORourke
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

Re: Apache2::SOAP newbie

2005-09-22 Thread Foo Ji-Haw
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

Re: Apache2::SOAP newbie

2005-09-22 Thread Kurt Hansen
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

Apache2::SOAP newbie

2005-09-22 Thread John ORourke
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

Re: Can't get SOAP to work under mod_perl

2005-08-23 Thread Randy Kobes
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 |

Re: Can't get SOAP to work under mod_perl

2005-08-23 Thread Steve Baker
-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

Re: Can't get SOAP to work under mod_perl

2005-08-22 Thread Randy Kobes
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

Re: Can't get SOAP to work under mod_perl

2005-08-22 Thread Larry Leszczynski
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

Re: Can't get SOAP to work under mod_perl

2005-08-22 Thread Perrin Harkins
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

Re: Can't get SOAP to work under mod_perl

2005-08-22 Thread Steve Baker
-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

Re: Can't get SOAP to work under mod_perl

2005-08-19 Thread Steve Baker
-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') |> ~->

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Randy Kobes
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

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Steve Baker
-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/'); |>

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Kurt Hansen
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

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Steve Baker
-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

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Geoffrey Young
> 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

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Randy Kobes
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

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Steve Baker
-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

Re: Can't get SOAP to work under mod_perl

2005-08-18 Thread Perrin Harkins
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

Can't get SOAP to work under mod_perl

2005-08-18 Thread Steve Baker
-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

Re: [mp2] how to install apache2::soap via activeperl

2005-06-15 Thread Randy Kobes
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

Re: [mp2] how to install apache2::soap via activeperl

2005-06-15 Thread Foo Ji-Haw
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

Re: [mp2] how to install apache2::soap via activeperl

2005-06-14 Thread Randy Kobes
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

Re: [mp2] how to install apache2::soap via activeperl

2005-06-14 Thread Foo Ji-Haw
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

Re: [mp2] how to install apache2::soap via activeperl

2005-06-14 Thread Philippe M. Chiasson
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

Re: [mp2] how to install apache2::soap via activeperl

2005-06-14 Thread Randy Kobes
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

[mp2] how to install apache2::soap via activeperl

2005-06-14 Thread Foo Ji-Haw
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

Re: MP2, SOAP::Lite and Oracle

2005-02-05 Thread Philippe M. Chiasson
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(''

MP2, SOAP::Lite and Oracle

2005-02-04 Thread Juan Natera
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'

Re: SOAP::Lite, libapreq not playing together?

2004-10-01 Thread Colin Murtaugh
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

Re: SOAP::Lite, libapreq not playing together?

2004-09-30 Thread Joe Schaefer
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

Re: SOAP::Lite on mp2

2004-06-10 Thread Randy Kobes
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

SOAP::Lite on mp2

2004-06-10 Thread Issac Goldstand
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

Re: SOAP::Lite dispatching problems

2004-05-05 Thread Randy Kobes
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

Re: SOAP::Lite dispatching problems

2004-05-05 Thread Issac Goldstand
[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   2   >