I currently have a windows based client, implemented with Silverlight that uses a bidirectional tcp connection with the server using WCF Net.tcp (netTcpBinding).
Now I would like to develop an Android based client with minimum changes on the server side.
- Is it possible to use netTcpBinding with Android client?
- What would be the best way to do that?
- If not, are there recommended ways to achieve a secure bidirectional connection with the server other than the standard tcp socket connection?
I saw the following solution How to Consume WCF Service with Android But it offeres basicHttpBinding. Any idea how can i make the Android client to connect and how can i get calls from the server?