Using NEHotspotConfigurationManager to connect to a wifi with no internet
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
add a comment |
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
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 '18 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
Nov 28 '18 at 6:37
Request for API was denied so before they fix the bug I can't proceed.
– Vili
Nov 28 '18 at 6:41
add a comment |
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
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
ios iphone xamarin.forms
asked Nov 21 '18 at 9:19
ViliVili
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 '18 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
Nov 28 '18 at 6:37
Request for API was denied so before they fix the bug I can't proceed.
– Vili
Nov 28 '18 at 6:41
add a comment |
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 '18 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
Nov 28 '18 at 6:37
Request for API was denied so before they fix the bug I can't proceed.
– Vili
Nov 28 '18 at 6:41
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 '18 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 '18 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
Nov 28 '18 at 6:37
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
Nov 28 '18 at 6:37
Request for API was denied so before they fix the bug I can't proceed.
– Vili
Nov 28 '18 at 6:41
Request for API was denied so before they fix the bug I can't proceed.
– Vili
Nov 28 '18 at 6:41
add a comment |
1 Answer
1
active
oldest
votes
I found (a workaround for) the problem. It was how the iOS handles Asus WAN down browser redirect notice. It responds with a browser redirect and iOS thinks it is an login. I had to set the Enable WAN down browser redirect notice to false in the router Administration settings and then it worked as it should. Problem remains if and when we don't have administrative rights to the router.
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I found (a workaround for) the problem. It was how the iOS handles Asus WAN down browser redirect notice. It responds with a browser redirect and iOS thinks it is an login. I had to set the Enable WAN down browser redirect notice to false in the router Administration settings and then it worked as it should. Problem remains if and when we don't have administrative rights to the router.
add a comment |
I found (a workaround for) the problem. It was how the iOS handles Asus WAN down browser redirect notice. It responds with a browser redirect and iOS thinks it is an login. I had to set the Enable WAN down browser redirect notice to false in the router Administration settings and then it worked as it should. Problem remains if and when we don't have administrative rights to the router.
add a comment |
I found (a workaround for) the problem. It was how the iOS handles Asus WAN down browser redirect notice. It responds with a browser redirect and iOS thinks it is an login. I had to set the Enable WAN down browser redirect notice to false in the router Administration settings and then it worked as it should. Problem remains if and when we don't have administrative rights to the router.
I found (a workaround for) the problem. It was how the iOS handles Asus WAN down browser redirect notice. It responds with a browser redirect and iOS thinks it is an login. I had to set the Enable WAN down browser redirect notice to false in the router Administration settings and then it worked as it should. Problem remains if and when we don't have administrative rights to the router.
answered Dec 3 '18 at 6:26
ViliVili
7251821
7251821
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 '18 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
Nov 28 '18 at 6:37
Request for API was denied so before they fix the bug I can't proceed.
– Vili
Nov 28 '18 at 6:41