kolo / xmlrpc

Implementation of XMLRPC protocol in Go language.
MIT License
158 stars 92 forks source link

workaround for broken XML-RPC server <fault> #40

Closed ibukanov closed 5 years ago

ibukanov commented 8 years ago

XML-RPC server that provides API access for livejournal.com returns a fault block like:

<?xml version="1.0" encoding="UTF-8"?><methodResponse><fault><value><struct><member><name>faultString</name><value><string>Denied access to method (login) in class (main) at /usr/local/share/perl5/SOAP/Lite.pm line 2827.
</string></value></member><member><name>faultCode</name><value><string>Client</string></value></member></struct></value></fault></methodResponse>

where faultCode is string. It has been like that for the last 15 years and they are not going to change that. It would be nice to have a workaround.

icholy commented 5 years ago

@ibukanov is this still something you need?