Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
6k views

How to find a list of wireless networks (SSID's) in Java, C#, and/or C?

Is there a toolkit/package that is available that I could use to find a list of wireless networks (SSID's) that are available in either Java, C#, or C for Windows XP+? Any sample code would be ...
4
votes
3answers
2k views

On the iPhone, is it possible to find out which WIFI network we are connected to?

If yes, can we also get additional information about the network configuration? One useful way to do this could be getting the SSID of the current network. Is there an API to do that? Update: I ...
3
votes
1answer
272 views

Java Application to read WiFi Signal and SSID?

I've been searching a lot about this topic but I didn't find anything useful up till now, I want to create a simple application that can read WiFi Signal Strength SSID of AP using Java. Is this ...
2
votes
2answers
559 views

iOS WiFi network switching

My company is developing an iPhone accessory that requires a relatively high connectivity rate to the phone. Due to MFi limitations (USB 2 communications in HOST mode fair only around 100KBps), we're ...
2
votes
1answer
95 views

Is there a unique identifier for a saved netword on an Android device?

If I have to do some specific actions while connected to a specific wifi network, what can I save inside my DataBase to be sure that I'm connected exactly to that network? I saw that Android doesn't ...
2
votes
2answers
2k views

How to get SSID and RSSI for Win7 using C#

I am very new to Win7 and WMI. Please advice me where to see for active access point from WiFi and how to get ssid/rssi for each access point. I have use: ManagementClass mc = new ...
2
votes
1answer
1k views

better way to communicate between ad hoc wifi windows mobile devices

We are developing wireless ad hoc communication applications on windows mobile 6 devices using 802.11 in ad hoc mode. We are using HP iPAQ 910 devices and OpenNETCF smart device framework 2.3 for ...
1
vote
1answer
74 views

MonoTouch WIFI SSID

is there a possibility to get on an IPhone the connected WIFI SSID with Monotouch? I have found a possibility to check the Wi-Fi States but there is no way to check the SSID. ...
1
vote
1answer
90 views

MonoTouch Way to get Own phone number and Sim Id(SSID)?

Im stuck to get own phone number and Sim ID (SSID) using Monotouch I tryed: var v = NSUserDefaults.StandardUserDefaults.ValueForKey((NSString)@"SBFormattedPhoneNumber"); var t = ...
1
vote
2answers
290 views

My app is rejected. It access '/usr/lib/libpcap.A.dylib' What can I do to avoid it?

I submitted a simple app to the Mac OSX App Store, but it was rejected with the following explanation: "The application is creating files in, writing to, or opening for Read/Write access the ...
1
vote
0answers
373 views

Java - Get List of Wireless Networks in Range

I'm trying to get a list of wireless networks that are in range of the user. I would like the program to be able to get SSID (if broadcasting), Security Type (WEP, WPA, WPA2), and maybe a couple ...
1
vote
1answer
699 views

Getting OSX Connected Wi-Fi Network Name

I need to get the name of the currently connected Wi-Fi SSID on OSX. I've messed with the SystemConfiguration framework, I feel like it is there (as I am able to get the name of the network locaiton) ...
1
vote
2answers
2k views

Get the list of all SSIDs and their mac address

Is there a way to get a list of all SSID's and their mac address of reachable signals in my area? I tried the Nativ WlanApi in my c# code. What I get is the list of all ssid's, but for getting their ...
0
votes
0answers
42 views

Encrypted SSID in batch file

I am trying to connect myself to my wireless network with the Windows : netsh command using a batch file (just for fun). At one point I need to specify my SSID (and probably further in the steps my ...
0
votes
0answers
191 views

(Ruby) Find router's SSID/MAC address via code

(I'm on windows) So I'm writing a program in ruby that helps me out with scheduling and work. I'm going to tie it into various websites I use, email, and some social networking. I would like it to be ...
0
votes
2answers
646 views

How to get my wifi hotspot ssid in my current android system

I have a problem that I couldn't find my wifi hotspot ssid in my android system. I found many information from google, but nothing. Please help me to solve it. Thank you for your help:)
0
votes
1answer
202 views

Filter the scan of WifiManager possible?

I am trying to scan the stregth of several wireless signals. For that I use the WifiManager, in a loop I call startScan() and I have a broadcast receiver to get the results. My question is: How can ...
0
votes
2answers
592 views

Finding SSID of a wireless network with Java

We're doing a project coded in Java (compiled for JRE 1.6) and need some help with a little but apparently complicated feature: We want to do a certain action when a specific wireless network is ...
0
votes
1answer
236 views

Is there a standard that defines what is a valid SSID and password?

We are developing a wireless n/w configuration UI and need to check if a SSID is a valid one? Are there any restrictions on the character set? length ? anything more..
0
votes
2answers
467 views

Obtaining currently connected network name (SSID) in C++

I would like to obtain the name (SSID) of the wireless network that the computer is currently connected to. I've looked into the IP Helper API but it seems to have everything but that (DNS servers, IP ...
0
votes
1answer
544 views

Search for Wireless Network within iPhone Application?

How can I search for Wireless Network (and connect it after) within an iPhone Application? Is it possible?
0
votes
2answers
904 views

How to identify the currently available wireless networks with Python in Windows?

Is there a way to get a list of wireless networks (SSID's) that are currently available? And seeing what is the current connected network? Doesn't need to be exactly the SSID, I just need to ...
0
votes
3answers
1k views

Is there anyway to find out the ssid of the wifi access point within the browser using javascript?

Is there anyway to find out the ssid of the wifi access point you are connected to within the browser using javascript? If there isn't my guess would you'd have to write a plugin for it. I bet ...
-1
votes
0answers
26 views

change Android SSID tether-access point-hotspot

I´m trying to create a hotspot on android, but the SSID doesnt change. My code is: WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE); WifiConfiguration netConfig = new ...