wifi

How to get name of wifi-network out of android using android API?

I thought that I should use NetworkInterface::getDisplayName. I got some name, but this name is different that this name which I can see, when I choosing to which network I want to connect. Please help.. [EDIT] acording to Loxley answer: WifiManager wifiMgr = (WifiManager) getActivity().getSystemService(Context.WIFI_SERVICE); WifiInf...

Android: Connect two phones wirelessly?

I'm interested in fleshing out an idea for a Android phone app, and I'm wondering if this is possible. So I would have the app running in the background on Phone A, then when it finds another Android phone B, it saves certain information like time, GPS location, just state variables. But if the other phone is also running the same app, ...

Wifi connectivity through various devices

Hi all, I'm working on the connecting devices through wifi to each other. When i connect device to wifi it should show me the list of devices in network, and i should be able to choose any one of it to communicate with. Is their a simple way to searching through the network and get the list of devices? If their is, please guide me for?...

How to determine security types, like WPA, WPA2, WEP, using Apple80211?

I can scan and get the Wifi list in iPhoneOS4.0. At this time, I neet to determine security types of each Wifi access point. How can I do that using the value of "CAPABILITIES" key of scanned result's NSDicionary? Which one is one of NONE, WPA, WPA2, WEP? The value of CAPABILITIES is 1057, 1025,34,33,2,1073,1041 and 3121, etc... It ...

Is it possible to configure Wireless Settings via text file in XP?

I am sending out kiosks with no control panel access and no keyboard. Problem is, somehow the wireless card needs to be configured to work with routers. So need to specify SSID and encryption settings without actually keying it in on the kiosk. Hoping to be able to put in a USB drive with a wirelessconfig.txt file and have windows XP...

Winpcap sometimes mysteriously fails,anyone knows the reason?

Yesterday in my office,I was using wireless and winpcap just fails. And today it's OK again(not wireless this time). Anyone knows the reason? ...

Is there a solid .Net wrapper for the Managed Wifi Win32 API?

Hi -- Has anyone developed (either as open source or as a reasonably-priced commercial offering) a .Net implementation of the Win32 Native Wifi API? Or does anyone here know of such a thing? I've done about an hour and a half of spelunking on Google, MSDN, pinvoke.net and here, and haven't found anything. If I've missed something ...

How to create WiFi popup login page

When I go to a place with a WiFi hotspot (such as Panera Bread) and connect with my iPhone, the hotspot login page appears as a popup. That is, no matter what app I'm running or what web page I'm on, the login page scrolls up from the bottom, asks for my login credentials, and then disappears. But at some other hotspots, I don't get the...

How to use kismet as a command-line tool

I tried kismet, but it keeps putting me into this insane ncurses UI mode. In this mode, everything is a keyboard shortcut and it is not documented on the screen. Then when I exit, my WiFi stops working and I need to reboot. I just want something like tcpdump so I can sed, awk, and less my way to what I want to read. Does anyone know ...

Download large file in Android

I have an app that downloads a very large file (over 50MB). Unfortunately I'm getting reports that the download fails. Below is the logcat of one such failure, which ends with a java.net.SocketException: The operation timed out. In-between it has various messages from the WifiMonitor. I don't know how to interpret these messages. Is ...

android scan for wifi network

i am trying out this code for scanning wifi networks but getting null pointer exception not sure what problem i registered all permission in manifest. IntentFilter i = new IntentFilter(); i.addAction(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION); registerReceiver(new BroadcastReceiver(){ @Override public ...

Android: How can we know the current connection type (ex. Wifi, 3G, 2G...) programmatically?

I see this thread but it could not help me much. ...

Android phone as Wi-Fi access point

I am developing an application which requires android phone to be configured as a wireless access point. Any ideas? ...

How to know the security type like OPEN, WPA, WPA2, WEP, when using Apple80211 api?

The wifi scanning apps like eWifi, WiFiFoFum and so on in Cydia can know the security type. How the apps know the security type like OPEN, WPA, WPA2, WEP, when using Apple80211 api? The value of CAPABILITIES is 1057, 1025,34,33,2,1073,1041 and 3121, etc... It is too various. I don't know what it represents. I am using "WEP" and "WPA_...

check wifi connection type on android

Hi, Is there anyone knows how to programmatically check on Android if the current wifi connection is made to a WPA secured AP, or a weaker WEP secured AP, or a unsecure open AP? Thanks! ...

How to serve a website over a wifi without internet?

I want to serve a website over an open wifi connection but I do not want this wifi connection to have access to the internet. Is this possible and how would I go about doing it. I have setup websites locally and have gotten access in the browser through localhost or the IP address but I am not sure how I would go about setting up a webs...

Can one reset the Windows Native Wifi signal strength update interval?

Hi -- I'm writing a .Net class library that's to connect to a specific Wifi network whose name is known in advance, when the signal strength is above a certain threshold. It all works beautifully, EXCEPT that peformance is a bit spotty. I have a polling thread that repeatedly calls WlanGetAvailableNetworks(). This loop performs wel...

iPhone objective-c wifi spots list

Hi everyone, I've got a question about iPhone developing. Is there a example code or tutorial for getting a list or maybe an array with wifi spots that where find in the current environment? Thanks a lot! :) ...

How does the home wireless perform if it connects to a public access point?

Assuming that there is a access point(hotspot) covering a dozen of houses. Besides, these houses also have their own wireless network. So, if everyone in each house connect to the Internet at the same time, will problems happen? The performance of this network will be reduced or not? ...

Algorithm for smoothing wifi signal strength

When measuring the strength of a Wifi signal between two static points, the measurement constantly fluctuates due to environmental factors. What is a good algorithm to use smooth out small fluctuations and detect significant changes? Exponential moving average? ...