Am Freitag, den 09.12.2005, 08:52 -0700 schrieb [EMAIL PROTECTED]: > This project is for health care use and there is an industry standard data > format which is XML defined by the HL7 organization. Also the XML data > format is used in a dom tree. In your earlier message you mention the > right quoting, do you mean double quotes around the complete XML string? I > still have the question why is it different between the c and java > projects?
No, not double-quotes - the whole "string" hast to be escaped* "<" -> "<" ">" -> ">" "&" -> "&" and so on. The XMLRPC lib should in fact do it automatically. When it does not - this is a bug. (* or just base64-encoded) Regards Tino
