Re: entity changes
Edd Dumbill <[email protected]>
| Newsgroups | gmane.comp.php.xml-rpc |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 2003-04-17 at 10:11, Andres Salomon wrote: > b) should entity translation be done on the server or client? Are xmlrpc > servers expected to know how to handle things like é (or even > é)? é is from the XHTML language, and isn't defined in XML-RPC, so this should be treated as an error if it appears in the payload. &#nnn; however is simply another way of putting a literal character in -- if that character is valid in the current character set then it should be accepted. The XML parser should be taking care of this. -- Edd