I\'m working on RIM HttpFilterRegistry part. Can anyone explain on how to embed (protocol & packageManager class) in a native app with an UI entry point.
Require
You don't implement the HttpFilterRegistry
class yourself, you use the one that RIM provides. Just call HttpFilterRegistry.registerFilter()
like any other API call. What you do have to implement yourself is a java package that includes a class named Protocol
. You then pass the package name to registerFilter()
, and the browser will then access your Protocol
class when the registered domain is invoked.