Hey guys,
I am just stuck on this one... I created a way to post content to my blogs from vb.net without issue using XML-RPC. However, the problem is that I cannot get it to go to a particular category nor utilize tagging

Anyone have any code to do this? Here is my code for posting to Wordpress:
---------------------------------------------------------------------------
<XmlRpcUrl("
http://www.myblogurlgoeshere.com/xmlrpc.php")> _
Public Interface IWP
Inherits IXmlRpcProxy
<XmlRpcMethod("blogger.newPost")> _
Function newPost(ByVal args() As String) As Integer
End Interface
In a button-click event (eventually on a timer):
Dim proxy As IWP = XmlRpcProxyGen.Create(Of IWP)()
Dim args() As String = {"", "", "{usernamehere}", "{passwordhere}", {postcontenthere}, "publish"}
errorreturn = proxy.newPost(args)
---------------------------------------------------------------------------
Any ideas on how I can get Category and Tags into the mix on this??? Also I am looking for one other thing if anyone has some code they can lend

I need to take content and replace words using a synonym database... I can figure it out myself, but would prefer to have some good code to start with

Thanks in advance!