Bad XMLRPC (?)
I am a Mac-User blogging with the software ecto ( ecto.kung-foo.tv ) via metaWeblog-API on blogger.de (antville-based). While testing the new version of ecto (Beta-Status), I got in touch with the programmer as I had difficulties connecting to blogger.de using the
In responce, that's what he wrote and I hope this is the right place to let you know:
---start---quote---
Yeah, I see what's wrong. Here's what your server is returning:
<?xml version="1.0" encoding="ISO-8859-1"?> <methodResponse> <params> <param> <value> <array> <data> <value><struct> <member> <name>url <value>/ </member> <member> <name>blogid <value>powerbook </member> <member> <name>blogName <value>powerbook _ blog </member> </struct></value> </data> </array> </value> </param> </params> </methodResponse>
It's bad xml for XMLRPC. It should be:
<?xml version="1.0" encoding="ISO-8859-1"?> <methodResponse> <params> <param> <value> <array> <data> <value><struct> <member> <name>url</name> <value><string>/</string></value> </member> <member> <name>blogid</name> <value><string>powerbook</string></value> </member> <member> <name>blogName</name> <value><string>powerbook _ blog</string></value> </member> </struct></value> </data> </array> </value> </param> </params> </methodResponse>
It would also be nicer if the encoding was set as: <?xml version="1.0" encoding="UTF-8"?>
ISO-8859-1 is out of date.
---end---quote---