1

here is a tough question :D can anyone tell me the names of libraries concerning Wi-Fi as i want to build a mobile application that can connect to a local server through wi-fi and exchange information with it. also i want to know which library is better and which language too ?? thanks in advance

Mohamed
  • 1,537
  • 2
  • 10
  • 14
  • 2
    An application (mobile or not) usually doesn't need to know what type of internet connection is set (wired, wifi, 3G, etc.): the internet connection is managed by the OS. From your application (java or .net), you use abstract APIs (sockets, ftp, http, webservices, etc.) that rely on this os-managed connection, without needing to know it. – Benoit Courtine Oct 18 '10 at 19:08
  • You want to be able to select a way of making connection from hand held device directly from your app? If you think Java for that, imposibru! User must select one of the possible connections among which is WiFi and allow app to use it for that session or that one time. – Cipi Oct 18 '10 at 19:10