Chris, I think there is a bug in the RemoteFactoryBean.cfc on line 155.
These are passing bfUtils into the setNamedFactory and setDefaultFactory,
but it should be passing the bfScope. I think it should be:
<cfif len(variables.beanFactoryName) and not bfUtils.namedFactoryExists
(bfScope,variables.beanFactoryName)>
<cfset bfUtils.setNamedFactory(bfScope,variables.beanFactoryName
,variables.beanFactory)/>
<cfelseif not bfUtils.defaultFactoryExists(bfScope)>
<cfset bfUtils.setDefaultFactory(bfScope,variables.beanFactory
)/>
</cfif>