DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10689>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10689

XmlRpc$XmlWriter.writeObject() doesn't enclose Strings params in <string> tags

           Summary: XmlRpc$XmlWriter.writeObject() doesn't enclose Strings
                    params in <string> tags
           Product: XML-RPC
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Source
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


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)
              {

Reply via email to