RPX registration when working with mollom enabled was not working for us. On further debugging, it seemed that if mollom was enabled, the form #submit was getting unset.
Adding the following on line #167 fixed the problem for me - hope this helps somebody else.

$form['#submit'] = array('rpx_user_register_submit');

Thanks