0

オープン Wi-Fi ホットスポットに接続するための正しい wlan プロファイルは何ですか? 私はネイティブ WiFi API を使用しており、次のプロファイルを使用しています。

      @"<?xml version=""1.0"" encoding=""US-ASCII""?>
        <WLANProfile xmlns=""http://www.microsoft.com/networking/WLAN/profile/v1"">
            <name>name_goes_here</name>
            <SSIDConfig>
                <SSID>
                    <name>name_goes_here</name>
                </SSID>                    
            </SSIDConfig>
            <connectionType>ESS</connectionType>
            <connectionMode>manual</connectionMode>
            <MSM>
                <security>
                    <authEncryption>
                        <authentication>open</authentication>
                    </authEncryption>
                </security>
            </MSM>
        </WLANProfile>"

しかし、ネットワーク接続プロファイルの構成が壊れていると言って失敗します。

4

1 に答える 1

0
@"<?xml version=""1.0""?>
<WLANProfile xmlns=""http://www.microsoft.com/networking/WLAN/profile/v1"">
<name>name_goes_here</name>
<SSIDConfig>
  <SSID>
    <name>name_goes_here</name>
  </SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<MSM>
  <security>
    <authEncryption>
      <authentication>open</authentication>
      <encryption>none</encryption>
      <useOneX>false</useOneX>
    </authEncryption>
  </security>
</MSM>
</WLANProfile>";  
于 2013-10-31T09:28:07.423 に答える