4
votes
3answers
433 views
System.Net.WebClient fails weirdly
I am trying to download some data from the reporting services instance on our TFS server.
Given that the code should run on a computer that is not domain-joined, I figured that I would set the …
4
votes
3answers
118 views
.NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest… ARGH!
In the System.Net namespace, there are very many different classes with similar names, such as:
WebBrowser and WebClient
WebRequest and HTTPWebRequest
WebResponse and HTTPWebResponse
Those are the …
1
vote
1answer
20 views
getting “remote server cannot be resolved” on localhost does not get fixed by defaultProxy?
here is the sitution, i am testing on my localhost from my machine at home (no proxy server and windows default firewall) and retrieving api.flickr.com xml file, when I come to work (that uses an ISA …
4
votes
3answers
393 views
How to set a Host header value for SSL requests using HttpWebRequest
I am trying to use the System.Net.HttpWebRequest class to perform a HTTP GET request to a specific web server for web applications we have load balanced over numerous servers. In order to achieve …
0
votes
2answers
33 views
HttpWebRequest.Address vs HttpWebResponse.ResponseUri
Whats the difference between these two properties?
To put into context, I am determining if a redirect occurs if our ResponseUri != RequestUri.
While a redirect occurs regardless the url …
0
votes
1answer
38 views
http connection reuse
I would like to better understand how .Net http connection reuse works.
When I use HttpWebRequest to send something to some server twice from the same appdomain, is the connection (optionally) …
0
votes
10answers
771 views
Ping always succeeds, cant easily check uptime using ping on a url
Im getting frustrated because of OpenDNS and other services (ie: roadrunner) that now always returns a ping even if you type any invalid url ie: lkjsdaflkjdsjf.com --- I had created software for my …
0
votes
1answer
52 views
OPTS command on FtpWebRequest/FtpWebResponse
I'm using the FtpWebRequest and FtpWebResponse objects in the System.Net namespace to issue a LIST command. The problem I'm having is that the FTP server I'm connecting to does not have the OPTS …
2
votes
3answers
265 views
Long time to load first connection in C# .NET
I'm making a program that connects to a website and downloads XML from it. It then displays the information to the user.
The problem I am having is when I first open the program and start …
2
votes
3answers
924 views
Send a file via HTTP POST with C#
Hi everyone, I've been searching and reading around to that and couldn't fine anything really useful.
I'm writing an small C# win app that allows user to send files to a web server, not by FTP, but …
0
votes
2answers
109 views
How can I rate limit an upload using TcpClient?
I'm writing a utility that will be uploading a bunch of files, and would like to provide the option to rate limit uploads. What is the best approach for rate limiting uploads when using the TcpClient …
0
votes
3answers
2k views
C#: access programatically system.net settings from app.config
I am trying to programatically access windows application app.config file. In particular i am trying to access the "system.net/mailSettings"
The following code
Configuration config = …
0
votes
1answer
359 views
c# system.net.FileWebRequest Access denied error
I want to get a file size over network via System.Net.FileWebRequest. For example: \IP\c$\sampleFile.txt
I supply the credentials for accessing file via passing it to FilewebRequest's credentials
…
0
votes
1answer
1k views
Update app.config system.net setting at runtime
I need to update a setting in the system.net SectionGroup of a .Net exe app.config file at runtime. I don't have write access to the original config file at runtime (I am developing a .Net dll add-in …
3
votes
1answer
397 views
Non-Stop Exceptions in C#
I am writing some C# 2.0 code which must do basic HTTP GETs and POSTs. I am using System.Net.HttpWebRequest to send both types of request and System.Net.HttpWebResponse to receive both. My code for …
