Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

bob bae http://sparebandwidth.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Ping technorati using xml-rpc in newLISP

// description of your code here

   1  
   2  (setq technorati-request [text] 
   3  <methodCall> 
   4    <methodName>weblogUpdates.ping</methodName> 
   5    <params> 
   6      <param> 
   7        <value>%s</value> 
   8      </param> 
   9      <param> 
  10        <value>%s</value> 
  11      </param> 
  12    </params> 
  13  </methodCall> 
  14  [/text]) 
  15  
  16  
  17  
  18   (XMLRPC:execute  "http://rpc.technorati.com/rpc/ping" (format technorati-request "terpri.com" "http://terpri.com")) 
  19  
  20  
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS