3

I have facing problem to access xmlrpc. Whenever I tried to access xmlrpc through this http://localhost/joomla/xmlrpc link I got following error:

faultCode 105 faultString XML error: Invalid document end at line 1, column 1

<?xml version="1.0"?> 
<methodResponse> 
  <fault>
    <value> 
      <struct>
        <member>
          <name>faultCode</name> 
          <value><int>105</int></value> 
        </member> 
        <member> 
          <name>faultString</name> 
          <value><string>XML error: Invalid document end at line 1, column 1</string></value> 
        </member> 
      </struct> 
    </value> 
  </fault> 
</methodResponse>

I am using joomla 1.5. Does anyone have this relevant error?

hakre
  • 193,403
  • 52
  • 435
  • 836
suvankar
  • 1,548
  • 1
  • 20
  • 28
  • Whenever you see this error, you need to show you you create the XML-RPC request. Because the error is in the XML of the request. – hakre Dec 15 '12 at 11:46

1 Answers1

2

Are you just 'browsing' to the address of the xmlrpc folder? It looks from the response like you didn't submit an xml 'request' document to the url. XMLRPC requires that you post a request in the form of commands via an xml file.

Dean Marshall
  • 1,825
  • 1
  • 11
  • 10