We have a client server application. My application need to be changed to work via WCF service in order to receive/send data to the database (security demands).
I also need another service which be hosted at the client side and will connect the client to the WCF service on the server side connect with Https. The WCF service on the server is in PerSession mode. Most of my work with the server is insert / select queries.
So my design is:
Client ->windows service ->WCF server service(iis7) ->database.
This windows service act as client and as server at the same time. Act as server: for the Client application. Act as client for the WCF service which located at the server.
The application needs to support XP and forward operating systems with .net 4.
The windows service will need to connect the WCF service on demand only (when the client application is launched).
I need to decide in which way to implement the client windows service. I prefer to implement it with WCF hosted service with TCP/IP, but it feels like over kill to do so. Should I use other IPC implementations? And if so which one?
So, what is the best way to implement this Windows service?
Thanks