I have a lot of client programs and one service. This Client programs communicate with the server with http channel with WCF.
The clients have dynamic IP. They are online 24h/day.
I need the following: The server should notify all the clients in 3 min interval. If the client is new (started in the moment), is should notify it immediately.
But because the clients have dynamic IP and they are working 24h/day and sometimes the connection is unstable, is it good idea to use wcf duplex?
What happens when the connection goes down? Will it automatically recover?
Is is good idea to use remote MSMQ for this type of notification ?
Regards,