Here is my situation: I have a Firebird database, a WCF REST service (.NET 4.5) and a Windows Mobile 6 client. What I need is: on Firebirds post event, WCF REST should notify the client.
I know that WCF has duplex communication when used as SOAP service, but I can't use it due framework version incompatibilities. Any ideas? Is this even possible and if not are there any alternatives? I'm generally new to WCF so I'm probably missing something, but I couldn't find anything helpful for my particular situation.
P.S If you need code snippets from my service let me know. There is a lot of it and I'm trying to keep this post as clean as possible.
I would use ASP.NET Web API 2 over WCF for developing Rest services and SignalR.
Web API would be for your REST web services and SignalR to notify all your clients when Firebird posts an event.
Sample Hub: