weblogUpdates.extendedPing example

there are two examples on this page.

note: the methods for handling non-ASCII characters in names also works using our implementation of the weblogUpdates.ping method, but it is unknown if, or how well, the weblogs.com implementation of that interface handles non-ASCII characters.

here is an example of an XML-RPC ping using the weblogUpdates.extendedPing for the blog "I ♥ São Paulo", located at http://ilovesaopaulo.example.com/ with an rss feed at http://ilovesaopaulo.example.com/index.rss.

some things to note:

POST / HTTP/1.0
Host: ping.blo.gs
Content-Type: text/xml
Content-Length: 394

<?xml version="1.0" encoding="iso-8859-1"?>
<methodCall>
 <methodName>weblogUpdates.extendedPing</methodName>
 <params>
  <param>
   <value>I &#9829; São Paulo</value>
  </param>
  <param>
   <value>http://ilovesaopaulo.example.com/</value>
  </param>
  <param>
   <value></value>
  </param>
  <param>
   <value>http://ilovesaopaulo.example.com/index.rss</value>
  </param>
 </params>
</methodCall>

here is an example of an XML-RPC ping using the weblogUpdates.extendedPing for the blog "The &nbsp; in São Paulo", located at http://nbspsaopaulo.example.com/ with the actual url to check being http://nbspsaopaulo.example.com/content.html.

some things to note:

POST / HTTP/1.0
Host: ping.blo.gs
Content-Type: text/xml
Content-Length: 402

<?xml version="1.0"?>
<methodCall>
 <methodName>weblogUpdates.extendedPing</methodName>
 <params>
  <param>
   <value>The &amp;nbsp; Space in S&#227;o Paulo</value>
  </param>
  <param>
   <value>http://nbspsaopaulo.example.com/</value>
  </param>
  <param>
   <value>http://nbspsaopaulo.example.com/content.html</value>
  </param>
  <param>
   <value></value>
  </param>
 </params>
</methodCall>