I am trying to do add optional attributes if the user invoking my ... $method = SOAP::Data->name('find_business39;) ->attr({xmlns => 'urn:something', generic =>...
3492
Duncan Cameron
duncan_camer...
Apr 9, 2004 1:28 am
... It is slightly clumsy but this should do what you want $method->attr({%{$method->attr}, maxRows => $maxRows}); Regards Duncan...
3493
Jim Lancaster
jlancasterus
Apr 9, 2004 6:12 pm
I've created a soap client & server and it works when the server is a local daemon. However, I am having trouble moving the server to Win32-Apache...
3494
Jim Lancaster
jlancasterus
Apr 9, 2004 8:17 pm
Dangnabbit. All I had to do is finally post the question and I figured it out. I changed -> dispatch_to('/Development/soap/lib39;); to ->...
3495
perlmunger
Apr 9, 2004 9:24 pm
It seems like this should be obvious (and it's probably just me), but I'm not sure how to see the actual SOAP message being sent from the server in their raw...
3496
amigo_boy2000
Apr 9, 2004 10:10 pm
... Do you mean you just want to see it from your terminal window when you execute the client? I found the following somewhere. The "trace" part of it shows...
3497
Matt Long
perlmunger
Apr 9, 2004 10:30 pm
The trace was what I needed. Thank you! -Matt ... From: amigo_boy2000 [mailto:amigo_boy2000@...] Sent: Friday, April 09, 2004 3:10 PM To:...
3498
Jim Lancaster
jlancasterus
Apr 9, 2004 10:36 pm
I see in a thread from jan 2003 that Paul was working on support for mod_perl 2. Does anyone know if that support was incorporated into the 0.60a release...
3499
bklingen
Apr 10, 2004 12:27 am
I'm trying to get SOAP::Lite client to work with WASP 4.7.1 server. ... !/usr/bin/perl -w # use SOAP::Lite soapversion => '1.2' => +trace; use SOAP::Lite...
3500
shahada
Apr 12, 2004 4:54 am
I encountered some weird problems with escaping the "&" (ampersand) and "<" (lesser-than) characters. I am using SOAP-Lite 0.60 and Perl 5.8.3, and viewing the...
3501
Rutger Wessels
rarwes
Apr 12, 2004 8:16 am
... Hi, I had the same problem... The reason that it confuses the XML parser. I have a SOAP::Lite client that sends XML message to a server. My work-around is...
3502
Duncan Cameron
duncan_camer...
Apr 12, 2004 11:08 am
... SOAP::Lite doesn't automtically recognise the 'xsd:string39; value for a type, you simply need to use type => 'string39; and the value will be escaped properly...
3503
Byrne Reese
byrnereese
Apr 12, 2004 11:22 pm
I don't believe so. I am in need of interested developers to help out in this arena. One developer has chipped in to provide DIME support, which will get ...
3504
Byrne Reese
byrnereese
Apr 12, 2004 11:24 pm
WSDL Support is not currently being maintained via the ->service subroutine. It is something that I would like to focus on, but have instead turned my...
3505
Joe McMahon
pemungkah
Apr 13, 2004 2:28 pm
On Tuesday, April 13, 2004, at 08:26 AM, soaplite@yahoogroups.com ... I've got a patch to enable relative-path WSDL support available if any wants it; in...
3506
Alasdair Allan
dr_aallan
Apr 13, 2004 2:33 pm
... You should probably pass it onto Byrne to be integrated into the next SOAP::Lite release... Al....
3507
Paul Harman
seancortan
Apr 13, 2004 2:40 pm
From: Joe McMahon [mailto:mcmahon@...] ... Oooh, sounds v. interesting to me! I have a few structures like this that I'm trying to retrieve via...
3508
kayaelle02
Apr 15, 2004 3:48 pm
Hi, The script I'm posting to is requiring that I wrap my keys and values in an element called <xmlString>. When I try this, the transmission dies with this...
3509
jcowan@...
johnwcowan
Apr 15, 2004 4:24 pm
... Correct. Names (that is, element names, attribute names, namespace prefixes, and a few other less commonly used cases) that begin with "xml" (or "XML" or...
3510
highhair20
Apr 15, 2004 9:02 pm
Patches can be found at sourceforge http://sourceforge.net/projects/soaplite/ Under PATCHES (request id: 935919) Any comments would be greatly appreciated. ...
3511
blueswimhorse
Apr 15, 2004 11:38 pm
I am a noob .. Want to write python bindings for a bunch of perl modules which will comunicate using soap::lite Plan on using cgi , soaplite and soappy .. Is...
3512
opus23k
Apr 16, 2004 10:48 pm
Well, I'm back. Lost an confused as usual. I'm trying to use the Microsoft WebService Behavior to call my perl program which uses Soap::Lite. I'm starting out...
3513
perlgirl00
Apr 19, 2004 10:56 pm
Hello All, I was trying to find a tool to generate WSDL from some services implemented using SOAP::Lite. I have to use some of these using an apache axis...
3514
Byrne Reese
byrnereese
Apr 21, 2004 2:33 pm
This is extraordinarily difficult using Perl5 - that is because Perl5 is incredibly loosely typed. Furthermore, there is no [easy] way to introspect a perl...
3515
Mike Schroeder
MikeSchroeder@...
Apr 21, 2004 2:46 pm
One idea I am trying out is to add an inline YAML definition of each method (in a POD section), and then write a WSDL generator that uses the YAML definition....
3516
Joe Breeden
joeheptn
Apr 21, 2004 2:52 pm
I would be very interested in seeing this option explored as I am having issues with implementing SOAP::Lite services in out environment (mixed with Perl,...
3517
Mike Schroeder
MikeSchroeder@...
Apr 21, 2004 3:12 pm
Joe -- attached is an incomplete script (I hacked out some internal code) that recurses a directory (with File::Find) extracts the YAML api_spec section (using...
3518
Alasdair Allan
dr_aallan
Apr 21, 2004 3:37 pm
... I'd also be very interested in seeing this explored, it sounds like a reasonable approach. If I get time over the weekend I'll see if I can have a look at...
3519
Joe Breeden
joeheptn
Apr 21, 2004 7:16 pm
Hello All, I am implementing a SOAP::Lite service that will interact with .Net clients and Apache Axis clients. My configuration is as follows: Apache 1.3.29 ...
3520
Byrne Reese
byrnereese
Apr 21, 2004 9:04 pm
One can see that great minds think alike. This too is similar to what I was considering. I honestly didn't make the leap to YAML (shame on me) - I was using...