Something I was looking at, which may be appropriate for this thread is in the strings.xml file is the following entry
<string id="SelfProvisioningAppName" value="rdp:__selfProvisioning" />
this seems to be used if the application is in self provisioning mode, it then tries to
UIFramework.OpenUrl(UIFramework.GetString("SelfProvisioningAppName"), "BOOTSTRAP");
so it would try to run rdp:__selfProvisioning
OpenUrl also handles the following extensions
case "page":
case "file":
case "http":
case "https":
case "xhtml":
case "vodstore":
case "rdp":
case "action":
case "tune":
I'm not sure how the rdp: works, but maybe we can use this to return an object to the main app with all the needed paramaters?
Mick