System.Net is a namespace of the .NET framework. It provides a simple programming interface for many of the protocols used on networks today.
0
votes
2answers
39 views
Resolve IP Address to obtain Alias
I want to resolve a IP address but I don't get the desired result.
I want to retreive the real web name something like this: http://www.google.com
But what I get is: mad01s14-in-f6.1e100.net
Public ...
2
votes
2answers
60 views
The difference between with System.Net and without System.Net
What is the difference between adding System.Net like this:
CookieContainer globalcontainer = new System.Net.CookieContainer();
and using the class without the namespace in the declaration
...
1
vote
2answers
71 views
How to grab data off a json URL and place on form?
The following URL represents a long string of data: http://api.bitcoincharts.com/v1/markets.json
I noticed at the end of the url it was a .json extension, so I already researched about that.
Ive ...
0
votes
2answers
72 views
Temporarily disable/bypass system set proxy during a particular bit of code?
I've got a page that's basically a support request form for customers to fill out and submit... It's in ASP.net with C# as the code behind. I've managed to get the computer name to populate into one ...
1
vote
0answers
59 views
DNS Refresh Timeout with Mono
Although the current Mono project's ServicePointManager class has the DnsRefreshTimeout property enabled into its interface. The related property isn't implemented.
Sample call:
...
1
vote
1answer
197 views
System.Net.Mail reference does not exist
I have a problem creating application to send email.
I already have one working as a Windows Forms Application and then decided to do the same from the empty project, because I need to make a ...
0
votes
1answer
74 views
How can you read only part of an HttpWebResponse
I would like to read only part of an HttpWebResponse. Let's say the first 100k. How can I read only the first 100k of the Response but still end up with a non-corrupted substring? If I just throw the ...
1
vote
0answers
147 views
How to Send mail from visual basic 2010 professional
I want to send a mail using gmail id, my code is as here under, but its occurred error...please help me out of this issue.
Imports System.Net
Imports System.Net.Mail
Public Class Form1
Private Sub ...
0
votes
0answers
108 views
what is the best value for MaxConnection in system.net/connectionManagement in WPF ap.config file?
I have a WPF application.
It is available to the user in two ways.
Thrugh a web page - included as ActiveX control.
stand alone WPF application.
I read about seeting the max connection in ...
0
votes
0answers
194 views
Downloading Multiple Files with WebClient
I'm trying to code a patcher for something, and I need to download multiple files one after the other but with a continuous progress bar. So far, I have been able to code it so that the downloads ...
0
votes
1answer
100 views
Mail message not sending. Program not responding
I have created a mail program that will send the email to my account. I have established System.Net, System.Net.Mail. I works on some computers (my main one), but whenever I try and do another ...
0
votes
1answer
36 views
way to register network callback for dumping messages
I have a C# console app that I am doing some testing of a rest api. Currently I am using fiddler to capture the calls for debugging, which is fine, however...
Is there is a way to register a callback ...
0
votes
1answer
182 views
monotouch webexception can't be caught within try/catch when data is reading from received response stream
My application for IOs sends request to service, which sends some data with specified frequency (as usual 2 or three times per second). After 15 or 20 minutes I get WebException, wich can't be caught ...
0
votes
1answer
106 views
Why does WebRequestMethods not exist in the current context?
I'm using Visual Studio 2012 and playing around with Windows Phone 7.1 application development. This is a newly-created project.
When I use this code, why do I get this error?
The name ...
3
votes
1answer
201 views
Very weird spontaneous disconnect for a System.Net socket
I have a System.Net socket that's spontaneously disconnecting, especially if I query its state TWICE in the Visual Studio 2010 debugger.
It's instantiated like this:
_TCPConn = new ...
0
votes
3answers
264 views
Parsing an IP Address from a String using static method
Is there a static method I can use to parse a String to check if it is an IP address, instead of having to initialize a new System.Net.IPAddress instance?
This is what I am trying to achieve
...
0
votes
1answer
84 views
LINQPad and System.Net tracing
I am trying trace a LINQPad script. I have setup System.Net tracing according to http://msdn.microsoft.com/en-us/library/ty48b824.aspx.
I have put following lines into the LINQPad.exe.config file:
...
0
votes
1answer
67 views
How to start HTTP Server from a Silverlight browser application. Alternative to HTTP Listener
I need to start a lightweight HTTP Server from an ActiveX control that is running in a Silverlight browser application. The HTTP Server runs in localhost.
My HTTP Server uses HTTPListener.
I tested ...
1
vote
1answer
396 views
Simple Task-returning Asynchronous HtppListener with async/await and handling high load
I have created the following simple HttpListener to serve multiple requests at the same time (on .NET 4.5):
class Program {
static void Main(string[] args) {
HttpListener listener = new ...
1
vote
1answer
171 views
Dns.GetHostEntry doesn't convert string which contains IP
The function Dns.GetHostEntry doesn't handle ipaddresses as strings e.g. 127.0.0.1 but if I pass google.de as a parameter it works quite well.
Am I doing something wrong ?
public static Socket ...
1
vote
1answer
134 views
Retrieve a string containing html Document source using Task parallel
I really hope there's someone experienced enough both with TPL & System.Net Classes and methods
What started as a simple thought of use TPL on current sequential set of actions led me to a halt ...
9
votes
1answer
325 views
WebClient UploadFileAsync strange behaviour in progress reporting
i need some help with strange WebClient.UploadFileAsync()'s behaviour.
I'm uploading a file to a remote HTTP Server (nginx) usind POST Method. The POST is processed trough a PHP script (which Address ...
0
votes
0answers
650 views
httpwebrequest Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(siteURL + "/" + source);
req.KeepAlive = false;
req.ProtocolVersion = HttpVersion.Version10;
...
0
votes
1answer
80 views
C# Command Line inaccessible due to protection level
I am trying to make a command line based HTTP post to a webpage, where this command line can login and retrieve some data or do other things. I have all the code in place but it does not like ...
2
votes
3answers
404 views
Can't Install System.Net.Http Package into a Windows Phone 7.1 Silverlight Project
I used Nuget to install the "Microsoft ASP.NET Web API Client Libraries" to get the latest System.Net.Http assembly for use in Windows Phone 7.1 XNA and Silverlight projects. It installs just fine ...
0
votes
1answer
208 views
HttpWebRequest.Create and firewalls
I need to check whether a given host is replying to HTTP web requests.
So, all I need to do is HttpWebRequest.Create(someURI) and check the response, right?
HttpWebRequest webRequest = ...
3
votes
1answer
626 views
Web Api: System.Net.Http version 2.0.0.0 not found
When I install the NuGet package for WebApi, it gives me version 1.0.0.0 of System.Net.Http, yet it references version 2.
I cannot seem to find version 2 for the life of me. When I download .net 4.5 ...
0
votes
0answers
253 views
How use BufferList with SocketAsyncEventArgs and not get SocketError InvalidArgument?
I can use SetBuffer with SocketAsyncEventArgs just fine.
If I try to use BufferList (after doing SetBuffer(null, 0, 0)) I always and immediately get SocketError InvalidArgument (10022) when I do ...
1
vote
0answers
107 views
Downloading Files - ConnectStream.Read Timed Out
Problem - When downloading a number of files either through a WebClient or a HTTPWebRequest the download will randomly but regularly hang and give a "System.Net.WebException: The operation has timed ...
-1
votes
2answers
94 views
How is System.Net implemented?
I'm learning networking in C#, and I realized that I'm completely dependent on the System.Net framework for networking (not that this is a bad thing). I don't understand how, using standard language ...
2
votes
1answer
302 views
Using C# to efficiently pull data from a webpage with changing sourcecode?
I have already put together code using the System.net.Webclient class to pull source code from a webpage, which I then use a string search on, to get specific information. This in itself works fine, ...
1
vote
2answers
173 views
nullreference of system.net.sockets on monotouch
I have three versions of the same application: iPhone, Mono Console, Windows Console application. All of them contain exactly the same code (via MonoTouch C#). On the Mono(Touch) framework I get the ...
2
votes
2answers
2k views
What does Dns.GetHostEntry Method(String) actually do?
I can't find any proper description in the documentation for what this actually does.
Does it check for the existence of A records or CNAME records or both?
My understanding is that in .NET 4, this ...
0
votes
1answer
946 views
C# The attempted operation is not supported for the type of object referenced
I got this error when I tried to parse an IP address that was in string form.
I was using a public dns ip address (4.2.2.2) while testing this (using the System.Net's IPAddress.Parse method).
It ...
0
votes
1answer
133 views
Binding WPF Image.Source from https when files are hosted on a shared drive
I have a WPF app with <Image Source="{Binding myUrl}"> that displays images retrieved from an https address.
I've configured the proxy in the .config as such:
<defaultProxy ...
0
votes
3answers
702 views
How to know whether I'm connected to a network or not?
I'm using .Net 4.0 in VS 2010.
I can retreive the IP Address of my machine as
string hostname = Dns.getHostName();
IPHostEntry host = Dns.getHostEntry(hostname);
Now host.AddressList is an array of ...
0
votes
0answers
230 views
When displaying users computer name locally works fine but not on the web server
I am using the following ASP.NET code to display the users computer name:
<% Response.Write(System.Net.Dns.GetHostEntry(Request.ServerVariables["remote_addr"]).HostName); %>
When I test the ...
1
vote
3answers
747 views
using httpListener to create custom website with URL as my IP-Address
I want to create a website with URL as my IP-address[ex: 192.X.X.X]
That website would respond with a "HELLO THERE" message to any user who accesses my URL.
I use the following code to do this As String
Using reader = New ...

