I'm actually developing a client/server application : the client consumes a WCF service.
The client needs to get database data, so the WCF service returns Linq-to-SQL entities (System.Data.Linq.Mapping.TableAttribute
)
To implement a "push" communication from server to client, we are going to implement duplex contract with WSDualHttpBinding
.
Here is my question : for the future, we think about developing mobile client (Android/iPhone), I did research about interoperability, but the answers were about using standards like REST that i don't use.
Is it possible to use my service (entities exchange + WSDual binding)?