cloudfuse icon indicating copy to clipboard operation
cloudfuse copied to clipboard

XML parser error : Extra content at the end of the document on fresh Debian 8 Rackspace Server

Open kwrobel opened this issue 9 years ago • 1 comments

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.

kwrobel avatar Mar 16 '16 16:03 kwrobel

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>

lensgolda avatar Feb 28 '18 20:02 lensgolda