msjumbu / ilyrics

Automatically exported from code.google.com/p/ilyrics
0 stars 0 forks source link

No proxy settings available #12

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by christia...@gmail.com on 21 Feb 2008 at 4:26

GoogleCodeExporter commented 9 years ago
Please provide proxy support in the application.. thanks.

Original comment by vishal...@gmail.com on 17 Aug 2008 at 1:50

GoogleCodeExporter commented 9 years ago
Proxy support woukd be grear

Original comment by cesar.me...@gmail.com on 21 Oct 2008 at 11:22

GoogleCodeExporter commented 9 years ago
Adding option to specify proxy server with authentication would be wonderful, 
as my
internet connection is only via a proxy with authentication.

I think this information can also be automatically read from windows internet 
options.

Original comment by shriramr...@gmail.com on 18 Nov 2008 at 3:44

GoogleCodeExporter commented 9 years ago
I've added the proxy support (work with ISA too) in this way:

Inset in file "iLyrics.cs" at the end of class constructor

// Set default proxy server for internet access
System.Net.IWebProxy wp = System.Net.WebRequest.DefaultWebProxy;
wp.Credentials = System.Net.CredentialCache.DefaultCredentials;
System.Net.WebRequest.DefaultWebProxy = wp;

Original comment by danilo.c...@gmail.com on 5 Aug 2009 at 2:41