473,406 Members | 2,220 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

How to avoid Internet Explorer proxy settings causing Remoting problem?

Hi,

I have a program that runs on multiple client pc's. Occasionally one or more
of those pc's use VPN to connect to another corporate network. When using
VPN they need to set proxy server in Internet Explorer connection settings
(proxy:8080). However, as soon as this setting is enabled, the remoting
program running on their pc stops communicating with the server it sends
data to. I've disabled proxy setting on the affected pc, rebooted and my
program commnicates with the server ok. So it appears to be the proxy
setting.

My questions are:

1) Can I do anything in my program to avoid Internet Explorer proxy setting
impacting on my program. Can I somehow have my program ignore this setting?

2) Why does internet explorer setting cause problem with my program? I guess
it must be system wide setting but just happens to be set in IE..well maybe
I answer my own question here or is this incorrect? Is there .NET Framework
network settings?

Thanks
Harry

Jul 21 '05 #1
6 7891
Hi,

I assume that your program is using HTTP channels for remoting. Please,
tell more about when this problem happens. If after the program is
started, and you change the settings in IE? How does it stops? Do you
use callbacks/events? What happens if you make the connection, setup the
proxy in IE, and then start your program? Does that proxy need
authentication?

Sunny
In article <#a**************@TK2MSFTNGP12.phx.gbl>, harry@nospam says...
Hi,

I have a program that runs on multiple client pc's. Occasionally one or more
of those pc's use VPN to connect to another corporate network. When using
VPN they need to set proxy server in Internet Explorer connection settings
(proxy:8080). However, as soon as this setting is enabled, the remoting
program running on their pc stops communicating with the server it sends
data to. I've disabled proxy setting on the affected pc, rebooted and my
program commnicates with the server ok. So it appears to be the proxy
setting.

My questions are:

1) Can I do anything in my program to avoid Internet Explorer proxy setting
impacting on my program. Can I somehow have my program ignore this setting?

2) Why does internet explorer setting cause problem with my program? I guess
it must be system wide setting but just happens to be set in IE..well maybe
I answer my own question here or is this incorrect? Is there .NET Framework
network settings?

Thanks
Harry

Jul 21 '05 #2

Yes. Using HTTP channel.

If my program is started while the proxy setting is disabled, there is no
problem.

If my program is running, and the proxy setting is enabled (or enabled then
disabled) still no problem with my program.

However, if my program is started / restarted when the proxy setting is
enabled then my program hangs when trying to communicate with the server. I
guess because it is expecting proxy however no proxy server exists on local
network.

If my program was started when proxy setting was enabled, then proxy setting
is disabled, my program still has problems communicating with server - I
guess it still tries to use proxy server.

I guess my only option is to temporarily disable proxy server (if enabled)
prior to creating HTTP channel. Can I do this from VB.NET?

Thanks
Harry
"Sunny" <su***@newsgroups.nospam> wrote in message
news:ea**************@tk2msftngp13.phx.gbl...
Hi,

I assume that your program is using HTTP channels for remoting. Please,
tell more about when this problem happens. If after the program is
started, and you change the settings in IE? How does it stops? Do you
use callbacks/events? What happens if you make the connection, setup the
proxy in IE, and then start your program? Does that proxy need
authentication?

Sunny
In article <#a**************@TK2MSFTNGP12.phx.gbl>, harry@nospam says...
Hi,

I have a program that runs on multiple client pc's. Occasionally one or more of those pc's use VPN to connect to another corporate network. When using VPN they need to set proxy server in Internet Explorer connection settings (proxy:8080). However, as soon as this setting is enabled, the remoting
program running on their pc stops communicating with the server it sends
data to. I've disabled proxy setting on the affected pc, rebooted and my
program commnicates with the server ok. So it appears to be the proxy
setting.

My questions are:

1) Can I do anything in my program to avoid Internet Explorer proxy setting impacting on my program. Can I somehow have my program ignore this setting?
2) Why does internet explorer setting cause problem with my program? I guess it must be system wide setting but just happens to be set in IE..well maybe I answer my own question here or is this incorrect? Is there .NET Framework network settings?

Thanks
Harry

Jul 21 '05 #3
Hi,

In article <uu**************@TK2MSFTNGP11.phx.gbl>, harry@nospam says...

If my program is started while the proxy setting is disabled, there is no
problem.

If my program is running, and the proxy setting is enabled (or enabled then
disabled) still no problem with my program.

However, if my program is started / restarted when the proxy setting is
enabled then my program hangs when trying to communicate with the server. I
guess because it is expecting proxy however no proxy server exists on local
network.

If my program was started when proxy setting was enabled, then proxy setting
is disabled, my program still has problems communicating with server - I
guess it still tries to use proxy server.
The remoting infrastructure reads the proxy settings when channel is
registered. That explains what you see. When you start your program
without proxy set in IE, it registers a channel without using proxy. And
even if you enable it later, it does not affect already registered
channel. The same is whit when you start your program with proxy
settings enabled.

I guess my only option is to temporarily disable proxy server (if enabled)
prior to creating HTTP channel. Can I do this from VB.NET?


It can be done. But what if your client needs a proxy to connect? I
would put some option for this, so the user can decide if he/she needs
the proxy settings to be used.

If you want to disable the use of the IE settings, you have to put this
before the channel registration:

GlobalProxySelection.Select = GlobalProxySelection.GetEmptyWebProxy();

Hope that helps
Sunny
Jul 21 '05 #4
Thanks Sunny. I tried that however unfortunately the same problem still
exists. Have you any other sugestions, or is my code incorrect?

This code is called when loading the form:

Private Sub CreateServerChannel()
m_DataManager = New DataManager(Me)

System.Net.GlobalProxySelection.Select =
System.Net.GlobalProxySelection.GetEmptyWebProxy
Dim chnl As New HttpChannel(3333)
ChannelServices.RegisterChannel(chnl)

RemotingServices.Marshal(m_DataManager, "DataManager.soap")

End Sub

Thanks
Harry

"Sunny" <su***@newsgroups.nospam> wrote in message
news:Ox******************@tk2msftngp13.phx.gbl...
Hi,

In article <uu**************@TK2MSFTNGP11.phx.gbl>, harry@nospam says...

If my program is started while the proxy setting is disabled, there is no problem.

If my program is running, and the proxy setting is enabled (or enabled then disabled) still no problem with my program.

However, if my program is started / restarted when the proxy setting is
enabled then my program hangs when trying to communicate with the server. I guess because it is expecting proxy however no proxy server exists on local network.

If my program was started when proxy setting was enabled, then proxy setting is disabled, my program still has problems communicating with server - I
guess it still tries to use proxy server.


The remoting infrastructure reads the proxy settings when channel is
registered. That explains what you see. When you start your program
without proxy set in IE, it registers a channel without using proxy. And
even if you enable it later, it does not affect already registered
channel. The same is whit when you start your program with proxy
settings enabled.

I guess my only option is to temporarily disable proxy server (if enabled) prior to creating HTTP channel. Can I do this from VB.NET?


It can be done. But what if your client needs a proxy to connect? I
would put some option for this, so the user can decide if he/she needs
the proxy settings to be used.

If you want to disable the use of the IE settings, you have to put this
before the channel registration:

GlobalProxySelection.Select = GlobalProxySelection.GetEmptyWebProxy();

Hope that helps
Sunny

Jul 21 '05 #5
Hi,
what exception you receive?
Is this a server code?

This code should avoid using of any proxy.

Your problem may be somewhere else. Can you try to explain the exact
configuration, in which you see and don't see the problem?

Sunny

In article <#Q**************@TK2MSFTNGP09.phx.gbl>, harry@nospam says...
Thanks Sunny. I tried that however unfortunately the same problem still
exists. Have you any other sugestions, or is my code incorrect?

This code is called when loading the form:

Private Sub CreateServerChannel()
m_DataManager = New DataManager(Me)

System.Net.GlobalProxySelection.Select =
System.Net.GlobalProxySelection.GetEmptyWebProxy
Dim chnl As New HttpChannel(3333)
ChannelServices.RegisterChannel(chnl)

RemotingServices.Marshal(m_DataManager, "DataManager.soap")

End Sub

Thanks
Harry

"Sunny" <su***@newsgroups.nospam> wrote in message
news:Ox******************@tk2msftngp13.phx.gbl...
Hi,

In article <uu**************@TK2MSFTNGP11.phx.gbl>, harry@nospam says...

If my program is started while the proxy setting is disabled, there is no problem.

If my program is running, and the proxy setting is enabled (or enabled then disabled) still no problem with my program.

However, if my program is started / restarted when the proxy setting is
enabled then my program hangs when trying to communicate with the server. I guess because it is expecting proxy however no proxy server exists on local network.

If my program was started when proxy setting was enabled, then proxy setting is disabled, my program still has problems communicating with server - I
guess it still tries to use proxy server.


The remoting infrastructure reads the proxy settings when channel is
registered. That explains what you see. When you start your program
without proxy set in IE, it registers a channel without using proxy. And
even if you enable it later, it does not affect already registered
channel. The same is whit when you start your program with proxy
settings enabled.

I guess my only option is to temporarily disable proxy server (if enabled) prior to creating HTTP channel. Can I do this from VB.NET?


It can be done. But what if your client needs a proxy to connect? I
would put some option for this, so the user can decide if he/she needs
the proxy settings to be used.

If you want to disable the use of the IE settings, you have to put this
before the channel registration:

GlobalProxySelection.Select = GlobalProxySelection.GetEmptyWebProxy();

Hope that helps
Sunny


Jul 21 '05 #6
Hi,

I'm very new to, and know very little about remoting. So my explanations may
not have all the correct remoting terminology.

The client PC is a Windows XP pc with up to date patches, with .NET
Framework Ver 1.1 (I use VS.NET 2002 for development). I also
tested on another XP machine, and also a Win2000 machine. These also have
exactly the same problem only occuring when proxy setting is enabled. I
included the code you gave me when testing on the other pc's.

There is no exception raised. The code simply stops/hangs, even though I
have a timeout:
///
Dim prop As IDictionary = ChannelServices.GetChannelSinkProperties(Manager)
prop("timeout") = 2000
///

The timeout works fine when the proxy is disabled and the server is shut
down. So not only does the code appear to continue to use the proxy server
when I insert that line of code you recommended, but it also doesn't
timeout.

The cause is exactly as previously explained. Absolutely nothing else
changed except for the proxy server setting enabled in internet explorer.
Even the checkbox labeled "Bypass proxy Server for local addresses" is also
checked and problem still exists.

I guess then my only remaining option is to temporarily disable proxy (if
enabled) while registering the channel, and then re-anabling once
registered. The time period elapsed between disabling proxy / registering
channel / re-anbling proxy is reasonably short, therefore I doubt user will
have an issue with it.

Have you any alternate suggestion? Or advice in disabling/enabling proxy
setting in code?

Thanks for your help
Regards
Harry


"Sunny" <su***@newsgroups.nospam> wrote in message
news:Op**************@tk2msftngp13.phx.gbl...
Hi,
what exception you receive?
Is this a server code?

This code should avoid using of any proxy.

Your problem may be somewhere else. Can you try to explain the exact
configuration, in which you see and don't see the problem?

Sunny

In article <#Q**************@TK2MSFTNGP09.phx.gbl>, harry@nospam says...
Thanks Sunny. I tried that however unfortunately the same problem still
exists. Have you any other sugestions, or is my code incorrect?

This code is called when loading the form:

Private Sub CreateServerChannel()
m_DataManager = New DataManager(Me)

System.Net.GlobalProxySelection.Select =
System.Net.GlobalProxySelection.GetEmptyWebProxy
Dim chnl As New HttpChannel(3333)
ChannelServices.RegisterChannel(chnl)

RemotingServices.Marshal(m_DataManager, "DataManager.soap")

End Sub

Thanks
Harry

"Sunny" <su***@newsgroups.nospam> wrote in message
news:Ox******************@tk2msftngp13.phx.gbl...
Hi,

In article <uu**************@TK2MSFTNGP11.phx.gbl>, harry@nospam says... >
> If my program is started while the proxy setting is disabled, there is
no
> problem.
>
> If my program is running, and the proxy setting is enabled (or
enabled then
> disabled) still no problem with my program.
>
> However, if my program is started / restarted when the proxy setting
is > enabled then my program hangs when trying to communicate with the

server. I
> guess because it is expecting proxy however no proxy server exists on local
> network.
>
> If my program was started when proxy setting was enabled, then proxy

setting
> is disabled, my program still has problems communicating with

server - I > guess it still tries to use proxy server.

The remoting infrastructure reads the proxy settings when channel is
registered. That explains what you see. When you start your program
without proxy set in IE, it registers a channel without using proxy. And even if you enable it later, it does not affect already registered
channel. The same is whit when you start your program with proxy
settings enabled.

>
> I guess my only option is to temporarily disable proxy server (if

enabled)
> prior to creating HTTP channel. Can I do this from VB.NET?

It can be done. But what if your client needs a proxy to connect? I
would put some option for this, so the user can decide if he/she needs
the proxy settings to be used.

If you want to disable the use of the IE settings, you have to put this before the channel registration:

GlobalProxySelection.Select = GlobalProxySelection.GetEmptyWebProxy();

Hope that helps
Sunny


Jul 21 '05 #7

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

Similar topics

0
by: Robb Gilmore | last post by:
WE have a C# .NET app which runs as a service. It posts data to a server using HttpWebrequest. According to the docs I 've read, it should use the proxy settings from IE on the server machine. ...
7
by: Robert Blasius | last post by:
Hello, I've a problem displaying a header content in Internet Explorer. You can view the problem on www.robert-blasius.de The upperimage should be on the left of the middle "line" and the lower...
1
by: #Hai | last post by:
Hi, I want Internet Explorer to use localhost server (127.0.0.1) as proxy server instead of connect directly to the ISP. How to do this (by programming) ? Thanks
6
by: harry | last post by:
Hi, I have a program that runs on multiple client pc's. Occasionally one or more of those pc's use VPN to connect to another corporate network. When using VPN they need to set proxy server in...
1
by: Apu Nahasapeemapetilon | last post by:
Hello and thank you in advance for your help. Can anyone think of a reason why this code would work properly on one PC, but not another? I've got a System.Windows.Forms.UserControl that...
11
by: Doug van Vianen | last post by:
Hi, I often like to include some JavaScript coding in my web pages to make them more interesting. Unfortunately, even when this coding is as simple as a check to see what the display width is in...
5
by: jd | last post by:
Hi, I have an application that uses embedded IE windows, which doesn't work if the user has set their IE security settings to high. Is there any way to programmatically obtain the security settings...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.