views:

172

answers:

1

I am developing an application in android to connect emulator to server and then read, edit and write on it. Has any one worked on such application please let me know. Else guide how to develop this application.

I am using Socket in my application. i am able to run the code when my machine is server and client but not able to do when connect to other machines.

A: 

Your question is hard to read the way it's formatted. What do you mean by "connect emulator to server"? Are you referring to app you writing that needs to connect to HTTP server somewhere? If so - you don't need to use socket, use HttpClient instead, there are many examples on how to do it. And you can program Java sockets too.

DroidIn.net