473,499 Members | 1,572 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Detecting Internet Connection

I'm facing a problem where I need to verify that my windows forms application has access to the internet before it can do anything. Currently, the only way I can think of is by creating a HttpWebRequest and point it to the specified URL I wish to connect to later on, and if that throws an error, I know I don't have an internet connection. Is this the best method for detecting an internet connection, or is there some sort of routine that I need to follow that is more tuned for performance?

Thanks for your help!

Matt Hawley, MCAD .NET
http://www.eworldui.net
Jul 21 '05 #1
6 2552
Elp

"Matt Hawley" <mhawley@!n!o!s!p!a!m!.integrityts.com> wrote in message
news:eF**************@TK2MSFTNGP10.phx.gbl...
I'm facing a problem where I need to verify that my windows forms

application has access to the internet before it can do anything. Currently,
the only way I can think of is by creating a HttpWebRequest and point it to
the specified URL I wish to connect to later on, and if that throws an
error, I know I don't have an internet connection. Is this the best method
for detecting an internet connection, or is there some sort of routine that
I need to follow that is more tuned for performance?

This seems to be the only reliable method to check for an internet
connection. Google will give you other solutions but they generaly rely on
checking if there's a network device configured which doesn't ensure you
that the computer has actually access to the internet. And even if it has
access to the internet, it may be behind a proxy server that restricts this
access to some sites or particular protocols. So the only way to know for
sure if a computer can access your particular site is to try...
Jul 21 '05 #2
Elp

"Matt Hawley" <mhawley@!n!o!s!p!a!m!.integrityts.com> wrote in message
news:eF**************@TK2MSFTNGP10.phx.gbl...
I'm facing a problem where I need to verify that my windows forms

application has access to the internet before it can do anything. Currently,
the only way I can think of is by creating a HttpWebRequest and point it to
the specified URL I wish to connect to later on, and if that throws an
error, I know I don't have an internet connection. Is this the best method
for detecting an internet connection, or is there some sort of routine that
I need to follow that is more tuned for performance?

This seems to be the only reliable method to check for an internet
connection. Google will give you other solutions but they generaly rely on
checking if there's a network device configured which doesn't ensure you
that the computer has actually access to the internet. And even if it has
access to the internet, it may be behind a proxy server that restricts this
access to some sites or particular protocols. So the only way to know for
sure if a computer can access your particular site is to try...
Jul 21 '05 #3
Good explanation. Thanks!

Matt Hawley, MCAD .NET
http://www.eworldui.net
"Matt Hawley" <mhawley@!n!o!s!p!a!m!.integrityts.com> wrote in message
news:eF**************@TK2MSFTNGP10.phx.gbl...
I'm facing a problem where I need to verify that my windows forms

application has access to the internet before it can do anything. Currently,
the only way I can think of is by creating a HttpWebRequest and point it to
the specified URL I wish to connect to later on, and if that throws an
error, I know I don't have an internet connection. Is this the best method
for detecting an internet connection, or is there some sort of routine that
I need to follow that is more tuned for performance?

This seems to be the only reliable method to check for an internet
connection. Google will give you other solutions but they generaly rely on
checking if there's a network device configured which doesn't ensure you
that the computer has actually access to the internet. And even if it has
access to the internet, it may be behind a proxy server that restricts this
access to some sites or particular protocols. So the only way to know for
sure if a computer can access your particular site is to try...

Jul 21 '05 #4
Good explanation. Thanks!

Matt Hawley, MCAD .NET
http://www.eworldui.net
"Matt Hawley" <mhawley@!n!o!s!p!a!m!.integrityts.com> wrote in message
news:eF**************@TK2MSFTNGP10.phx.gbl...
I'm facing a problem where I need to verify that my windows forms

application has access to the internet before it can do anything. Currently,
the only way I can think of is by creating a HttpWebRequest and point it to
the specified URL I wish to connect to later on, and if that throws an
error, I know I don't have an internet connection. Is this the best method
for detecting an internet connection, or is there some sort of routine that
I need to follow that is more tuned for performance?

This seems to be the only reliable method to check for an internet
connection. Google will give you other solutions but they generaly rely on
checking if there's a network device configured which doesn't ensure you
that the computer has actually access to the internet. And even if it has
access to the internet, it may be behind a proxy server that restricts this
access to some sites or particular protocols. So the only way to know for
sure if a computer can access your particular site is to try...

Jul 21 '05 #5
Yes ... Except that it doesn't always work.

Our WinForms app is heavily dependent on the Internet and our biggest
support problem is people with perfectly valid Internet connections that the
app (using the method below) fails to detect. It appears that .Net has a
great deal of trouble with some proxies that require login (including the MS
one) and, it seems, with VPN connections. We have not been able to resolve
this and it's increasingly frustrating as it's not anything we've been to
repro here although several customers, including IT managers and developers,
have noted this problem. It's very real and very, very frustrating. In all
cases, the customer using IE can access the URL just fine; it only fails
when we do the WebRequest.

Any suggestions would be appreciated.

The code we use is something like (simplified):

Try

wr = CType(WebRequest.Create(UseURL), HttpWebRequest)

Resp = CType(wr.GetResponse(), HttpWebResponse)

Catch we As WebException

'Connection failed

End try

One thing -- we do lock the ProtocolVersion to 1.0 for backwards compat with
some systems. Can that be an issue with some proxies? Is there something
we are specifically supposed to be to ensure that we login to the proxy?

Thanks, Steve

"Matt Hawley" <mhawley@!n!o!s!p!a!m!.integrityts.com> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
Good explanation. Thanks!

Matt Hawley, MCAD .NET
http://www.eworldui.net
"Matt Hawley" <mhawley@!n!o!s!p!a!m!.integrityts.com> wrote in message
news:eF**************@TK2MSFTNGP10.phx.gbl...
> I'm facing a problem where I need to verify that my windows forms application has access to the internet before it can do anything.

Currently, the only way I can think of is by creating a HttpWebRequest and point it to the specified URL I wish to connect to later on, and if that throws an
error, I know I don't have an internet connection. Is this the best method for detecting an internet connection, or is there some sort of routine that I need to follow that is more tuned for performance?

This seems to be the only reliable method to check for an internet
connection. Google will give you other solutions but they generaly rely on checking if there's a network device configured which doesn't ensure you
that the computer has actually access to the internet. And even if it has
access to the internet, it may be behind a proxy server that restricts this access to some sites or particular protocols. So the only way to know for
sure if a computer can access your particular site is to try...

Jul 21 '05 #6
Elp
Hi Steve,

"Steve Podradchik" <St*************@hotmail.com> wrote in message
news:uK**************@TK2MSFTNGP09.phx.gbl...
Yes ... Except that it doesn't always work.

Our WinForms app is heavily dependent on the Internet and our biggest
support problem is people with perfectly valid Internet connections that the app (using the method below) fails to detect. It appears that .Net has a
great deal of trouble with some proxies that require login (including the MS one) and, it seems, with VPN connections.


Have a look at the WebProxy class. In theory, it should allow you to specify
the Web proxy server to be used and a login/password to use for the proxy
server login. I've never had to occasion to test it in a real life situation
but it will maybe solve at least some of your problems
Jul 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2793
by: Peter Flynn | last post by:
I'm having trouble finding example code to detect the presence of an Internet connection. It doesn't seem to be a very frequently asked question, as all I need is the answer yes or no (is the user...
8
336
by: Matt Hawley | last post by:
I'm facing a problem where I need to verify that my windows forms application has access to the internet before it can do anything. Currently, the only way I can think of is by creating a...
3
1410
by: Graeme Hinchliffe | last post by:
Hiya I have now managed to get my code to function correctly for a none present db, and one that is shutdown whilst it is being used. In both cases my code functions and happily recovers on the...
0
1149
Ali Rizwan
by: Ali Rizwan | last post by:
Hi all, I m facing a big problem... How can i detect that either the internet connection id dialup or is on LAN or is their both connection exists...... and what is the connection speed. And is...
0
7130
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7007
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
6893
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7386
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4918
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4599
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3098
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3090
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
295
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.