I want to develop a Metro style app - basically i want to do that for WP8 and also for windows 8 (and in the best case I want to develop the app only once and deploy it to both platforms).
I stumbled over many many questions regarding interop / interprocess communication between a metro style app and a desktop app on windows 8. These things are very interessting but does not cover my case.
That's what I'm supposed to do: I got an own database implementation (using C++, shipped as DLL, creates own file on local storage where it inserts/writes records to that file, encoded in proper/own way) and I want to run this as a service in the "background" to offer access to the database for sharing. I know that I can do this in windows 8 using WCF and a common service app running in the background of the desktop. Ok - basically, this does not need to run as a service at all, but it should cover the requirement to be accessible from multiple Apps. It's not possible to access the DLL API by "DllImport" or stuff like that, because than only one app at a time can access the database.
I stumbled across this: Inter application communication in WinRT which is saying that there no direct communication link between metro apps exists/is possible. Furthermore I catched up this site: http://msdn.microsoft.com/en-us/library/windows/apps/xaml/Hh871368 - before I take a more deeper look into that topic which sounds promising on the first look, I wanted to ask you guys if it's really that promising.
In addition to that, I found this article http://msdn.microsoft.com/en-US/library/windowsphone/develop/hh202860(v=vs.92).aspx regarding local databases on WP8 but actually I guess this applies not to me, because I don't wan't to access my DB using LINQ/SQL.
Any comment is appreciated.
EDIT Just a few seconds ago, I stumbled across this Is it possible to make a WinRT service and i guess this resolves any issue I'm interessted in.