cloudfuse
cloudfuse copied to clipboard
XML parser error : Extra content at the end of the document on fresh Debian 8 Rackspace Server
Hi. I recently installed a Debian 8 Rackspace server instance. All packages are up-to-date. I followed the build instructions from the Readme, and now I have the cloudfuse executable in /usr/local/bin. When I try to execute cloudfuse, I get the following error message:
root@myserver:~# cloudfuse
Entity: line 1: parser error : Extra content at the end of the document
^
Failed to authenticate.
As such, I can currently not mount the CloudFiles files of my account. I Google'd the error message, and it is clearly a message produced by the XML parser. But what XML file is it trying to parse? Is there a file that needs to be installed somewhere? Please advise.
That's because somewhere XML string has not root element
<document>
<element>
</document>
<document>
<element>
</document>
should have root element
<documents>
<document>
<element>
</document>
<document>
<element>
</document>
</documents>