Build your custom tool
IceRocket accepts XML-RPC pings to http://rpc.icerocket.com:10080. Your XML-RPC should look like this:
HTTP Request Header
POST / HTTP/1.0
User_Agent: YOUR_CLIENT_HERE
Host: rpc.icerocket.com
Content-Type: text/xml
Content-Length: 194
XML Message Content
<?xml version="1.0" encoding="utf-8"?>
<methodCall>
<methodName>ping</methodName>
<params>
<param>
<value>
<string>Blog Name</string>
</value>
</param>
<param>
<value>
<string>www.you.blog.domain.com</string>
</value>
</param>
</params>
</methodCall>
Example on Python using xmlrpclib
import xmlrpclib
server = xmlrpclib.ServerProxy("http://rpc.icerocket.com:10080")
print server.ping('MeltwaterCareersBlog', 'http://www.meltwatercareers.com')
... or ping us from web
Check our web form for more information.
