Re: "The remote server returned an error: (407) Proxy...
Thanks SaqibUllah, It solved my problem in real manner thanks[:)]
View ArticleRe: "The remote server returned an error: (407) Proxy...
Here you find more information about this 407 error. http://geekswithblogs.net/technetbytes/archive/2007/08/11/114573.aspx
View ArticleRe: "The remote server returned an error: (407) Proxy...
Hi sohnee problem solved now actually it was due to proxy server when i host the application at main server its not giving any error thanks for help.........!
View ArticleRe: "The remote server returned an error: (407) Proxy...
You'd need to open the relevant port on the firewall - if you aren't in charge of your firewall, speak to the person that is and tell them what you're trying to do. They will be able to open the...
View ArticleRe: "The remote server returned an error: (407) Proxy...
any solution for it? i hv tried many things bt failed..!
View ArticleRe: "The remote server returned an error: (407) Proxy...
That would suggest a problem with the proxy credentials, or possibly a firewall blocking the call.
View ArticleRe: "The remote server returned an error: (407) Proxy...
hi Sohnee the code i hv used is XmlTextReader rd; WebRequest wrq; string url; url = "http://www.ibnlive.com/xml/top.xml"; wrq = WebRequest.Create(url); wrq.Proxy = WebProxy.GetDefaultProxy();...
View ArticleRe: "The remote server returned an error: (407) Proxy...
I'm not sure where you're referencing it - but ought it to be http://www.ibnlive.com/
View ArticleRe: "The remote server returned an error: (407) Proxy...
hi Young Fang i have used the code u suggested its working smoothly but bow here i am facing one problem. it works smoothly when i run the code in Designer but when i access the pages through IIS it...
View ArticleRe: "The remote server returned an error: (407) Proxy...
hi Young Fang i have used the code u suggested its working smoothly but bow here i am facing one problem. it works smoothly when i run the code in Designer but when i access the pages through IIS it...
View ArticleRe: "The remote server returned an error: (407) Proxy...
hi Young Fang u r great. Its working now. Thank u very much for help.[:D][Yes]
View ArticleRe: "The remote server returned an error: (407) Proxy...
hi Young Fang u r great. Its working now. Thank u very much for help.[:D][Yes]
View ArticleRe: "The remote server returned an error: (407) Proxy...
Hi, I tested and it works fine on my pc. You'd better check the firewall and proxy. If you are behind a proxy server please try this: Dim rd As XmlTextReader Dim wrq As HttpWebRequest wrq =...
View ArticleRe: "The remote server returned an error: (407) Proxy...
hi Young Fang i tried the code u suggested but now i am getting this error The remote server returned an error: (404) Not Found. though resource http://www.rediff.com/rss/inrss.xml is existing. will...
View ArticleRe: "The remote server returned an error: (407) Proxy...
sachinvibhute hi Young Fang thanks for reply will u plz gv me some links from where i can get complete reference for ASP.NET 2.0 framework. thanks You can take a look at Tutorials on How to Start...
View ArticleRe: "The remote server returned an error: (407) Proxy...
hi Young Fang thanks for reply will u plz gv me some links from where i can get complete reference for ASP.NET 2.0 framework. thanks
View ArticleRe: "The remote server returned an error: (407) Proxy Authentication...
Hi sohnee sorry for replying after so long time. i used the code u hv suggested bt this time it gives me the error message The remote server returned an error: (404) Not Found. the web address i am...
View ArticleRe: "The remote server returned an error: (407) Proxy...
Hi, Also you can use XmlTextReader which might be a bit simple: // Create the XmlReader object. XmlTextReader reader = new XmlTextReader("http://msdn.microsoft.com/rss.xml"); XmlDocument doc = new...
View ArticleRe: "The remote server returned an error: (407) Proxy...
You might want to use a HttpWebRequest to get the page (in conjunction with a StreamReader) before reading it into the dataset. public String GetPage(string strURL) { // the html retrieved from the...
View Article"The remote server returned an error: (407) Proxy Authentication...
Friends I am trying to use rss feed from news web site in my web application. and code i have written for tht is string path = "http://msdn.microsoft.com/rss.xml"; //"D:\\WebSite\\master...
View Article