Ping technorati using xml-rpc in newLISP
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