I am creating an app with a shared session capability. For example a private app-to-app chat session...
I would start the app and create a "chat room" then "share" with someone via email. What I would like to do is create a URL that when it is clicked on it opens the app on your computer... if I am inviting you to my "chat room".
I have poked around on the web but don't see this behavior called out anywhere.
You can do this easily & simply with a metro application by adding a special section to your manifest, and making sure you handle the correct activation type in your activation handler.
You can easily add to the manifest by using the VS Editor for the manfiest:
myawesomeapp://foo/bar/baz
)To handle this protocol you need to look for the activation kind "Protocol". This is in your activation handler, and on the "Kind" property. Full details on MSDN here (prog. lang. switch is in the top right) for both JavaScript & C#/C++/VB.