Using NEHotspotConfigurationManager to connect to a wifi with no internet











up vote
0
down vote

favorite












I am having difficulties connecting to a wifi with no internet connection on my iOS device. The internet connection is missing by design as the app is used to control devices in the network and no external connection to internet is available.



IPhone I am using is version 12.1. Xamarin.IOS is 11.14 and Xamarin.Forms 3.3.0



The connection is made successfully and I get prompt




"appname" wants to join Wi-Fi Network "ssid"?




but after selecting Join nothing happens. After when I go to Settings - Wifi page I get a page with title Log In and the page just says that the router (asus) has wan turned off. If I select Cancel I can select "Use Without Internet" and then I am connected.



Even after making the connection I still can't connect to a device in the network (by pinging it) not sure if that is still the same issue or not.



App is written using Xamarin.Forms and here is the part where the connection is created.



    public void ConnectToWifi(string ssid, string password)
{
using (var _wifiManager = new NEHotspotConfigurationManager())
{

var wifiConfig = new NEHotspotConfiguration(ssid, password, false)
{
JoinOnce = true
};

_wifiManager.ApplyConfiguration(wifiConfig, error => CompletionHandler(error, ssid));

}

}

private void CompletionHandler(NSError error, string ssid)
{
if (error != null)
{
Console.WriteLine($"Error while connecting to WiFi network {ssid}: {error}");
}
}









share|improve this question






















  • For XCode 10 make sure you have AccessWiFi entitlement set than only you will be able to access the SSID name. You can refer this blog mobiarch.wordpress.com/2016/11/02/working-with-nehotspothelper
    – MonkeySteve
    Nov 22 at 9:06










  • Thanks. It really seems that iOS has a bug/feature on how it handles connecting to WiFi network without internet connection. I have made a request to use network-extension and will try to make a comment here how it works out.
    – Vili
    yesterday










  • Request for API was denied so before they fix the bug I can't proceed.
    – Vili
    yesterday















up vote
0
down vote

favorite












I am having difficulties connecting to a wifi with no internet connection on my iOS device. The internet connection is missing by design as the app is used to control devices in the network and no external connection to internet is available.



IPhone I am using is version 12.1. Xamarin.IOS is 11.14 and Xamarin.Forms 3.3.0



The connection is made successfully and I get prompt




"appname" wants to join Wi-Fi Network "ssid"?




but after selecting Join nothing happens. After when I go to Settings - Wifi page I get a page with title Log In and the page just says that the router (asus) has wan turned off. If I select Cancel I can select "Use Without Internet" and then I am connected.



Even after making the connection I still can't connect to a device in the network (by pinging it) not sure if that is still the same issue or not.



App is written using Xamarin.Forms and here is the part where the connection is created.



    public void ConnectToWifi(string ssid, string password)
{
using (var _wifiManager = new NEHotspotConfigurationManager())
{

var wifiConfig = new NEHotspotConfiguration(ssid, password, false)
{
JoinOnce = true
};

_wifiManager.ApplyConfiguration(wifiConfig, error => CompletionHandler(error, ssid));

}

}

private void CompletionHandler(NSError error, string ssid)
{
if (error != null)
{
Console.WriteLine($"Error while connecting to WiFi network {ssid}: {error}");
}
}









share|improve this question






















  • For XCode 10 make sure you have AccessWiFi entitlement set than only you will be able to access the SSID name. You can refer this blog mobiarch.wordpress.com/2016/11/02/working-with-nehotspothelper
    – MonkeySteve
    Nov 22 at 9:06










  • Thanks. It really seems that iOS has a bug/feature on how it handles connecting to WiFi network without internet connection. I have made a request to use network-extension and will try to make a comment here how it works out.
    – Vili
    yesterday










  • Request for API was denied so before they fix the bug I can't proceed.
    – Vili
    yesterday













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am having difficulties connecting to a wifi with no internet connection on my iOS device. The internet connection is missing by design as the app is used to control devices in the network and no external connection to internet is available.



IPhone I am using is version 12.1. Xamarin.IOS is 11.14 and Xamarin.Forms 3.3.0



The connection is made successfully and I get prompt




"appname" wants to join Wi-Fi Network "ssid"?




but after selecting Join nothing happens. After when I go to Settings - Wifi page I get a page with title Log In and the page just says that the router (asus) has wan turned off. If I select Cancel I can select "Use Without Internet" and then I am connected.



Even after making the connection I still can't connect to a device in the network (by pinging it) not sure if that is still the same issue or not.



App is written using Xamarin.Forms and here is the part where the connection is created.



    public void ConnectToWifi(string ssid, string password)
{
using (var _wifiManager = new NEHotspotConfigurationManager())
{

var wifiConfig = new NEHotspotConfiguration(ssid, password, false)
{
JoinOnce = true
};

_wifiManager.ApplyConfiguration(wifiConfig, error => CompletionHandler(error, ssid));

}

}

private void CompletionHandler(NSError error, string ssid)
{
if (error != null)
{
Console.WriteLine($"Error while connecting to WiFi network {ssid}: {error}");
}
}









share|improve this question













I am having difficulties connecting to a wifi with no internet connection on my iOS device. The internet connection is missing by design as the app is used to control devices in the network and no external connection to internet is available.



IPhone I am using is version 12.1. Xamarin.IOS is 11.14 and Xamarin.Forms 3.3.0



The connection is made successfully and I get prompt




"appname" wants to join Wi-Fi Network "ssid"?




but after selecting Join nothing happens. After when I go to Settings - Wifi page I get a page with title Log In and the page just says that the router (asus) has wan turned off. If I select Cancel I can select "Use Without Internet" and then I am connected.



Even after making the connection I still can't connect to a device in the network (by pinging it) not sure if that is still the same issue or not.



App is written using Xamarin.Forms and here is the part where the connection is created.



    public void ConnectToWifi(string ssid, string password)
{
using (var _wifiManager = new NEHotspotConfigurationManager())
{

var wifiConfig = new NEHotspotConfiguration(ssid, password, false)
{
JoinOnce = true
};

_wifiManager.ApplyConfiguration(wifiConfig, error => CompletionHandler(error, ssid));

}

}

private void CompletionHandler(NSError error, string ssid)
{
if (error != null)
{
Console.WriteLine($"Error while connecting to WiFi network {ssid}: {error}");
}
}






ios iphone xamarin.forms






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 at 9:19









Vili

7251821




7251821












  • For XCode 10 make sure you have AccessWiFi entitlement set than only you will be able to access the SSID name. You can refer this blog mobiarch.wordpress.com/2016/11/02/working-with-nehotspothelper
    – MonkeySteve
    Nov 22 at 9:06










  • Thanks. It really seems that iOS has a bug/feature on how it handles connecting to WiFi network without internet connection. I have made a request to use network-extension and will try to make a comment here how it works out.
    – Vili
    yesterday










  • Request for API was denied so before they fix the bug I can't proceed.
    – Vili
    yesterday


















  • For XCode 10 make sure you have AccessWiFi entitlement set than only you will be able to access the SSID name. You can refer this blog mobiarch.wordpress.com/2016/11/02/working-with-nehotspothelper
    – MonkeySteve
    Nov 22 at 9:06










  • Thanks. It really seems that iOS has a bug/feature on how it handles connecting to WiFi network without internet connection. I have made a request to use network-extension and will try to make a comment here how it works out.
    – Vili
    yesterday










  • Request for API was denied so before they fix the bug I can't proceed.
    – Vili
    yesterday
















For XCode 10 make sure you have AccessWiFi entitlement set than only you will be able to access the SSID name. You can refer this blog mobiarch.wordpress.com/2016/11/02/working-with-nehotspothelper
– MonkeySteve
Nov 22 at 9:06




For XCode 10 make sure you have AccessWiFi entitlement set than only you will be able to access the SSID name. You can refer this blog mobiarch.wordpress.com/2016/11/02/working-with-nehotspothelper
– MonkeySteve
Nov 22 at 9:06












Thanks. It really seems that iOS has a bug/feature on how it handles connecting to WiFi network without internet connection. I have made a request to use network-extension and will try to make a comment here how it works out.
– Vili
yesterday




Thanks. It really seems that iOS has a bug/feature on how it handles connecting to WiFi network without internet connection. I have made a request to use network-extension and will try to make a comment here how it works out.
– Vili
yesterday












Request for API was denied so before they fix the bug I can't proceed.
– Vili
yesterday




Request for API was denied so before they fix the bug I can't proceed.
– Vili
yesterday

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53408747%2fusing-nehotspotconfigurationmanager-to-connect-to-a-wifi-with-no-internet%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53408747%2fusing-nehotspotconfigurationmanager-to-connect-to-a-wifi-with-no-internet%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Berounka

Sphinx de Gizeh

Different font size/position of beamer's navigation symbols template's content depending on regular/plain...