Tagged Questions
System.Net is a namespace of the .NET framework. It provides a simple programming interface for many of the protocols used on networks today.
10
votes
1answer
227 views
How to request only the HTTP header with C#?
I want to check if the URL of a large file exists. I'm using the code below but it is too slow:
public static bool TryGet(string url)
{
try
{
GetHttpResponseHeaders(url);
...
10
votes
3answers
3k 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 ...
7
votes
2answers
15k views
Send a file via HTTP POST with C#
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 by HTTP using ...
7
votes
4answers
2k 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 ...
6
votes
5answers
288 views
How to speed up slow / laggy Windows Phone 7 (WP7) TCP Socket transmit?
Recently, I started using the System.Net.Sockets class introduced in the Mango release of WP7 and have generally been enjoying it, but have noticed a disparity in the latency of transmitting data in ...
6
votes
3answers
1k 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 ...
6
votes
3answers
1k views
Uri.AbsolutePath messes up path with spaces
In a WinApp I am simply trying to get the absolute path from a Uri object:
Uri myUri = new Uri(myPath); //myPath is a string
//somewhere else in the code
string path = myUri.AbsolutePath;
This ...
5
votes
5answers
787 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 ...
4
votes
2answers
936 views
how to get IP address in C#?
Assume that a computer is connected to many networks(actually more than one).
I can get a list of IP addresses which includes all IP addresses the computer have in networks, but how can I know that an ...
4
votes
1answer
1k views
HttpWebRequest.UserAgent : What does it do
I read this MSDN like about it and ran its example.
http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.useragent.aspx
when I change the uSerAgnet to something like "blah", the output ...
4
votes
3answers
9k views
Access system.net settings from app.config programmatically in C#
I am trying to programmatically access a Windows application app.config file. In particular, I am trying to access the "system.net/mailSettings"
The following code
Configuration config = ...
3
votes
3answers
56 views
Would Asyncronous TCP networking be a better option for a dedicated server with up to 32 players playing at the same time in C#?
Currently I'm planning to design a dedicated server in C# for an XNA game where up to 32 players will be able to connect at the same time. I have had experience in networking with System.Net, but I've ...
3
votes
2answers
136 views
Do we need to close the System.Net.WebRequest's ResponseStream?
I was wondering will I end up having any unclosed streams from this code:
Public Function [Get](ByVal url As String) As String
Using reader = New ...
3
votes
2answers
284 views
How do I clear System.Net client DNS cache?
I'm using the .NET WebRequest while changing my HOSTS file. I'm observing that System.Net doesn't honor those changes - how can I make it do so?
I have a number of servers load-balanced behind a ...
3
votes
1answer
285 views
How to detect public IP address (of router/gateway) change in .Net?
I am aware of the NetworkChange.NetworkAddressChanged event, but that is only for the local network interfaces.
What is the best way to detect the public IP address of the gateway has changed? ...
3
votes
3answers
192 views
What sense does asynchronous IO make if the thread is blocked anyway (see example)
I found an example for async ftp upload on msdn which does the following (snippet):
// Asynchronously get the stream for the file contents.
request.BeginGetRequestStream(
...
3
votes
1answer
7k 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
2answers
1k views
Is it possible to convert between Socket and TcpClient objects?
Here's another C#/.NET question based merely on curiousity more than an immediate need ...
If you had a Socket instance and you wanted to wrap it in the higher-level TcpClient class, is that possible ...
3
votes
8answers
2k views
C# Performance For Proxy Server (vs C++)
I want to create a simple http proxy server that does some very basic processing on the http headers (i.e. if header x == y, do z). The server may need to support hundreds of users. I can write the ...
2
votes
0answers
42 views
How to set system.net settings inside wpf application
In WPF project I am getting this error:
private void btnRetrieve_Click(object sender, RoutedEventArgs e)
{
Uri uri = new Uri("http://10.214.36.245", UriKind.Absolute);
using (WebClient wc = ...
2
votes
3answers
78 views
Which local ip connects to a remote ip?
Im sorry if this been asked before, but couldnt find anything about this particular matter.
I try to find out with which of my own ip's my computer use to connect to a remote ip.
I use some kind of ...
2
votes
2answers
174 views
VB.Net SerialPort reads are returning fragmented sets of data
The Problem
I have a USB device which creates a Virtual Serial Port on Windows. I am using VB.Net to write and read from the port. My device responds with specific sized set of bytes, but I am ...
2
votes
1answer
118 views
verify cname record
If I have the following CNAME records set up:
www.custom1.com CNAME www.myapp.com
www.myapp.com CNAME myapp.cloudapp.net
Will Dns.GetHostEntry("www.custom1.com") always return a ...
2
votes
1answer
137 views
C# System.Net trace log - only trace one method and ignore others?
I'm using System.Net tracing as described here:
http://ferozedaud.blogspot.com/2009/08/tracing-with-systemnet.html
But that traces every request made with HttpWebRequest. The trace file is huge. I ...
2
votes
1answer
191 views
Using an https:// asmx-based service with Monotouch
I'm trying to add a web reference to an asmx web service with ssl. I'm getting this error:
Error getting response stream:(Write: The authentication or decryption has failed.)SendFailure
I have self a ...
2
votes
3answers
152 views
Explain the instance properties of System.Net.IPAddress
I'm having a little trouble understanding the System.Net.IPAddress class, because I don't know where to look for a definition of what some of the properties are referring to. Specifically, what are:
...
2
votes
4answers
671 views
How to check if Web server is up? (C#)
I am building a monitoring application to continuously monitor all aspects of my system. I was hoping to use the Ping() function to determine if the server is up but the MSDN documentation itself says ...
2
votes
1answer
147 views
programmatically access different NICs when sending web request
hobbyist/non-profession programmer here. I don't have a strong grasp on network addressing.
I have a computer that simultainiously connects to two different networks. 1 through wireless, one by ...
2
votes
2answers
436 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
1k 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
1answer
1k views
Is there a way I can tell whether an SMTP server is expecting a client to connect using “implicit” SSL versus “explicit” SSL?
SSL can either be "explicit" or "implicit" as explained by this link:
http://help.globalscape.com/help/secureserver2/Explicit_versus_implicit_SS.htm
System.Net.Mail only support "explicit" SSL, as ...
1
vote
2answers
31 views
“System.Net.Sockets.Socket does not contain a definition for 'SendTo'”
I'm trying to make a basic client-server application for windows phone 7 (using Mango 7.1). At the moment I just have the sample code from MSDN (here: ...
1
vote
1answer
89 views
Disabling certificate validation for a single request
In my application I have situations in which I need to make a requests to servers that have self-signed certificates. I would like to be able to disable certificate validation only for that particular ...
1
vote
1answer
47 views
C# - Need help connecting to IPEndPoint
Ok, I am trying to use the System.Net.Sockets part of the .Net Framework 4 to connect to an IPEndPoint.
First I declare the IP address as a variable like so
IPAddress myIpAddress = ...
1
vote
3answers
280 views
Getting '(400) Bad Request' with GetResponseStream() in C#
I am using the following code to send a get request to facebook graph api oauth server.
public string GetAccessToken(string code)
{
HttpWebRequest req = (HttpWebRequest) ...
1
vote
1answer
374 views
Politely checking to see if a file exists before downloading
I'm trying to download files using the Net.WebClient call to DownloadFile
Using client As New Net.WebClient()
Try
client.DownloadFile(PDFURL, FullPDFFilePath)
I then catch the exception ...
1
vote
3answers
240 views
Beginners Question - Visual C# - System.Net Assembly and WebRequest
Hopefully this is a simple fix I have the code:
using System.Net;
namespace WebGet
{
public partial class Web
{
public static void Main()
{
WebRequest webRequest;
...
1
vote
1answer
1k views
What is IP address '::1'?
I was playing with sockets on local machine with no network connection. See below:
IPAddress address = IPAddress.Any; // doesn't work
IPAddress address = IPAddress.Parse("::1"); // works
So what is ...
1
vote
3answers
363 views
Effect of System.Net Connection Management
<system.net>
<connectionManagement>
<add maxconnection="1000" address="*"/>
</connectionManagement>
</system.net>
Can someone tell me if this setting ...
1
vote
1answer
474 views
Traverse ftp subfolders to get file sizes in C#
Was wondering if you could point me at a right direction on how to achieve this...
I'm currently working on an application that will check the filespace consumed in a remote FTP server that has ...
1
vote
2answers
39 views
question about System.Net
when i use some code like this:
System.Net.WebClient objClient = new WebClient();
string url = "http://google.com";
objClient.DownloadString(url);
it takes some seconds to connection stablished and ...
1
vote
2answers
901 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 ...
1
vote
2answers
454 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 ...
1
vote
2answers
460 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) ...
1
vote
2answers
2k views
System.Net's Webclient in C# won't connect to server
Is there something I need to do to get System.Net working with Microsoft Visual C# 2008 Express Edition? I can't seem to get any web type controls or classes to work at all.. the below WebClient ...
1
vote
10answers
2k 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
2answers
67 views
PowerShell - Dispose System.Net.CookieContainer?
Is there a way to dispose/close the CookieContainer?
$cc = New-Object System.Net.CookieContainer
0
votes
1answer
142 views
Network port listener on c#
I'm trying to listen the active ports on my network. I tried HttpListener, but I'm not sure if this is the right listener. Any ideas or examples?
using (m_listener = new HttpListener())
{
...
0
votes
1answer
62 views
NetworkInformationException when adding listener to NetworkAvailabilityChanged event
We recently started seeing this exception pop up during initialization:
System.Net.NetworkInformation.NetworkInformationException: An operation was attempted on something that is not a socket
at ...
0
votes
1answer
89 views
Asynchronous Socket Connection
Are there any fast way to learn Asynchronous socket tcp programming or are there any libraries available to utilize system.socket in a short amount of time?
My synchronous tcp client couldn't hold ...