<?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: Blog ID in WordPress and XML-RPC Blog APIs</title>
	<atom:link href="http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/feed/" rel="self" type="application/rss+xml" />
	<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/</link>
	<description>cat /dev/random</description>
	<lastBuildDate>Sat, 04 Jul 2009 08:07:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9-rare</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joseph Scott</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-642948</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Mon, 06 Oct 2008 16:50:16 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-642948</guid>
		<description>@skwirditz -

Not sure why you are getting an error.  Have you looked at the raw XML-RPC request/response to make sure that they look ok?</description>
		<content:encoded><![CDATA[<p>@skwirditz -</p>
<p>Not sure why you are getting an error.  Have you looked at the raw XML-RPC request/response to make sure that they look ok?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skwirditz</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-638308</link>
		<dc:creator>skwirditz</dc:creator>
		<pubDate>Fri, 03 Oct 2008 15:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-638308</guid>
		<description>Hello every one im using this code,, im junior programmer and this is my first time to use xmlrpc, im just wondering why i get this error -&gt; Got invalid response... Maybe i miss something in my code or i don&#039;t know

return_type = &#039;xml&#039;;
// let&#039;s the native xmlrpc extension take care of encoding request parameterss
$r = $c-&gt;send(xmlrpc_encode_request(&#039;wp.getUsersBlogs&#039;, $_POST[&#039;stateno&#039;]));
if ($r-&gt;faultCode())
// HTTP transport error
echo &#039;Got error &#039;.$r-&gt;faultCode();
else
{
// HTTP request OK, but XML returned from server not parsed yet
$v = xmlrpc_decode($r-&gt;value());
// check if we got a valid xmlrpc response from server
if ($v === NULL)
echo &#039;Got invalid response&#039;;
else
// check if server sent a fault response
if (xmlrpc_is_fault($v))
echo &#039;Got xmlrpc fault &#039;.$v[&#039;faultCode&#039;];
else
echo&#039;Got response: &#039;.htmlentities($v);
}
?&gt;</description>
		<content:encoded><![CDATA[<p>Hello every one im using this code,, im junior programmer and this is my first time to use xmlrpc, im just wondering why i get this error -&gt; Got invalid response&#8230; Maybe i miss something in my code or i don&#8217;t know</p>
<p>return_type = &#8216;xml&#8217;;<br />
// let&#8217;s the native xmlrpc extension take care of encoding request parameterss<br />
$r = $c-&gt;send(xmlrpc_encode_request(&#8216;wp.getUsersBlogs&#8217;, $_POST['stateno']));<br />
if ($r-&gt;faultCode())<br />
// HTTP transport error<br />
echo &#8216;Got error &#8216;.$r-&gt;faultCode();<br />
else<br />
{<br />
// HTTP request OK, but XML returned from server not parsed yet<br />
$v = xmlrpc_decode($r-&gt;value());<br />
// check if we got a valid xmlrpc response from server<br />
if ($v === NULL)<br />
echo &#8216;Got invalid response&#8217;;<br />
else<br />
// check if server sent a fault response<br />
if (xmlrpc_is_fault($v))<br />
echo &#8216;Got xmlrpc fault &#8216;.$v['faultCode'];<br />
else<br />
echo&#8217;Got response: &#8216;.htmlentities($v);<br />
}<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris L</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-605746</link>
		<dc:creator>Chris L</dc:creator>
		<pubDate>Thu, 11 Sep 2008 21:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-605746</guid>
		<description>I see that this fix is in WPMU now, but I am still experiencing problems with blogging clients as if the fix is not there. One diff, I note, is that you discuss subdomains but I am using subdirectories in my installation... do you think that could cause problems with the fix?

Both Livewriter and Scribefire are having the same problems discussed pre-fix. I posted here: http://mu.wordpress.org/forums/topic.php?id=6235#post-57161</description>
		<content:encoded><![CDATA[<p>I see that this fix is in WPMU now, but I am still experiencing problems with blogging clients as if the fix is not there. One diff, I note, is that you discuss subdomains but I am using subdirectories in my installation&#8230; do you think that could cause problems with the fix?</p>
<p>Both Livewriter and Scribefire are having the same problems discussed pre-fix. I posted here: <a href="http://mu.wordpress.org/forums/topic.php?id=6235#post-57161" rel="nofollow">http://mu.wordpress.org/forums/topic.php?id=6235#post-57161</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Scott</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-604996</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Thu, 11 Sep 2008 05:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-604996</guid>
		<description>@Tom -

Documentation is one area that we need to improve for XML-RPC.  There&#039;s lots of documentation out there for the generic metaWeblog.* functions though.</description>
		<content:encoded><![CDATA[<p>@Tom -</p>
<p>Documentation is one area that we need to improve for XML-RPC.  There&#8217;s lots of documentation out there for the generic metaWeblog.* functions though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-603316</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 09 Sep 2008 19:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-603316</guid>
		<description>Very cool.  Thanks for the info -- very timely as I&#039;m just getting started with XML-RPC and Wordpress app development.

Where can I find documentation on the methods available?

thanks much

tom</description>
		<content:encoded><![CDATA[<p>Very cool.  Thanks for the info &#8212; very timely as I&#8217;m just getting started with XML-RPC and Wordpress app development.</p>
<p>Where can I find documentation on the methods available?</p>
<p>thanks much</p>
<p>tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Scott</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-552578</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Tue, 05 Aug 2008 15:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-552578</guid>
		<description>Go to the WPMU Trac install (http://trac.mu.wordpress.org/) and take a look at the XML-RPC file for the 1.0 release (http://trac.mu.wordpress.org/browser/tags/release-1.0/xmlrpc.php).  It has metaWeblog.newPost in there.  Obviously it won&#039;t have all the current features, but it&#039;s in there.

Without the exactly XML-RPC error it&#039;s hard to say what the problem is.</description>
		<content:encoded><![CDATA[<p>Go to the WPMU Trac install (<a href="http://trac.mu.wordpress.org/" rel="nofollow">http://trac.mu.wordpress.org/</a>) and take a look at the XML-RPC file for the 1.0 release (<a href="http://trac.mu.wordpress.org/browser/tags/release-1.0/xmlrpc.php" rel="nofollow">http://trac.mu.wordpress.org/browser/tags/release-1.0/xmlrpc.php</a>).  It has metaWeblog.newPost in there.  Obviously it won&#8217;t have all the current features, but it&#8217;s in there.</p>
<p>Without the exactly XML-RPC error it&#8217;s hard to say what the problem is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Areeb</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-551790</link>
		<dc:creator>Areeb</dc:creator>
		<pubDate>Tue, 05 Aug 2008 00:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-551790</guid>
		<description>I know it&#039;s old, but it&#039;s not my website, so I really don&#039;t have a choice of upgrading :). But yea, do you happen to know if metaweblog api support has only been added after 1.0?

Do you know of any way to add a timestamp to posts done to WPMU-1.0? That is what I&#039;m basically trying to do...</description>
		<content:encoded><![CDATA[<p>I know it&#8217;s old, but it&#8217;s not my website, so I really don&#8217;t have a choice of upgrading :). But yea, do you happen to know if metaweblog api support has only been added after 1.0?</p>
<p>Do you know of any way to add a timestamp to posts done to WPMU-1.0? That is what I&#8217;m basically trying to do&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Scott</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-551776</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Mon, 04 Aug 2008 23:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-551776</guid>
		<description>WPMU-1.0?  Seriously?  That&#039;s very old, time to upgrade.</description>
		<content:encoded><![CDATA[<p>WPMU-1.0?  Seriously?  That&#8217;s very old, time to upgrade.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Areeb</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-551769</link>
		<dc:creator>Areeb</dc:creator>
		<pubDate>Mon, 04 Aug 2008 23:50:40 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-551769</guid>
		<description>Thanks, I was able to get the blog_id that way, but everytime I try to do a metaWeblog.newpost request, it throws back an error. The website I&#039;m trying to submit to has WPMU-1.0. Has the metaWeblog support only been added after 1.0? The blogger API works fine.</description>
		<content:encoded><![CDATA[<p>Thanks, I was able to get the blog_id that way, but everytime I try to do a metaWeblog.newpost request, it throws back an error. The website I&#8217;m trying to submit to has WPMU-1.0. Has the metaWeblog support only been added after 1.0? The blogger API works fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Scott</title>
		<link>http://joseph.randomnetworks.com/archives/2008/06/10/blog-id-in-wordpress-and-xml-rpc-blog-apis/comment-page-1/#comment-551372</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Mon, 04 Aug 2008 15:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://joseph.randomnetworks.com/?p=1103#comment-551372</guid>
		<description>The blog_id value is part of the data returned by blogger.getUsersBlogs.</description>
		<content:encoded><![CDATA[<p>The blog_id value is part of the data returned by blogger.getUsersBlogs.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
