Here's a code snippet that you can use to call the Blogger API web service from ColdFusion:
<cfsavecontent variable="xmlRPCCall"><?xml version="1.0" ?> <methodCall> <methodName>blogger.getUsersBlogs</methodName> <params> <param><value><string>0123456789ABCDEF</string></value></param> <param><value><string>username</string></value></param> <param><value><string>password</string></value></param> </params> </methodCall> </cfsavecontent> <cfhttp method="post" url="http://plant.blogger.com/api/RPC2" charset="utf-8"> <cfhttpparam type="XML" value="#xmlRPCCAll#"> </cfhttp> <cfset result = XmlParse(cfhttp.filecontent)> <cfdump var="#result#">
Check out the Blogger API docs for more info.
XML