Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
6answers
15k views

Is WebRequest The Right C# Tool For Interacting With Websites?

I'm writing a small tool in C# which will need to send and receive data to/from a website using POST and json formatting. I've never done anything like this before in C# (or any language really) so ...
16
votes
4answers
3k views

Mocking WebResponse's from a WebRequest

I have finally started messing around with creating some apps that work with RESTful web interfaces, however, I am concerned that I am hammering their servers every time I hit F5 to run a series of ...
9
votes
2answers
4k views

Cannot send a content-body with this verb-type

I just got this exception (ProtocolViolationException) in my .NET 2.0 app (running on windows mobile 6 standard emulator). What confuses me is that as far as i know, I have not added any content ...
9
votes
3answers
1k views

How can I do digest authentication with HttpWebRequest?

Various articles (1, 2) I discovered make this look easy enough: WebRequest request = HttpWebRequest.Create(url); var credentialCache = new CredentialCache(); credentialCache.Add( new Uri(url), // ...
9
votes
5answers
4k views

How to properly catch a 404 error in .NET [closed]

Possible Duplicate: C#, how can I catch a 404? I would like to know the proper way to catch a 404 error with c# asp.net here is the code I'm using HttpWebRequest request = (HttpWebRequest) ...
9
votes
3answers
1k views

HttpWebRequest to URL with dot at the end

when i do a GET with WebRequest.Create("http://abc/test.") i get 404 because according to fiddler the trailing dot gets stripped away by .NET and the web server needs the dot. how can i prevent that ...
9
votes
5answers
15k views

c# WebRequest class and headers

When I try to add a HTTP header key/value pair on a WebRequest object, I get the following exception: This header must be modified using the appropriate property I've tried adding new values to ...
8
votes
2answers
5k views

How to get json response using system.net.webrequest in c#?

I need to get json data from an external domain. I used webrequest to get the response from a website. heres the code: var request = WebRequest.Create(url); string text; var response = ...
8
votes
4answers
2k views

Sending gzipped data in WebRequest?

I have a large amount of data (~100k) that my C# app is sending to my Apache server with mod_gzip installed. I'm attempting to gzip the data first using System.IO.Compression.GZipStream. PHP receives ...
8
votes
2answers
6k views

“too many automatic redirections were attempted” error message when using a httpWebRequest in VB.NET

I am attempting to request a page like "http://www.google.com/?q=random" using the webrequest class in vb.net. we are behind a firewall, so we have to authenticate our requests. I have gotten past the ...
7
votes
3answers
6k views

WebRequest to connect to the Wikipedia API

This may be a pathetically simple problem, but I cannot seem to format the post webrequest/response to get data from the Wikipedia API. I have posted my code below if anyone can help me see my ...
7
votes
5answers
9k views

Best way to test if a website is alive from a C# applicaiton

I am looking for the best way to test if a website is alive from a C# application. Background My application consists of a Winforms UI, a backend WCF service and a website to publish content to the ...
6
votes
2answers
53 views

What are some good Free HttpDebugging Tools

I currently use fiddler2 ,paros proxy, Live Http Header and HttpFox. I would like to know if there are some Free good quality http debugging tools available other than these. Thanks Again Guys!
6
votes
2answers
10k views

How do I use WebRequest to access an SSL encrypted site using https?

I'm writing a program that reads content from a user provided URL. My problem is in the code that goes something like this: Uri uri = new Uri(url); WebRequest webRequest = WebRequest.Create(uri); ...
5
votes
1answer
463 views

MonoTouch - WebRequest memory leak and crash?

I've got a MonoTouch app that does an HTTP POST with a 3.5MB file, and it is very unstable on the primary platforms that I test on (iPhone 3G with OS 3.1.2 and iPhone 4 with OS 4.2.1). I'll describe ...
5
votes
2answers
8k views

Creating WPF BitmapImage from MemoryStream png, gif

I am having some trouble creating a BitmapImage from a MemoryStream from png and gif bytes obtained from a web request. The bytes seem to be downloaded fine and the BitmapImage object is created ...
5
votes
1answer
2k views

Handling Redirection in .NET WebRequest

I'm behind a firewall that asks me to enter credentials before letting me access internet. So my first http request is intercepted and then redirected to a secure server that prompts me to enter my ...
4
votes
3answers
1k views

HttpWebRequest times out on second call

Why does the following code Timeout the second (and subsequent) time it is run? The code hangs at: using (Stream objStream = request.GetResponse().GetResponseStream()) and then causes a ...
4
votes
3answers
533 views

Get website's server from IP address

I have a function that returns a website's server when you enter the url for the site: private string GetWebServer() { string server = string.Empty; //get URL string url = ...
4
votes
2answers
361 views

.Net: How to simulate and measure a full web request?

I’m trying to measure a request with WebRequest, But I’m getting significant smaller results then measuring with FireBug. I guessing it’s because some content like Images and CSS isn’t included. Is ...
4
votes
4answers
2k views

Is there a URL builder that supports request parameter concatenation as well?

I want to achieve something like the following: UrlBuilder ub = new UrlBuilder("http://www.google.com/search"); ub.Parameters.Add("q","request"); ub.Parameters.Add("sourceid","ie8"); string uri = ...
4
votes
2answers
4k views

How to get website title from c#

I'm revisiting som old code of mine and have stumbled upon a method for getting the title of a website based on its url. It's not really what you would call a stable method as it often fails to ...
4
votes
4answers
5k views

C#: Downloading a URL with timeout

What's the best way to do it in .NET? I always forget what I need to Dispose() (or wrap with using). EDIT: after a long time using WebRequest, I found out about customizing WebClient. Much better.
3
votes
1answer
88 views

Asynchronous Requests with MonoTouch

I am trying to execute an asynchronous request in my MonoTouch application. When I execute the following code, it behaves like the request starts, but it never seems to return. What am I doing wrong? ...
3
votes
1answer
45 views

How to test how long a client can hold an HTTPS connection open?

I am developing against an API whose documentation says that the client code must be able to hold an HTTPS connection open for up to 15 seconds I would like to be able to confirm this criterion ...
3
votes
2answers
343 views

C# - Cookie Management

Hey guys, I asked a question on here earlier and got some fantastic responses. I've since been diddling Visual C# and ran into a bit of a problem. Here I made a simple page that sets a cookie: ...
3
votes
1answer
351 views

Silverlight ClientHttp WebRequest timeout

I have a silverlight 4 application using the ClientHttp stack to make a WebRequest which serves a binary stream. I then read from this stream and do stuff. However, I have the following problem: the ...
3
votes
2answers
350 views

C# How to “check on”, “cancel”, and wait on Async WebRequests?

Let's say I have 50 requests that I started using BeginGetResponse. How do I check the status of each request? and how do I cancel it (sometimes they hang)? and how can I perform an action when ALL ...
3
votes
2answers
458 views

Using .Net WebRequest Factory

As Richard Willis suggests in http://blog.salamandersoft.co.uk/index.php/2009/10/how-to-mock-httpwebrequest-when-unit-testing/ i'm trying to call a web request moking the behavior. For that (I asking ...
3
votes
2answers
1k views

HttpWebRequest.GetRequestStream() breaks by timeout on SSL connection under Windows 7/Vista

I have an C# windows application (.Net 3.0 Framework) that makes a call to PHP web service using HttpWebRequest. In Win 7 & Vista, if the call is made via non-SSL (i.e. http://), the code works ...
3
votes
4answers
839 views

Multithreading a large number of web requests in c#

I have an program where I need to create some large number of folders to an external sharepoint site (external meaning I can't use the sharepoint object model). Web requests work well for this, but ...
3
votes
1answer
2k views

C# WebRequest Login Session

Okay I tried asking this question yesterday but i'm not sure if I gave enough info, i got an answer but it hasn't worked for me. Basically what i'm doing is the user opens this windows forms ...
3
votes
1answer
199 views

WebRequest doesn't make cached items available in the same process

We're seeing a strange behavior where things that get cached (in the IE/wininet cache) as a result of using the WebRequest API are not available from the cache until a new process is created. ...
3
votes
1answer
362 views

Rx: Piecing together multiple IObservable web requests

I'm creating multiple asynchronous web requests using IObservables and reactive extensions. So this creates observable for "GET" web request: var tweetObservalue = from ...
3
votes
2answers
2k views

Using .NET to Post a file to Server HttpWebRequest or WebClient

Okay so here is the deal. As the question states, I'm trying to POST a file to a webserver and am having a few issues. I've tried posting this same file to the same webserver using Curl.exe and have ...
3
votes
2answers
1k views

C# maintaining session over HTTPS on the client

I need to login to a website and perform an action. The website is REST based so I can easily login by doing this (the login info is included as a querystring on the URL, so I dont't need to set the ...
3
votes
3answers
2k views

c# HttpWebRequest POST'ing failing

So i'm trying to POST something to a webserver. System.Net.HttpWebRequest EventReq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create("url"); System.String Content = "id=" + Id; ...
3
votes
3answers
1k views

How many concurrent outbound HttpWebRequest calls can be made in ASP.NET / IIS7?

I'm writing an ASP.NET web application which will run on Windows Server 2008 (IIS7). Each page's codebehind will need to make at least one synchronous web service call to an external server using ...
3
votes
3answers
3k views

HttpWebRequest or WebRequest - Resume Download ASP.NET

I would like to know if there is a way to know if a server supports resume download functionallity and if supported, how do I send a request to resume? I was looking for a solution where my ASP.NET ...
3
votes
4answers
3k views

Reading data from an open HTTP stream

I am trying to use the .NET WebRequest/WebResponse classes to access the Twitter streaming API here "http://stream.twitter.com/spritzer.json". I need to be able to open the connection and read data ...
3
votes
5answers
239 views

Lengthy lines of code vs readability

This is perfectly fine C# code and works fine provided correct URL. But the everything is just done at one line by reducing the readability of the code. Here is the code : return new ...
2
votes
1answer
33 views

Encoding differences between using WebClient and WebRequest?

In getting some random spanish newspaper's index I don't get the diacriticals properly using WebRequest, they yield this weird character: �, while downloading the response from the same uri using a ...
2
votes
1answer
96 views

Simple forwarding using Google Chrome webRequest API

I am attempting to create a Chrome extension to help me understand Chrome's webRequest API by replicating what is done with this answer but without the experimental portion of the namespace, which is ...
2
votes
3answers
49 views

Proper way of delaying the loading of view until a web request or other long running task completes

When doing a webrequest, or any other long running task, I should do it in a separate thread (let's call this thread B) so as not to block the UI. But what's the standard way to take action on the ...
2
votes
4answers
104 views

Run x number of web requests simultaneously

Our company has a web service which I want to send XML files (stored on my drive) via my own HTTPWebRequest client in C#. This already works. The web service supports 5 synchronuous requests at the ...
2
votes
2answers
148 views

using c# webrequest to interact with an asp.net mvc 3 website

I created a simple mvc3 site with a home controller with these actions. public JsonResult Param(string id) { string upper = String.Concat(id, "ff"); return ...
2
votes
3answers
47 views

instantiating an object from a web service vs instantiating an object from a regular class

I have a very basic web service: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace WebService1 { /// ...
2
votes
2answers
121 views

Verify file exists on website

I am attempting to make a simple function that verifies that a specific file exists on a website. The web request is set to head so I can get the file length instead of downloading the entire file, ...
2
votes
1answer
72 views

Comparing two strings from two different streams are never equal even though they should be

I have a stream that is reading the response from a site. I am then saving that stream to text in a text file. If I then run it again and compare the string from the same site and the text saved in ...
2
votes
2answers
201 views

C# Web Request Exception: The underlying connection was closed: An unexpected error occurred on a receive

Normally, this code works completely fine, but I have a single instance on a customers PC which is throwing this exception. We can't replicate at all. As in the subject, the exception I am getting is ...

1 2 3 4 5 7