Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 36455
Status: resolved
Priority: 0/
Queue: SOAP-Lite

People
Owner: Nobody in particular
Requestors: steve [...] mouf.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: XMLRPC::Transport::HTTP::CGI generates extra params
Date: Wed, 4 Jun 2008 16:54:19 -0400
To: bug-SOAP-Lite [...] rt.cpan.org
From: Steve Wills <steve [...] mouf.net>
Hi, I'm using XMLRPC::Transport::HTTP::CGI. I noticed the SOAP- Lite-0.710.05 version of it produces output that looks like this: <?xml version="1.0" encoding="UTF-8"?> <methodResponse> <params> <param> <value> <string>commandResponse</string> </value> </param> <param> <value> <struct> <member> <name>result</name> <value> <array> <data> <value> <int>7</int> </value> </data> </array> </value> </member> </struct> </value> </param> </params> </methodResponse> Where the old version (0.60 and 0.69 are what I had handy to test) produce this: <?xml version="1.0" encoding="UTF-8"?> <methodResponse> <params> <param> <value> <struct> <member> <name>result</name> <value> <array> <data> <value> <int>7</int> </value> </data> </array> </value> </member> </struct> </value> </param> </params> </methodResponse> I don't know which one is correct, but I can say the one with the newer version confuses the older XMLRPC::Lite client code. The reference returned by the XMLRPC::Lite call method is just a reference to the string "commandResponse", without the actual response value. This seems to be a bug. If not and I need the newer XMLRPC::Lite client in order to use the newer server, please let me know. Thanks, Steve
Subject: Re: [rt.cpan.org #36455] XMLRPC::Transport::HTTP::CGI generates extra params
Date: Thu, 05 Jun 2008 20:46:51 +0200
To: bug-SOAP-Lite [...] rt.cpan.org
From: Martin Kutter <martin.kutter [...] fen-net.de>
Am Mittwoch, den 04.06.2008, 17:23 -0400 schrieb Steve Wills via RT: Show quoted text
> #36455] XMLRPC::Transport::HTTP::CGI generates extra params
Fixed in 0.710.06 just uploaded to CPAN. Thanks for reporting, Martin