tags:

views:

22

answers:

2

I'm wanting to write an app with visual basic 2008 that can post to my wordpress blogs. Has anyone done something similar? I'm looking for some relevant links or advice to get started.

A: 

Wordpress uses the AtomPub protocol to remotely administer blogs. It uses https requests and xml data. I know that .NET has a very rich and easy to use interface for the web, found in namespace System.Web, and great tools for the manipulation of XML data, found in namespace System.Xml.

EDIT:

oops forgot to add in the link to the AtomPub page at the wordpress codex:

http://codex.wordpress.org/AtomPub

Scott M.