charan_v
charan_v

Reputation: 1

How to send the data from android(Client) to PC(WampServer) without an internet connection?

Am running a wamp server on my PC and i connected it to my android 2.2 device through WiFi. In my app there is a listview of options to be selected, if i select some options, the Server should display those options which are only selected.There will be no internet connection. How can I implement this?

Upvotes: 0

Views: 366

Answers (1)

Chris Stratton
Chris Stratton

Reputation: 40397

If the android device and the PC are on the same wifi network or internally routable to each other by a LAN including that wifi, you can use ordinary TCP client/server methods to communicate between them.

Upvotes: 1

Related Questions