I got so annoying problem, that can’t be solved by just googling for me :((
I have a Windows Metro App, that must use a third-party COM-object for checking an answer from remote server, but I can’t add reference to it directly in Metro App.
I think I need to build some kind of Windows service, maybe WCF Service Library (from which I can add this COM object), but I don’t know how to connect this service with my Metro App. MSDN’s docs are so exhausting, that I get lost in this amount of abstruse words… MY GOD!!!
And I want to build this apps without using IIS or something like this..
Simply bald Windows 8 and my installed app – and it must work of course 🙂
Thank you everyone in advance.
Have a nice day!
Yes, you are all right, men. Thank you everyone!
Everything what I needed is to create a WCF Library and reference it to my COM object (but be very sure that your COM is not 32bit, otherwise you need to patch your WCFServiceTest app).
Then you simply dialoguing your app&service with data/operation contracts and that’s all.
simply genius.