Skip to content

Instantly share code, notes, and snippets.

View rolandoam's full-sized avatar

Rolando Abarca rolandoam

View GitHub Profile
@rolandoam
rolandoam / bbpress_xmlrpc.rb
Created June 8, 2009 00:08
testing xmlrpc on cocos2d forum
# xmlrpc is stdlib
require 'xmlrpc/client'
require 'pp'
user = "user"
pass = "mypass"
url = "http://www.cocos2d-iphone.com/forum/xmlrpc.php"
server = XMLRPC::Client.new2(url)
# note: this call works even if authentication fails!