<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Creating a new post in WordPress using the JoeBlogs library</title>
	<atom:link href="http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/</link>
	<description>My Words. By Me.</description>
	<lastBuildDate>Wed, 02 Nov 2011 13:49:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Terrell</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-22605</link>
		<dc:creator>Terrell</dc:creator>
		<pubDate>Sun, 31 Jul 2011 04:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-22605</guid>
		<description>This is an awesome wrapper Alex, Thanks a lot! This a real time saver.</description>
		<content:encoded><![CDATA[<p>This is an awesome wrapper Alex, Thanks a lot! This a real time saver.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to create new post from VB.NET &#171; teststatistic</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-22153</link>
		<dc:creator>How to create new post from VB.NET &#171; teststatistic</dc:creator>
		<pubDate>Sat, 16 Jul 2011 22:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-22153</guid>
		<description>[...] It is working!!!!!! [...]</description>
		<content:encoded><![CDATA[<p>[...] It is working!!!!!! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaveCS</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-20394</link>
		<dc:creator>DaveCS</dc:creator>
		<pubDate>Sat, 30 Apr 2011 04:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-20394</guid>
		<description>Whoa.... I just checked later versions of this.

My code works with version 1, the version showcased on the codeplex site. http://joeblogs.codeplex.com/

In later versions, the version that allows comment posting, the namespace and some method types change.  

No wonder why everyone is confused. The first released assembly has a very different fundamental structure than the current release. In a bad way.... The discussion code snips and examples might work with a certain &quot;Revision&quot; and completely fail with another.  All depending on who is using what version....    LOL  Wow, talk about throwing a wrench in things.</description>
		<content:encoded><![CDATA[<p>Whoa&#8230;. I just checked later versions of this.</p>
<p>My code works with version 1, the version showcased on the codeplex site. <a href="http://joeblogs.codeplex.com/" rel="nofollow">http://joeblogs.codeplex.com/</a></p>
<p>In later versions, the version that allows comment posting, the namespace and some method types change.  </p>
<p>No wonder why everyone is confused. The first released assembly has a very different fundamental structure than the current release. In a bad way&#8230;. The discussion code snips and examples might work with a certain &#8220;Revision&#8221; and completely fail with another.  All depending on who is using what version&#8230;.    LOL  Wow, talk about throwing a wrench in things.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaveCS</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-20392</link>
		<dc:creator>DaveCS</dc:creator>
		<pubDate>Sat, 30 Apr 2011 03:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-20392</guid>
		<description>@Daniel and others having problems with categories.

You have to set the categories explicitly by name. The category id shown in the code examples don&#039;t seem to work.
Browsing the object browser on his assembly is much better than the documentation, give it a try.

Example in VB. Use the online converter at developerfusion if you don&#039;t know VB and coding in C#.

  Private Sub btnPost_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPost.Click
        Dim Url As String = &quot;http://somesite.info/xmlrpc.php&quot;
        Dim User As String = &quot;Poster123&quot;
        Dim Password As String = &quot;password123&quot;
        Dim wp = New WordPressWrapper(Url, User, Password)
        Dim post = New Structs.Post()
        post.dateCreated = DateTime.Now
        post.title = &quot;This is a title test&quot;
        post.description = &quot;This is post content test &lt;strong&gt;could&lt;/strong&gt; be html.&quot;

        &#039;This would post only in Free Movie Downloads
        &#039;post.categories = {&quot;Free Movie Downloads&quot;}

        &#039;This would post in Free Movie Downloads and New
        post.categories = {&quot;Free Movie Downloads&quot;, &quot;New&quot;}
        &#039;create the post
        wp.NewPost(post, True)
    End Sub</description>
		<content:encoded><![CDATA[<p>@Daniel and others having problems with categories.</p>
<p>You have to set the categories explicitly by name. The category id shown in the code examples don&#8217;t seem to work.<br />
Browsing the object browser on his assembly is much better than the documentation, give it a try.</p>
<p>Example in VB. Use the online converter at developerfusion if you don&#8217;t know VB and coding in C#.</p>
<p>  Private Sub btnPost_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPost.Click<br />
        Dim Url As String = &#8220;http://somesite.info/xmlrpc.php&#8221;<br />
        Dim User As String = &#8220;Poster123&#8243;<br />
        Dim Password As String = &#8220;password123&#8243;<br />
        Dim wp = New WordPressWrapper(Url, User, Password)<br />
        Dim post = New Structs.Post()<br />
        post.dateCreated = DateTime.Now<br />
        post.title = &#8220;This is a title test&#8221;<br />
        post.description = &#8220;This is post content test <strong>could</strong> be html.&#8221;</p>
<p>        &#8216;This would post only in Free Movie Downloads<br />
        &#8216;post.categories = {&#8220;Free Movie Downloads&#8221;}</p>
<p>        &#8216;This would post in Free Movie Downloads and New<br />
        post.categories = {&#8220;Free Movie Downloads&#8221;, &#8220;New&#8221;}<br />
        &#8216;create the post<br />
        wp.NewPost(post, True)<br />
    End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish Choudhary</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-18955</link>
		<dc:creator>Manish Choudhary</dc:creator>
		<pubDate>Sat, 19 Mar 2011 12:40:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-18955</guid>
		<description>Is it possible to get all post from my wordpress blog?</description>
		<content:encoded><![CDATA[<p>Is it possible to get all post from my wordpress blog?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-16321</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Thu, 13 Jan 2011 19:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-16321</guid>
		<description>how can i set categories? i have the problem here:

http://joeblogs.codeplex.com/Thread/View.aspx?ThreadId=239937</description>
		<content:encoded><![CDATA[<p>how can i set categories? i have the problem here:</p>
<p><a href="http://joeblogs.codeplex.com/Thread/View.aspx?ThreadId=239937" rel="nofollow">http://joeblogs.codeplex.com/Thread/View.aspx?ThreadId=239937</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-16318</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Thu, 13 Jan 2011 18:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-16318</guid>
		<description>you have to set categories as an int[] array. If there is a new category, you have first to add it. Or is there another way?</description>
		<content:encoded><![CDATA[<p>you have to set categories as an int[] array. If there is a new category, you have first to add it. Or is there another way?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-16311</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 13 Jan 2011 15:25:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-16311</guid>
		<description>Bump.
I would really like to use it, because the other implementation out there (wordpress.Net) requires recompiling every time you want to access a different blog. But I have 2 problems. 
1) mt_keywords does not seem to be recognized (not there is intellisense)
2) custom fields does not seem implemented. (ditto)

I&#039;m not sure if the source code on codeplex is a later version - but I could not get it to compile - but that may just be me.

Any chance you will fix these - I would make it a very useful tool. Unfortunately at the moment I am stuck with 2 partial implementations and really don&#039;t understand enough of what is going on to fix it myself.

Guess its back to Wordpress.Net for now - but hope you can help.

Thanks</description>
		<content:encoded><![CDATA[<p>Bump.<br />
I would really like to use it, because the other implementation out there (wordpress.Net) requires recompiling every time you want to access a different blog. But I have 2 problems.<br />
1) mt_keywords does not seem to be recognized (not there is intellisense)<br />
2) custom fields does not seem implemented. (ditto)</p>
<p>I&#8217;m not sure if the source code on codeplex is a later version &#8211; but I could not get it to compile &#8211; but that may just be me.</p>
<p>Any chance you will fix these &#8211; I would make it a very useful tool. Unfortunately at the moment I am stuck with 2 partial implementations and really don&#8217;t understand enough of what is going on to fix it myself.</p>
<p>Guess its back to WordPress.Net for now &#8211; but hope you can help.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pawan</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-15043</link>
		<dc:creator>Pawan</dc:creator>
		<pubDate>Tue, 21 Dec 2010 14:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-15043</guid>
		<description>Hi Alex, Any sample showing how to add post tags and custom fields for post?</description>
		<content:encoded><![CDATA[<p>Hi Alex, Any sample showing how to add post tags and custom fields for post?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waseem</title>
		<link>http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/comment-page-1/#comment-14667</link>
		<dc:creator>Waseem</dc:creator>
		<pubDate>Fri, 10 Dec 2010 17:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexjamesbrown.com/development/creating-a-new-post-in-wordpress-using-the-joeblogs-library/#comment-14667</guid>
		<description>Could you post a code example of using mt_keywords to set post tags for a new post in C#?</description>
		<content:encoded><![CDATA[<p>Could you post a code example of using mt_keywords to set post tags for a new post in C#?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

