[ http://issues.apache.org/jira/browse/XMLRPC-10?page=all ]
Jochen Wiedmann closed XMLRPC-10:
---------------------------------
Resolution: Duplicate
Duplicate of XMLRPC-51 which was fixed today.
> XmlRpc$XmlWriter.writeObject() doesn't enclose Strings params in <string> tags
> ------------------------------------------------------------------------------
>
> Key: XMLRPC-10
> URL: http://issues.apache.org/jira/browse/XMLRPC-10
> Project: XML-RPC
> Type: Bug
> Components: Source
> Versions: unspecified
> Environment: Operating System: All
> Platform: All
> Reporter: Ralf Müller
>
> As far as I'm up to date with it the XML-RPC spec says that paramters of type
> String have to be enclosed in <string> tags. At least when talking to the
> Skyrix
> skyxmlrpcd this is mandatory.
> Fix:
> *** XmlRpc.java.orig Thu Jul 11 16:13:16 2002
> --- XmlRpc.java Thu Jul 11 16:13:44 2002
> ***************
> *** 695,701 ****
> --- 695,703 ----
> }
> else if (obj instanceof String)
> {
> + startElement("string");
> chardata(obj.toString());
> + endElement("string");
> }
> else if (obj instanceof Integer)
> {
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira