Hi,
I have a windows .Net application coded in C# that use a WebBrowser component to display aspx pages from a local CassiniWebServer.
Both my application and asp.Net web site call web services from a distant web server but only the application manage to consume them trow a proxy.
My app.exe.config file contains the following :
<system.net>
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy />
<bypasslist />
<module />
</defaultProxy>
</system.net>
I have tried the same in the web.config file of the local web site, doing :
<system.net>
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy/>
<bypasslist/>
<module/>
</defaultProxy>
</system.net>
or
<system.net>
<defaultProxy>
<proxy usesystemdefault="True" bypassonlocal="False" />
</defaultProxy>
</system.net>
but my aspx pages never manage to connect the distant web service.
Has somone already benn facing the same kind of problems, and if yes, is there a solution ?
Thanks in advance for any help.
Pierre
Pierre