Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Rerouting Requests via a Proxy because of .NET "bug"

Reply
Thread Tools

Rerouting Requests via a Proxy because of .NET "bug"

 
 
Codex Twin
Guest
Posts: n/a
 
      12-03-2004
I am re-sending this in the hope that it might illicit a response. I have a
corporate client who forces their workstations to get the proxy server
details using an automatic proxy discovery script.

Unfortunately, the .NET Framework does not support automatic proxy discovery
scripts. See:
http://support.microsoft.com/default...5BLN%5D;307220

The article above details that the way to workaround this is to edit the
machine.config file. This is impossible for me. Luckily there is a
programmtic way of assigning the proxy settings. The way to do it is
detailed in this article:
http://support.microsoft.com/kb/q318140/

The second article explains how to handle requests when there is a proxy
server between the .NET client and the web service. Unfortunately the
solution only deals with Web Services. The WebService class has a Proxy
property to which an object of type of IWebProxy can be passed - and all is
good.

But in my case, I have an ASP.NET web forms app, not a Web Service. So how
do I try and route my client requests via the Proxy server programmatically?

What I have tried so far is to use an HttpModule which *should* intercept
the request and route it through the Proxy server. In the custom
OnBeginRequest method I have in my HttpModule:

public void OnBeginRequest(object sender, EventArgs e)
{
//************************************************** *********************
WebProxy wp = new WebProxy("http://my.proxy.blah", true);
//************************************************** *********************

HttpRequest req = ((HttpApplication)sender).Request;
HttpWebRequest wr = (HttpWebRequest)WebRequest.Create(req.Url.Absolute Uri);
wr.Proxy = wp;

}


However, this doesn't cut it.
The request obviously does not get routed via the proxy server. Can Anyone
tried this before and tell me how to workaround this problem.


Also, does anyone know if the .NET Framework version 2 (or even the version
2 beta) addresses the problem of being able to detect proxy settings using
discovery scripts.
Thanks.
CT




 
Reply With Quote
 
 
 
 
Scott Allen
Guest
Posts: n/a
 
      12-03-2004
Codex:

One way I've worked with proxies is to use the GlobalProxySelection
class:

GlobalProxySelection.Select = new WebProxy("127.0.0.1", 888;

Hope this work for you too,

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Fri, 3 Dec 2004 15:41:37 -0000, "Codex Twin" <>
wrote:

>I am re-sending this in the hope that it might illicit a response. I have a
>corporate client who forces their workstations to get the proxy server
>details using an automatic proxy discovery script.
>
>Unfortunately, the .NET Framework does not support automatic proxy discovery
>scripts. See:
>http://support.microsoft.com/default...5BLN%5D;307220
>
>The article above details that the way to workaround this is to edit the
>machine.config file. This is impossible for me. Luckily there is a
>programmtic way of assigning the proxy settings. The way to do it is
>detailed in this article:
>http://support.microsoft.com/kb/q318140/
>
>The second article explains how to handle requests when there is a proxy
>server between the .NET client and the web service. Unfortunately the
>solution only deals with Web Services. The WebService class has a Proxy
>property to which an object of type of IWebProxy can be passed - and all is
>good.
>
>But in my case, I have an ASP.NET web forms app, not a Web Service. So how
>do I try and route my client requests via the Proxy server programmatically?
>
>What I have tried so far is to use an HttpModule which *should* intercept
>the request and route it through the Proxy server. In the custom
>OnBeginRequest method I have in my HttpModule:
>
>public void OnBeginRequest(object sender, EventArgs e)
>{
> //************************************************** *********************
> WebProxy wp = new WebProxy("http://my.proxy.blah", true);
> //************************************************** *********************
>
> HttpRequest req = ((HttpApplication)sender).Request;
> HttpWebRequest wr = (HttpWebRequest)WebRequest.Create(req.Url.Absolute Uri);
> wr.Proxy = wp;
>
>}
>
>
>However, this doesn't cut it.
>The request obviously does not get routed via the proxy server. Can Anyone
>tried this before and tell me how to workaround this problem.
>
>
>Also, does anyone know if the .NET Framework version 2 (or even the version
>2 beta) addresses the problem of being able to detect proxy settings using
>discovery scripts.
>Thanks.
>CT
>
>
>


 
Reply With Quote
 
 
 
 
John Saunders
Guest
Posts: n/a
 
      12-03-2004
"Codex Twin" <> wrote in message
news:eE$...
>I am re-sending this in the hope that it might illicit a response. I have a
> corporate client who forces their workstations to get the proxy server
> details using an automatic proxy discovery script.
>
> Unfortunately, the .NET Framework does not support automatic proxy
> discovery
> scripts. See:
> http://support.microsoft.com/default...5BLN%5D;307220


This article has nothing to do with web forms applications. In a Web Forms
application, the browser sends a request to the server and gets an HTML
response. The browser may be configured to run an automatic proxy discovery
script and to use the discovered proxy to send to the server. The server
should neither know nor care whether one or more proxies were in the path
between the client and the server.

> The article above details that the way to workaround this is to edit the
> machine.config file. This is impossible for me. Luckily there is a
> programmtic way of assigning the proxy settings. The way to do it is
> detailed in this article:
> http://support.microsoft.com/kb/q318140/
>
> The second article explains how to handle requests when there is a proxy
> server between the .NET client and the web service. Unfortunately the
> solution only deals with Web Services. The WebService class has a Proxy
> property to which an object of type of IWebProxy can be passed - and all
> is
> good.


....

> But in my case, I have an ASP.NET web forms app, not a Web Service. So how
> do I try and route my client requests via the Proxy server
> programmatically?


As I said, "you don't, the browser does".

Obviously something isn't working the way you expect it to, and that makes
you think that you need to do something about proxies. Please tell us what
the symptom is, and we can help you find the disease. The disease is
probably not "server-side proxy setup".

John Saunders


 
Reply With Quote
 
Codex Twin
Guest
Posts: n/a
 
      12-03-2004
Thanks Scott

What I'm really stuck on is the code I need to write to route every request
to my application to this proxy.

Thanks
cT


"Scott Allen" <bitmask@[nospam].fred.net> wrote in message
news:...
> Codex:
>
> One way I've worked with proxies is to use the GlobalProxySelection
> class:
>
> GlobalProxySelection.Select = new WebProxy("127.0.0.1", 888;
>
> Hope this work for you too,
>
> --
> Scott
> http://www.OdeToCode.com/blogs/scott/
>
> On Fri, 3 Dec 2004 15:41:37 -0000, "Codex Twin" <>
> wrote:
>
> >I am re-sending this in the hope that it might illicit a response. I have

a
> >corporate client who forces their workstations to get the proxy server
> >details using an automatic proxy discovery script.
> >
> >Unfortunately, the .NET Framework does not support automatic proxy

discovery
> >scripts. See:
> >http://support.microsoft.com/default...5BLN%5D;307220
> >
> >The article above details that the way to workaround this is to edit the
> >machine.config file. This is impossible for me. Luckily there is a
> >programmtic way of assigning the proxy settings. The way to do it is
> >detailed in this article:
> >http://support.microsoft.com/kb/q318140/
> >
> >The second article explains how to handle requests when there is a proxy
> >server between the .NET client and the web service. Unfortunately the
> >solution only deals with Web Services. The WebService class has a Proxy
> >property to which an object of type of IWebProxy can be passed - and all

is
> >good.
> >
> >But in my case, I have an ASP.NET web forms app, not a Web Service. So

how
> >do I try and route my client requests via the Proxy server

programmatically?
> >
> >What I have tried so far is to use an HttpModule which *should* intercept
> >the request and route it through the Proxy server. In the custom
> >OnBeginRequest method I have in my HttpModule:
> >
> >public void OnBeginRequest(object sender, EventArgs e)
> >{
> >

//************************************************** *********************
> > WebProxy wp = new WebProxy("http://my.proxy.blah", true);
> >

//************************************************** *********************
> >
> > HttpRequest req = ((HttpApplication)sender).Request;
> > HttpWebRequest wr =

(HttpWebRequest)WebRequest.Create(req.Url.Absolute Uri);
> > wr.Proxy = wp;
> >
> >}
> >
> >
> >However, this doesn't cut it.
> >The request obviously does not get routed via the proxy server. Can

Anyone
> >tried this before and tell me how to workaround this problem.
> >
> >
> >Also, does anyone know if the .NET Framework version 2 (or even the

version
> >2 beta) addresses the problem of being able to detect proxy settings

using
> >discovery scripts.
> >Thanks.
> >CT
> >
> >
> >

>



 
Reply With Quote
 
Codex Twin
Guest
Posts: n/a
 
      12-03-2004

"John Saunders" <johnwsaundersiii at hotmail.com> wrote in message
news:...
> "Codex Twin" <> wrote in message
> news:eE$...
> >I am re-sending this in the hope that it might illicit a response. I have

a
> > corporate client who forces their workstations to get the proxy server
> > details using an automatic proxy discovery script.
> >
> > Unfortunately, the .NET Framework does not support automatic proxy
> > discovery
> > scripts. See:
> > http://support.microsoft.com/default...5BLN%5D;307220

>
> This article has nothing to do with web forms applications. In a Web Forms
> application, the browser sends a request to the server and gets an HTML
> response. The browser may be configured to run an automatic proxy

discovery
> script and to use the discovered proxy to send to the server. The server
> should neither know nor care whether one or more proxies were in the path
> between the client and the server.
>
> > The article above details that the way to workaround this is to edit the
> > machine.config file. This is impossible for me. Luckily there is a
> > programmtic way of assigning the proxy settings. The way to do it is
> > detailed in this article:
> > http://support.microsoft.com/kb/q318140/
> >
> > The second article explains how to handle requests when there is a proxy
> > server between the .NET client and the web service. Unfortunately the
> > solution only deals with Web Services. The WebService class has a Proxy
> > property to which an object of type of IWebProxy can be passed - and all
> > is
> > good.

>
> ...
>
> > But in my case, I have an ASP.NET web forms app, not a Web Service. So

how
> > do I try and route my client requests via the Proxy server
> > programmatically?

>
> As I said, "you don't, the browser does".
>
> Obviously something isn't working the way you expect it to, and that makes
> you think that you need to do something about proxies. Please tell us what
> the symptom is, and we can help you find the disease. The disease is
> probably not "server-side proxy setup".
>
> John Saunders
>
>


John

The scenario is this: The server application I have built uses the ChartFX
(by SoftwareFX) control. This control causes the download of half a dozen or
so "client-side components". These are nothing more than .NET assemblies
which allow all the fancy dynamic chart customisation tools on the browser.
One of the conditions for the client-side dlls to work is that the client
machine has to have the .NET framework installed.

These same machines, being behind the firewall, uses the automatic proxy
discovery script to determine the proxy server settings.
Now, because of the problem detailed in the first article
(http://support.microsoft.com/default...5BLN%5D;307220) and the
fact that the .NET Framework does not support proxy discovery scripts, the
client machine cannot see get the proxy server settings and the charts fail.

When the machine.config file is amended as the article explains, then it
works. I do not have access to their machine.config files, hence the
programmatic way of supplying proxy server settings as detailed in the
second article, which as you have rightly said, only deals with Web
Services.

My problem has been where to impose this programmatic code, and what the
correct code is.





 
Reply With Quote
 
Tom Porterfield
Guest
Posts: n/a
 
      12-03-2004
On Fri, 3 Dec 2004 16:31:02 -0000, Codex Twin wrote:

> Thanks Scott
>
> What I'm really stuck on is the code I need to write to route every request
> to my application to this proxy.


If the workstation where the request is initiated is already configured to
use a proxy in their web browser then there is nothing you need to do. The
proxy will be used.
--
Tom Porterfield
 
Reply With Quote
 
Codex Twin
Guest
Posts: n/a
 
      12-03-2004

"Tom Porterfield" <> wrote in message
news:...
> On Fri, 3 Dec 2004 16:31:02 -0000, Codex Twin wrote:
>
> > Thanks Scott
> >
> > What I'm really stuck on is the code I need to write to route every

request
> > to my application to this proxy.

>
> If the workstation where the request is initiated is already configured to
> use a proxy in their web browser then there is nothing you need to do.

The
> proxy will be used.
> --
> Tom Porterfield



Hello Tom
Thanks for the reply.

I *want* the proxy to be used. As I have said in my post to John Saunders,
the application I have needs the .NET Framework on the client machine, and
this does not support the automatic discovery scripts to get the proxy
details. The workaround is either to amend the machine.config file or
programmatic.
My question is, what is the correct code for the programmatic solution.



 
Reply With Quote
 
John Saunders
Guest
Posts: n/a
 
      12-03-2004
"Codex Twin" <> wrote in message
news:...
>

....
> John
>
> The scenario is this: The server application I have built uses the ChartFX
> (by SoftwareFX) control. This control causes the download of half a dozen
> or
> so "client-side components". These are nothing more than .NET assemblies
> which allow all the fancy dynamic chart customisation tools on the
> browser.
> One of the conditions for the client-side dlls to work is that the client
> machine has to have the .NET framework installed.
>
> These same machines, being behind the firewall, uses the automatic proxy
> discovery script to determine the proxy server settings.
> Now, because of the problem detailed in the first article
> (http://support.microsoft.com/default...5BLN%5D;307220) and
> the
> fact that the .NET Framework does not support proxy discovery scripts, the
> client machine cannot see get the proxy server settings and the charts
> fail.


Please be more specific. Exactly what do you mean when you say "the charts
fail"?

> When the machine.config file is amended as the article explains, then it
> works. I do not have access to their machine.config files, hence the
> programmatic way of supplying proxy server settings as detailed in the
> second article, which as you have rightly said, only deals with Web
> Services.
>
> My problem has been where to impose this programmatic code, and what the
> correct code is.


Whatever the solution is, it will be client-side.

Have you spoken to SoftwareFX about this? You may not be the first to have
this problem.

John Saunders


 
Reply With Quote
 
Codex Twin
Guest
Posts: n/a
 
      12-03-2004

"John Saunders" <johnwsaundersiii at hotmail.com> wrote in message
news:Od3ho%...
> "Codex Twin" <> wrote in message
> news:...
> >

> ...
> > John
> >
> > The scenario is this: The server application I have built uses the

ChartFX
> > (by SoftwareFX) control. This control causes the download of half a

dozen
> > or
> > so "client-side components". These are nothing more than .NET assemblies
> > which allow all the fancy dynamic chart customisation tools on the
> > browser.
> > One of the conditions for the client-side dlls to work is that the

client
> > machine has to have the .NET framework installed.
> >
> > These same machines, being behind the firewall, uses the automatic proxy
> > discovery script to determine the proxy server settings.
> > Now, because of the problem detailed in the first article
> > (http://support.microsoft.com/default...5BLN%5D;307220) and
> > the
> > fact that the .NET Framework does not support proxy discovery scripts,

the
> > client machine cannot see get the proxy server settings and the charts
> > fail.

>
> Please be more specific. Exactly what do you mean when you say "the charts
> fail"?
>
> > When the machine.config file is amended as the article explains, then it
> > works. I do not have access to their machine.config files, hence the
> > programmatic way of supplying proxy server settings as detailed in the
> > second article, which as you have rightly said, only deals with Web
> > Services.
> >
> > My problem has been where to impose this programmatic code, and what the
> > correct code is.

>
> Whatever the solution is, it will be client-side.
>
> Have you spoken to SoftwareFX about this? You may not be the first to have
> this problem.
>
> John Saunders
>



SoftwareFX have not responded (yet).
I'm halfway there, but have not been able to simulate a Request from a
ChartFX client object. So not there at all, I guess.

Thank you and have a nice weekend...



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
rerouting incoming PSTN line pbscott UK VOIP 3 08-26-2006 11:26 AM
rerouting incoming PSTN line pbscott UK VOIP 0 08-17-2006 10:10 AM
rerouting incoming PSTN line pbscott UK VOIP 0 08-17-2006 10:10 AM
Rerouting Cisco calls via H.323 Pete Calvert VOIP 4 11-18-2003 02:53 PM
Forms Authentication, external authentication server, & rerouting to orig. req. URL Andrew Connell ASP .Net 1 10-21-2003 05:41 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57