Hi,
I would like to create a server using .NET and Java client (Android application).
The client will be connected to the server through mobile network so it's impossible to use tcp socket for two-way communication.
I would like to develop a logic for client login:
The client sends username and password to the server and server replies (connected/not connected). Then if client is connected it starts sending data stream using tcp sockets.
So far I have looked at some of the tutorials for Java/.Net interoperability and remoting but still haven't found the solution for login logic described above.
I would really appreciate any suggestion on how to create a logic for login or any good tutorial recommendation.
Thanks!