I have the following scenario.
As my next project, i try to implement a chat application. I found out about Sql Table Dependency and i did a c# client witch use SqlTableDependecy and it`s ok. But now i want to come with WCF service in the middle so sql connection will be secured.
The problem is, how do i receive data from SQL in WCF service and from there to send it to my C# client app instant. I don`t want to use Timers in my C# client app.
- In sql i insert a new row in table.
- This change will be received by WCF service ( hosted on IIS )
- How do i send that information from WCF in C# client app imedialty. How do i consume the WCF service.
I accept any guidance or tips for this project. Ty