Hello, I have written some (perhaps too clever) code that attempts to enforce a strict API when calling a web service. Users must pass in blessed hashrefs and...
6474
precisionlyte
Apr 23, 2010 2:59 pm
OK after a bit of help and some more searching, I've come up with a method that works. I've created a custom serializer and over-ridden envelope(). Then it's...
6475
jcroall
Apr 29, 2010 11:42 pm
Hi All, I have some code that was working perfectly with SOAP::Lite 0.708, but fails with everything starting from 0.708. The problem happens when an array is...
6476
Jo Rhett
jorhett
Apr 30, 2010 4:53 pm
I'm having a bit of trouble where I'm continually having to check if the result is an array or not to deal with it. Is there some way to always get an array,...
6477
andrew.smith@...
andrew.smith...
May 5, 2010 9:46 pm
I've been trying to figure this out on my own, e.g. by reading this mail list and sites like: ...
6478
IrakliyS
irasha
May 11, 2010 4:42 pm
Trying to use SOAP::Lite with .NET based webservice as described here: http://msdn.microsoft.com/en-us/library/ms995764.aspx, getting an error. "Element...
6479
rahed
raherh
May 16, 2010 5:49 pm
... Have you tried to encode a Perl string into octets like this? use Encode; $string = Encode::encode('utf839;,$string) This will encode perl characters into...
6480
captcuffs
May 17, 2010 2:15 pm
I am issuing a SOAP request and receiving a response but when SOAP::Lite returns the result structure, the structure is all empty. Issuing print(...
6481
keith5000g
Jul 8, 2010 9:51 pm
I'm able to send SOAP messages to a .NET WCF service via SOAP Lite successfully, unless the message meets these 2 criteria: - contains a less-than bracket < -...
6482
Scott Seely
scott@...
Jul 8, 2010 10:21 pm
Try encoding the < symbol as <. From: soaplite@yahoogroups.com [mailto:soaplite@yahoogroups.com] On Behalf Of keith5000g Sent: Thursday, July 08, 2010 4:02...
6483
kooganani
Jul 8, 2010 10:36 pm
This method shoud work for finding the version number for most modules: $ perl -MSOAP::Lite -e 'print "$SOAP::Lite::VERSION92;n";' 0.66.1 -Aaron...
6484
Thomas Boyda
tjzboyda
Jul 9, 2010 8:53 pm
Hello, I am having an issue with SOAP::Lite - I have a SOAP:Lite HTTP daemon which is to catch an XML document from a hospital system but when receiving the...
6485
Thomas Boyda
tjzboyda
Jul 12, 2010 2:39 pm
Hello, I am still trying to find debug my earlier issues and I ran into another problem. This is in SOAP::Lite version 0.712 Here is the warning/error: Use of...
6486
Thomas
tjzboyda
Jul 12, 2010 10:02 pm
Hello, Is there a way to tell SOAP::Lite server daemon *not* to parse the SOAP body, but just return the body in a variable? SOAP::Lite does not need to...
6487
Jo Rhett
jorhett
Jul 13, 2010 7:11 pm
... Sure. You write some code for the server to do this. You are the programmer. -- Jo Rhett Net Consonance : consonant endings by net philanthropy, open...
6488
Jo Rhett
jorhett
Jul 13, 2010 7:11 pm
... What is the difference between this line and the following? $self->on_action->( $self->action, $method_uri, $method_name); Because the "my $action"...
6489
Thomas Boyda
tjzboyda
Jul 13, 2010 7:20 pm
Jo, Thanks for the response. The code below is not mine it is in SOAP::Lite version 0.712 at line 2674. ... It is probably me that is confused. I am trying to...
6490
Dave Howorth
dhoworth@...
Jul 14, 2010 9:47 am
... I don't believe you are thinking properly about Perl's scope rules. What does this code print? #!/usr/bin/perl use strict; use warnings; sub routine { ...
6491
Thomas Boyda
tjzboyda
Jul 14, 2010 11:32 pm
Dave, On Wed, Jul 14, 2010 at 8:52 AM, Dave Howorth ... I tend to agree that support for SOAP::Lite is patchy - I really like the interface it provides. I was...
6492
Leilani Tubu
leilani.tubu@...
Jul 15, 2010 6:30 pm
To all SOAP::Lite users, Hope you guys can help me with my situation below. We plan to generate a SOAP client using SOAP::Lite. In the "soap address location...
6493
jcmcdevitt
Jul 27, 2010 8:50 pm
I there a way to tell SOAP::Lite not to send the XML declaration? I'm access a web service that throws an http 500 error when it see: <?xml version="1.0"...
6494
Chris McDevitt
jcmcdevitt
Jul 28, 2010 4:37 pm
SOAP::Lite39;s first output is the XML declaration. Is there a way to tell SOAP::Lite not to output the XML declaration and start with the SOAP envelope? I'm...
6495
Martin Busik
mbusik70
Jul 29, 2010 7:47 am
Hi Chris, ... $proxy->encoding(undef); does the job. AFAIK it has no furthe "side effects". Cheers, Martin...
6496
Mithun Bhattacharya
inzoik
Aug 12, 2010 4:46 am
Hi, I am new to SOAP::Lite and I seem to have a weird behaviour which I can't find my way around. Any pointers would be highly appreciated. I am trying to...
6497
fdegirmenci
Aug 12, 2010 4:35 pm
Hi, I'm trying to access a web service using SOAP::Lite and Axis2. There is no problem with the access but returned data seems incomplete. An array with number...
6498
Leilani Tubu
leilani.tubu@...
Aug 25, 2010 8:55 pm
SOAP Hello people, Â I need urgent help on topics below 2: Â 1 ) how to retrieve the SOAP request in XML format ? 2 ) Is there a way to make the more...
6499
Joseph Werner
telcodev@...
Aug 25, 2010 9:44 pm
From the client side If you have completed the request and have the SOM object, you can request ...
6500
dukeofperl
Aug 26, 2010 5:21 pm
My search did not turn up any existing threads on this subject. I'm trying to use the SOAP::Transport::HTTP::Daemon class to establish a standalone server. My...
6501
Dave Howorth
dhoworth@...
Aug 27, 2010 8:39 am
... <snip> ... It works for me, after I removed "use Demo". It's not supposed to return - did you read the docs? [hint "The SOAP::Transport::HTTP::Daemon class...
6502
jaikanth
tinkulkar
Sep 16, 2010 6:20 pm
I am a beginner to using SOAP::Lite with perl Below is a code snippet I am using. I managed to induce a fault by providing an incorrect proxy. use SOAP::Lite; ...