Hi, ... You mean the request does not contain your parameter? Try: $client->call('callOperation339;,SOAP::Data->name('USER' ... Cheers, Martin...
6464
Martin Busik
mbusik70
Mar 27, 2010 9:27 pm
Hi, ... You need to look for "complexType", one possible way is: $proxy->call("qtype:findGtypeByGroupList", SOAP::Data->name("qtype:GtypeListCriteria")->value(...
6465
Joseph Werner
telcodev@...
Mar 28, 2010 3:44 am
Seeing as no-one else is answering... I don't know about the link, but... I did this by hacking the serializer. Inherit a class from the serializer and...
6466
Dave Howorth
dhoworth@...
Mar 29, 2010 9:55 am
... Both pages seem to be in wayback: <http://web.archive.org/web/20071227185025rn_3/articles.techrepublic.com.com/5100-22-1045078.html> ...
6467
Jo Rhett
jorhett
Mar 30, 2010 7:07 am
... Clearly ;-) ... I guess it's not clear to me why there is a difference. Even more so since the documentation seems to indicate that they are equivalent...
6468
Jo Rhett
jorhett
Mar 30, 2010 7:07 am
Well the answer appeared to be "make sure everything has a name". In short, I was trying to pass in an unnamed reference to an array with two Data objects,...
6469
Randy J. Ray
rjray_perl
Apr 6, 2010 6:57 pm
I haven't tried any code on the newest Perl release-candidate, but someone who did sent me the following via Twitter: defined(%hash) is deprecated at ...
6470
Martin Busik
mbusik70
Apr 6, 2010 8:08 pm
Hi, ... I'll demonstrate it with a different example: $auth = SOAP::Header->name("aaa"); $param = SOAP::Data->name("ppp"); $proxy->call($method,$authm,$param) ...
6471
precisionlyte
Apr 19, 2010 4:57 pm
Hi all, I have a problem and can't spot how to solve it. I have Googled and searched the archive here but can't find anything, so my apologies if this has...
6472
Byrne Reese
byrnereese
Apr 19, 2010 5:04 pm
Have you looked at the XML::Sig Perl Module?...
6473
jcroall
Apr 20, 2010 4:37 am
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...