Hi all!
I'm new here. I'm developing an application for blogging. I'm using XML-RPC and before today I had not problems.
Now I'm developing the code for removing comments using wp.deleteComment. I use this RPC correctly, in fact the XML request code is:
<methodCall>
<methodName>wp.deleteComment</methodName>
<params>
<param>
<value>
<string>[Blog-id]</string>
</value>
</param>
<param>
<value>
<string>[username]</string>
</value>
</param>
<param>
<value>
<string>[passwd]</string>
</value>
</param>
<param>
<value>
<string>[comment-id]</string>
</value>
</param>
</params>
</methodCall>
the return value for this RPC should be a Boolean.
But server always returns something similar to blog index's whole source code.
Where is the problem?
thanks in advance and sorry for my english