<?xml version="1.0" encoding="utf-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Ping-o-matic RPC Interface</title>
	<link>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface</link>
	<description>The world according to marky moo</description>
	<pubDate>Tue, 06 Jan 2009 15:25:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: runningtings</title>
		<link>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-20</link>
		<author>runningtings</author>
		<pubDate>Fri, 20 Aug 2004 10:56:39 +0000</pubDate>
		<guid>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-20</guid>
		<description>i use this every time i post.
its great...</description>
		<content:encoded><![CDATA[<p>i use this every time i post.<br />
its great&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marky Moo</title>
		<link>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-18</link>
		<author>Marky Moo</author>
		<pubDate>Thu, 19 Aug 2004 13:24:17 +0000</pubDate>
		<guid>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-18</guid>
		<description>Cheers. Now I just need some time...</description>
		<content:encoded><![CDATA[<p>Cheers. Now I just need some time&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dougal Campbell</title>
		<link>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-16</link>
		<author>Dougal Campbell</author>
		<pubDate>Thu, 19 Aug 2004 13:13:34 +0000</pubDate>
		<guid>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-16</guid>
		<description>From what I understand, the PEAR XML-RPC package is just a slightly modified version of the Useful, Inc. library. 

The nice thing about the IXR lib is that it abstracts things out a bit more. It doesn't force you to "manually" encode/decode all of the data that you're sending back and forth. When I originally created my Blog Service Pinger, I was using the Useful, Inc. libs. But when Matt and I relaunched it as Ping-O-Matic, I reprogrammed my routines using IXR, and it made the code a little simpler.

But either library will work fine. Good luck!</description>
		<content:encoded><![CDATA[<p>From what I understand, the PEAR XML-RPC package is just a slightly modified version of the Useful, Inc. library. </p>
<p>The nice thing about the IXR lib is that it abstracts things out a bit more. It doesn&#8217;t force you to &#8220;manually&#8221; encode/decode all of the data that you&#8217;re sending back and forth. When I originally created my Blog Service Pinger, I was using the Useful, Inc. libs. But when Matt and I relaunched it as Ping-O-Matic, I reprogrammed my routines using IXR, and it made the code a little simpler.</p>
<p>But either library will work fine. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marky Moo</title>
		<link>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-15</link>
		<author>Marky Moo</author>
		<pubDate>Thu, 19 Aug 2004 13:06:36 +0000</pubDate>
		<guid>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-15</guid>
		<description>Thanks Dougal. Yes, I just discovered the specific page at http://www.xmlrpc.com/weblogsCom. I was thinking of using 
PEAR's &lt;a href="http://pear.php.net/package/XML_RPC"&gt;XML_RPC&lt;/a&gt; package as I already make use of other PEAR packages on &lt;a href="http://www.britblog.com/"&gt;BritBlog&lt;/a&gt;. However, I will investigate these other tools too. Thanks again :-)</description>
		<content:encoded><![CDATA[<p>Thanks Dougal. Yes, I just discovered the specific page at <a href="http://www.xmlrpc.com/weblogsCom." rel="nofollow">http://www.xmlrpc.com/weblogsCom.</a> I was thinking of using<br />
PEAR&#8217;s <a href="http://pear.php.net/package/XML_RPC">XML_RPC</a> package as I already make use of other PEAR packages on <a href="http://www.britblog.com/">BritBlog</a>. However, I will investigate these other tools too. Thanks again <img src='http://www.sweeting.org/mark/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dougal Campbell</title>
		<link>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-14</link>
		<author>Dougal Campbell</author>
		<pubDate>Thu, 19 Aug 2004 12:57:10 +0000</pubDate>
		<guid>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-14</guid>
		<description>You can find general info about the XML-RPC protocol and the weblogs.com ping specification at &lt;a href="http://xmlrpc.com/"&gt;xmlrpc.com&lt;/a&gt;. Currently, WordPress is using the Useful, Inc. PHP library for XML-RPC protocol handling. But we're probably going to switch one day to Simon Willison's &lt;a href="http://scripts.incutio.com/xmlrpc/"&gt;IXR&lt;/a&gt; library.

Maybe those links will help you get started :)</description>
		<content:encoded><![CDATA[<p>You can find general info about the XML-RPC protocol and the weblogs.com ping specification at <a href="http://xmlrpc.com/">xmlrpc.com</a>. Currently, WordPress is using the Useful, Inc. PHP library for XML-RPC protocol handling. But we&#8217;re probably going to switch one day to Simon Willison&#8217;s <a href="http://scripts.incutio.com/xmlrpc/">IXR</a> library.</p>
<p>Maybe those links will help you get started <img src='http://www.sweeting.org/mark/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marky Moo</title>
		<link>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-13</link>
		<author>Marky Moo</author>
		<pubDate>Thu, 19 Aug 2004 12:50:37 +0000</pubDate>
		<guid>http://www.sweeting.org/mark/blog/2004/08/19/ping-o-matic-rpc-interface#comment-13</guid>
		<description>Doh! Reading the page slowly tells me that they use an interface the same as weblogs.com. Now to find out how that works...</description>
		<content:encoded><![CDATA[<p>Doh! Reading the page slowly tells me that they use an interface the same as weblogs.com. Now to find out how that works&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
