Hi, ... Yepp. It is a good idea to find out, what xml-requests do php and perl generate and then to find out how to manage it to create what's needed. I'm a...
6444
rosko.james
Mar 10, 2010 5:03 pm
An older version of SOAP::Lite (0.60) defaulted to SOAP 1.1 and XMLSchema 1999. However, SOAP::Lite 0.710 still defaults to SOAP 1.1 but use XMLSchema 2001....
6445
dbower01
Mar 17, 2010 4:09 pm
Dear Group, I've been encountering an issue with a particular result being returned empty from a webservice through SOAP::Lite but using the same exact request...
6446
Martin Busik
mbusik70
Mar 17, 2010 4:16 pm
Hi, I suppose, there goes something wrong with your lseSessionId. Have you started a query in your perl code? do you use the same lseSessionID in both...
6447
dbower01
Mar 17, 2010 9:50 pm
Hi Martin, Thanks for the reply, I'm certain that the lseSessionID portion is definitely working correctly because there are several steps prior to the final...
6448
chfoerst@...
chfoerst...
Mar 17, 2010 9:59 pm
Dear group, I asked the same to the perlmonks, but maybe here are more Soaplite specialists :-) So here we go : I got a question about SOAP::Lite, which I...
6449
Martin Busik
mbusik70
Mar 18, 2010 5:16 pm
Hi, ... SOAPAction might be the cause. Try this: $proxy->on_action( "urn:".$_[1] } ); (see the on_action documentation) Cheers, Martin...
6450
dbower01
Mar 18, 2010 10:36 pm
Martin, Still no luck. I'm going to start further nitty-gritty checking by writing a very simple webservice just using perl that will return the same type of...
6451
Martin Kutter
kutterma
Mar 18, 2010 10:36 pm
Hi, ... you have to tweak the SOAP server to use a freeform response - to do so, subclass the server class you're using and override the handle method. ...
6453
smsless
Mar 19, 2010 4:54 pm
I am new to SOAP::Lite within PERL and need this to access a data repository. However, access to this repository is using a function call...
6454
miage_2003
Mar 24, 2010 3:24 pm
I try to use a webServices with SOAP::LITE. With only simpleType like String is OK. But if I work with complexType my object in the service is always NULL. I'm...
6455
Jo Rhett
jorhett
Mar 25, 2010 6:02 pm
The documentation (pod) for trace options indicates that the follow is possible: # Send output to a function SOAP::Lite->import( +trace => method => transport...
6456
Jo Rhett
jorhett
Mar 25, 2010 6:22 pm
Does the object being returned know how to represent itself to print? I suspect not. ... use Data::Dumper; print Data::Dumper->Dump( $result->result() ); ...
6457
Jo Rhett
jorhett
Mar 25, 2010 6:22 pm
I'm dealing with a SOAP API that is returning Faults inside the envelope instead of inside the body. This is clearly against the API documentation, but they...
6458
Jo Rhett
jorhett
Mar 26, 2010 12:42 am
Very simple question. Where SOAPAUTH is a Header object, this works: my $som = $soap->call( SOAP::Data->name( $method )->attr( $SAMAPI ) => $SOAPAUTH ); ...
6459
Jo Rhett
jorhett
Mar 26, 2010 12:42 am
I've got singular method calls working fine: my $som = $soap->call( SOAP::Data->name( 'ping' )->attr( $API ) => $AUTH ); or simpler if I didn't need the...
6460
Jo Rhett
jorhett
Mar 26, 2010 5:56 pm
There is a page with two links on it about how to disable the c-gensym elements http://www.soaplite.com/2003/08/how_do_you_turn.html Both of the links there...
6461
Martin Busik
mbusik70
Mar 27, 2010 9:04 pm
Hi, ... the construct: SOAP::Data->name( $method )->attr( $SAMAPI ) => $SOAPAUTH is just a syntactical variant to: SOAP::Data->name( $method )->attr( $SAMAPI...
6462
Martin Busik
mbusik70
Mar 27, 2010 9:06 pm
Hi, ... You might use the trace handler to rewrite the response, but I suppose, your solution is the better one. Cheers, Martin...
6463
Martin Busik
mbusik70
Mar 27, 2010 9:09 pm
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...