Wifi Management on XP (SP2/SP3) - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T05:12:18Zhttp://stackoverflow.com/feeds/question/31673http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/31673/wifi-management-on-xp-sp2-sp30Wifi Management on XP (SP2/SP3)Bob Nadler2008-08-28T04:38:15Z2008-10-21T10:24:11Z
<p>Wifi support on Vista is fine, but <a href="http://msdn.microsoft.com/en-us/library/bb204766.aspx" rel="nofollow">Native Wifi on XP</a> is half baked. <a href="http://msdn.microsoft.com/en-us/library/aa504121.aspx" rel="nofollow">NDIS 802.11 Wireless LAN Miniport Drivers</a> only gets you part of the way there (e.g. network scanning). From what I've read (and tried), the 802.11 NDIS drivers on XP will <em>not</em> allow you to configure a wireless connection. You have to use the Native Wifi API in order to do this. (Please, correct me if I'm wrong here.) Applications like <a href="http://www.metageek.net/products/inssider" rel="nofollow">InSSIDer</a> have helped me to understand the APIs, but InSSIDer is just a scanner and is not designed to configure Wifi networks.</p>
<p>So, the question is: where can I find some code examples (C# or C++) that deal with the configuration of Wifi networks on XP -- e.g. profile creation and connection management?</p>
<p>I should note that this is a XP Embedded application on a closed system where we can't use the built-in Wireless Zero Configuration (WZC). We have to build all Wifi management functionality into our .NET application.</p>
<p>Yes, I've Googled myself blue. It seems that someone should have a solution to this problem, but I can't find it. That's why I'm asking here.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/31673/wifi-management-on-xp-sp2-sp3/33145#331451Answer by Nick for Wifi Management on XP (SP2/SP3)Nick2008-08-28T19:11:15Z2008-08-28T19:17:06Z<p>We use WZC on XP and Native WiFi on Vista, but here's the code which we use on Vista, FWIW.</p>
<p>Profile creation:</p>
<pre><code>// open a handle to the service
if ((dwError = WlanOpenHandle(
WLAN_API_VERSION,
NULL, // reserved
&dwServiceVersion,
&hClient
)) != ERROR_SUCCESS)
{
hClient = NULL;
}
return dwError;
dwError=WlanSetProfile(hClient, &guid, 0, profile, NULL, TRUE, NULL, &reason_code);
</code></pre>
<p>Make a connection:</p>
<pre><code> WLAN_CONNECTION_PARAMETERS conn;
conn.wlanConnectionMode=wlan_connection_mode_profile;
conn.strProfile=name;
conn.pDot11Ssid=NULL;
conn.pDesiredBssidList=NULL;
conn.dot11BssType=dot11_BSS_type_independent;
conn.dwFlags=NULL;
dwError = WlanConnect(hClient, &guid, &conn, NULL);
</code></pre>
<p>Check for connection:</p>
<pre><code> BOOL ret=FALSE;
DWORD dwError;
DWORD size;
void *p=NULL;
WLAN_INTERFACE_STATE *ps;
dwError = WlanQueryInterface(hClient, &guid, wlan_intf_opcode_interface_state, NULL, &size, &p, NULL);
ps=(WLAN_INTERFACE_STATE *)p;
if(dwError!=0)
ret=FALSE;
else
if(*ps==wlan_interface_state_connected)
ret=TRUE;
if(p!=NULL) WlanFreeMemory(p);
return ret;
</code></pre>
<p>To keep connected to the netowrk, just spawn a thread then keep checking for a connection, then re-connecting if need be.</p>
<p>EDIT: Man this markup stuff is lame. Takes me like 3 edits to get the farking thing right.</p>
http://stackoverflow.com/questions/31673/wifi-management-on-xp-sp2-sp3/34930#349301Answer by Bob Nadler for Wifi Management on XP (SP2/SP3)Bob Nadler2008-08-29T18:17:28Z2008-08-29T18:17:28Z<p>Thanks for the feedback Nick. I've pretty much gotten the profile and connection management working. The trick is figuring out which parts of the Native Wifi API are <strong>not</strong> supported on XP. Fortunately, the <a href="http://www.codeplex.com/managedwifi" rel="nofollow">Managed Wifi API</a> has connect/disconnect notification events that do work on XP (<a href="http://msdn.microsoft.com/en-us/library/system.net.networkinformation.networkchange.aspx" rel="nofollow">NetworkChange</a> also gives similar change events).</p>