I took over this C# project from some other engineer. This is a window form application in which I have to connect to an ad-hoc wireless network manually. The program uses the NativeWifi namespace (there are 2 other files: WlanApi.cs and Interop.cs) to manage the wlan interface. I am unsure about what exactly my program is using to manage the wireless network (is this ManagedWifi? ManagedWifi has no documentation so I can't tell).

EDIT: Ok, this is Managed Wifi API. Still, I don't see anything under Documentation tab at http://managedwifi.codeplex.com/documentation...

I have looked through some of the topic with similar titles, but I have yet to find my answer. Here's my problem:

My program is supposed to connect to the specified ad-hoc network, and when it finished connecting, it will start sending request to a specified address. I was able to get WlanNotificationData to tell the state of the wireless interface (connected, disconnected, disassociating, etc...). But this does not tell me whether the system is truly connected to the network. After 'Connected', it will still take a while for the system to 'Identify' the network, before request can be sent. Otherwise, I would often get timeout / fail to retrieve response exception. How can I tell when I am able to start sending request over the wireless network?

EDIT2: Perhaps I didn't make myself clear enough: When Wlan return Connected, if you look at Windows' wireless manager, it will usually say: "Identifying". During this period, my request often take a long time to receive the response (usually after windows' wireless manager say "Connected", or I get a timeout).

link|improve this question

I'm sorry, but I already stated a few things: 1. I have looked through all the topics related to my problem 2. I am not sure what my program is using 3. Managed Wifi documentation is severely lacking, thus I can't find out how to solve my problem. – Zekareisoujin Jul 18 '11 at 7:13
I did say that I would get exception after sending request even though it told me I am connected! – Zekareisoujin Jul 18 '11 at 7:17
1  
@Cody Gray, this isn't nonsense, until Windows 7 'identifies' (work/home/public) a network it locks the connection down pretty stringently. The identification process should take < 1s, but on random occassions it takes a really long time. – Jonathan Dickinson Jul 18 '11 at 9:42
1  
I have found zero information on how to determine which firewall a connection falls under, however, assuming you find out how to get that information you can just poll it until it changes to work/home. That, or just keep trying after you have been connected. – Jonathan Dickinson Jul 18 '11 at 11:08
But what I want to find out is when the network is ready / finished with its 'identifying'. After about a minute, the identifying process will eventually finish anyway. Also, even though my network is already identified beforehand as home/work etc (when it is connected it won't ask me to choose again), it will still take a long time to identify whenever I reconnect. Thank you for your helpful comment, I'm quite disappointed with the 33k rep poster above. – Zekareisoujin Jul 18 '11 at 13:47
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.