Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
7answers
10k views

Check if Internet Connection Exists with Javascript?

How do you check if there is an internet connection using Javascript? That way I could have some conditionals saying "use the google cached version of JQuery during production, use either that or a ...
8
votes
5answers
7k views

ANDROID: if WiFi is enabled AND active, launch an intent

This is what I would like to do : => IF WiFi is enabled AND active, launch an intent (in fact it's a WebView that gets its content=>the instructions of my app on the web) => IF NOT, then I would ...
7
votes
5answers
3k views

How to detect working internet connection in C#?

I have a C# code that basically uploads a file via FTP protocol (using FtpWebRequest). I'd like, however, to first determine whether there is a working internet connection before trying to upload the ...
7
votes
7answers
7k views

Detect internet Connection using Java

I want to see if anyone has an easy way of detecting if there is an internet connection when using Java. The current app used the "InternetGetConnectedState" method in the WinInit DLL for windows, but ...
5
votes
2answers
929 views

Bash script to (more or less) reliably check if the internet is up

I need a bash (or a plain shell) script to put in a cron job that every minute checks if the internet is up. This is how I did it: #! /bin/sh host1=google.com host2=wikipedia.org curr_date=`date ...
5
votes
3answers
659 views

Check if Internet Connection Exists with Ruby?

Just asked how to check if an internet connection exists using javascript and got some great answers. What's the easiest way to do this in Ruby? In trying to make generated html markup code as clean ...
5
votes
2answers
531 views

How to find out whether computer is connected to internet?

how can I find it in python? thanks in advance
4
votes
1answer
331 views

Programmatically changing Control Panel network options to connect to VPN [closed]

Possible Duplicate: Programmatically changing Control Panel network options to connect to VPN I offer a VPN service to my users, and a lot of them complain that it's a hassle to set up a ...
4
votes
5answers
5k views

Detect an internet connection activation with Delphi

I've been using a 3G wireless card for a while and every time I connect, my anti-virus fires up the updates. I'm wondering what is the Win32 API set of functions that I can use to, either, get ...
3
votes
2answers
130 views

Check availability of Internet Connection + Communicate between 2 threads

I have 2 questions: How can I check if Internet connection is whether turned on or turned off? I'm using Html Unit and I'm working on Windows. I want to make a JLabel that states the availability of ...
3
votes
6answers
326 views

Check for internet connection constantly

How can I check for an internet connection constantly in my application and respond if the connection is not available? Currently I am using: while(true) { if(HasConnection()) { ...
3
votes
2answers
163 views

How to connect the default dialup in XP or seven Using C#?

I have a dialup connection in my system namely "Personal Internet Movil" and i need to connect and disconnect this connection using C#. Thanks in advance
3
votes
6answers
413 views

What should I use instead of ping?

In my Windows Forms application (on startup) I use the ping command to check if both the Internet connection and my SQL Server are alive. Is there any "better" way-command I should use for ...
2
votes
3answers
89 views

How to disable Internet Connection in Android Emulator?

i am trying to check internet connectivity in android using the following method. I have a WIFI connection private boolean checkInternetConnection() { ConnectivityManager cm = ...
2
votes
2answers
105 views

how to check InternetConnection in wp7?

i want to check internet connection in my application.but, its not displaying properly. i am using this code for internet connection: NetworkInterface.GetIsNetworkAvailable(); in this code always ...
2
votes
2answers
152 views

Checking if there is an active internet connection iPhone situation

I would like to check to see if the user has an active internet connection. This is how I have implemented it. It seems to work fine but the problem is it ALWAYS shows that there is no connection on ...
2
votes
2answers
205 views

Determine in php script if connected to internet?

How can I check if I'm connected to the internet from my PHP script which is running on my dev machine (not on a server somewhere)? I run the script to download a set of files (which may or may not ...
2
votes
1answer
233 views

Automatic reconnect to internet

How can I programatically force system (Windows 7) to reconnect to internet? I need IP changed. I'm using USB Modem Huawei E1750
2
votes
1answer
172 views

Handling Internet Connection Hiccups and Database Connections

I realize that there is no way to atomically guarantee: if(hasInternet) doDatabaseCall(); However, what is the correct way of handling connection problems when dealing with DbConnection and ...
2
votes
1answer
84 views

Can I automatize pppoeconf?

I am a Ubuntu user (10.04 as of now), since I use it, over a year, I have to manually enter the command $ sudo pppoeconf everytime I turn on the computer and want to connect to the internet, the I ...
2
votes
4answers
629 views

Java - How to detect that the internet connection has got disconnected through a java desktop application?

I am developing a Java Desktop Application that access internet. It is a multi-threaded application, each thread do the same work (means each thread is an instance of same Thread class). Now, as all ...
2
votes
1answer
265 views

Nokia E50 and mac internet sharing

I am using a nokia E50 and imac. my imac is connected to the internet. i want to share my internet connection to my E50 too via bluetooth. is there any way to do this. help needed.. is there any ...
2
votes
4answers
968 views

Laptop Battery Status?

Is there any way to get the status of the Battery (charging/discharging/Current Charge/Capacity/etc...) from a C++ program in a portable manner between Windows & Linux. I'm doing a small program ...
2
votes
2answers
2k views

How can I bind TCPListener to an external IP address?

I have a client/server style application which communicates using WCF which all works great. One function of the application is to get files from client machines onto the server (Central Control). ...
1
vote
1answer
96 views

Internet connection is apparently paused when screen turns off

I am running a service in my android application (2.3.4) that is uploading results from a database to an online server. I am doing the uploading in a thread inside the service. The problem I am ...
1
vote
1answer
118 views

How to check if user has disable internet?

My app needs internet connection so it check if user have connection or not. But it check that only when activity starts so how I can detect if user has no connection after activity is started? HERE ...
1
vote
1answer
97 views

Checking internet connection as relentless service in android

I am developing an application, where there is a need to check internet connection availability as a continuous procees as long as the whole application is running and destroy when application is not ...
1
vote
2answers
528 views

JQuery Mobile Detected if there's internet Connection

What is the best way to detect if there's internet connection or not on my mobile via my web app?
1
vote
2answers
1k views

How to check currently internet connection is available or not in android

Hi friends I want to execute my application offline also so i need to check currently internet connection is avilable or not can anybody tell how to check internet is available or not in android? ...
1
vote
7answers
358 views

Determine in php script if connected to internet?

How can I check if I'm connected to the internet from my PHP script which is running on my dev machine? I run the script to download a set of files (which may or may not exist) using wget. If I try ...
1
vote
3answers
253 views

How to use the WinInet API from Java?

According to this answer to an earlier question of mine, the WinInet Windows API is the correct way to read and write internet connection settings in Windows. How can I use this API from Java? I'd ...
1
vote
2answers
165 views

How to detect Internet Connection Sharing through sniffing?

I'm sniffing my current connection, but I have a second computer linked to mine with ICS. And my application makes no difference between the two. How can I detect the second one and filter it?
1
vote
1answer
158 views

Setup.exe files downloading without cab files over poor connections

We have customers who are trying to download a setup.exe file over mobile connections that appear to be very slow. They have reported that when they click on the downloaded setup.exe, the install ...
1
vote
4answers
125 views

What is the length of time to send a list of 200,000 integers from a client's browser to an internet sever?

Over the connections that most people in the USA have in their homes, what is the approximate length of time to send a list of 200,000 integers from a client's browser to an internet sever (say Google ...
1
vote
2answers
1k views

Android: internet access connection

I'm retreiving data from an internet service. Is there a way to control which (data) connection the device uses for connecting to a website?(access via wifi or via the cellular network)
1
vote
2answers
550 views

Visual Studio internet connection failue

Last night my Visual Studio was working fine. Today it fails to connect to the internet (can't download rss feeds or connect to my TFS Server). My internet connection is working fine (I am using it ...
1
vote
5answers
998 views

How can make a C# Client - Server run over internet?

The current application that I'm working on is a Client - Server C# application and work very well on a network. Now I'm thinking if it can run over the internet. The question is how to do this? How ...
1
vote
4answers
2k views

Check if host computer is online with PHP?

I've been having some issues with my Internet connection and I was wondering what is the fastest, error-less and most reliable way to check if the host computer is connected to the Internet. I'm ...
1
vote
1answer
2k views

Consuming a web service through an internet proxy server, using a WCF client in C#; providing proxy server authentication

I have a client program that consumes a web service. It works quite well in a number of installations. Now I have a situation where a new customer connects to the internet via a proxy server, and my ...
1
vote
3answers
172 views

Is there a Windows hook for when the internet is connected/disconnected?

I could do an endless timer checking IsInetOffline(), but I would prefer a hook callback that tells me when I plug/unplug the ethernet network cable or connect to wireless internet. Is there such a ...
1
vote
1answer
82 views

internet connection problem

I am using Visual Web Developer express and when I try to display the webpage I'm working on in a browser Internet Explorer cannot find the page. When I ask Internet Explorer to diagnose the problem I ...
1
vote
1answer
787 views

how to check netconnection in firewall & proxy environment in c#

i have used the following code to check for internet connection it works perfectly without firewall & proxy. how do i check net connection in firewall & proxy mode. please help me private ...
0
votes
2answers
63 views

How to reconnect the Network Connection in Android Application?

Hai t try to detect the net connection is available for frequently.So i tried by BroadcastReceiverfunction.But Its not Working.any Body kindly Help me Thanks in advance! I want to Check 5 sec ones ...
0
votes
1answer
86 views

Works with Android 2.2 but not Android 2.3

i make an app which accept xml data, but when i send query for this resource , looks that there is no connection . I added android internet permissions and have net in browser but in my app there ...
0
votes
2answers
64 views

How to know whether user is connected to internet or not? [closed]

Possible Duplicate: How to check if internet connection is present in java? I have a java desktop app which connects to a online document. Now how can I determine whether the user is ...
0
votes
1answer
50 views

how to connect to the internet on my android application while i have a server with a proxy “IP:Port” and asks for a username and password

I am developing an application on android, and there is a proxy server in the company preventing it from accessing the internet. I recall there are Http methods in java that serves the purpose, I ...
0
votes
1answer
64 views

Is there an functionality in HTML5 to discover client internet connection type?

Is there a way for an HTML5 web-app to discover the connection-type on the client? (Something similar to, say, Apple's reachability class) I want to mainly check whether the connection is a ...
0
votes
1answer
119 views

Any Reachability Experts out there?

My App was working perfectly well until I incorporated the Reachability .h and .m files to it to check for internet connectivity. While for the most part everything still runs perfectly well (all web ...
0
votes
0answers
72 views

How check net connection is available or not? [closed]

Possible Duplicate: How to implement Reachability for iphone application I am designing an application in which i am using map view which is download. Now i want apply event for testing net ...
0
votes
2answers
99 views

Disable button when no internet connection

How do I disable a button when there is no connection to a network / internet in iOS?

1 2