You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Joe Bowser (Commented) (JIRA)" <ji...@apache.org> on 2012/02/01 21:46:58 UTC

[jira] [Commented] (CB-77) Connection reported as Connection.NONE

    [ https://issues.apache.org/jira/browse/CB-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13198123#comment-13198123 ] 

Joe Bowser commented on CB-77:
------------------------------

This relates to some of the AOSP hackery that I'm currently working on.
                
> Connection reported as Connection.NONE
> --------------------------------------
>
>                 Key: CB-77
>                 URL: https://issues.apache.org/jira/browse/CB-77
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: Android
>            Reporter: Simon MacDonald
>            Assignee: Joe Bowser
>             Fix For: 2.0.0
>
>
> To be pursuant with Apple guidelines, I recently put checks into my code to detect offline/online status for my apps and alert accordingly. I used this function to detect:
> function isOnline() {
> // Presume online unless PhoneGap or HTML5 tell us otherwise.
> if (navigator.network && navigator.network.connection.type == Connection.NONE) {
> return false;
> }
> if (navigator.onLine && typeof navigator.onLine == 'boolean' && navigator.onLine === false) {
> return false;
> }
> return true;
> }
> This works as expected for me, but for one of my users (on an Android 2.3), it reports Connection.NONE even when they have perfect reception. So I'm no longer using the network.connection status.
> Maybe it doesn't work for some carriers? Or it shouldn't be relied upon for disabling functionality?
> @pamelafox that is a weird one. Going back over the code the only time Connection.NONE should be returned is when the the NetworkInfo object is null or it's isConnected() method returns false.
> Perhaps there is a window as the application starts up where the network info is not ready. Are you making this check after a deviceready event?
> @pamelafox Can you ask your user if they are roaming when the have this problem? If so I think it may be a bug with Android itself.
> http://code.google.com/p/android/issues/detail?id=11866

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira