Hi mate.
I Have a problem, I get unhandled error:
"Response from server does not contain valid XML."
When try to execute simple code like:
string url = this.maskedTextBox2.Text;
string username = this.maskedTextBox3.Text;
string password = this.maskedTextBox4.Text;
WordPressWrapper wp = new WordPressWrapper(url, username, password);
IEnumerable pages = wp.GetPageList();
foreach (PageMin page in pages)
{
MessageBox.Show(page.ToString());
}
If I acces www.website.com/xmlrpc.php i get this:
XML-RPC server accepts POST requests only.
So, where the problem could be?
PS: When get error the VS is pointing me to this funrction:
public IEnumerable GetPageList() ... from WordPressWraper.cs
Hi mate.
I Have a problem, I get unhandled error:
"Response from server does not contain valid XML."
When try to execute simple code like:
string url = this.maskedTextBox2.Text;
string username = this.maskedTextBox3.Text;
string password = this.maskedTextBox4.Text;
WordPressWrapper wp = new WordPressWrapper(url, username, password);
IEnumerable pages = wp.GetPageList();
foreach (PageMin page in pages)
{
MessageBox.Show(page.ToString());
}
If I acces www.website.com/xmlrpc.php i get this:
XML-RPC server accepts POST requests only.
So, where the problem could be?
PS: When get error the VS is pointing me to this funrction:
public IEnumerable GetPageList() ... from WordPressWraper.cs