7
votes
4answers
610 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 t …
4
votes
4answers
2k 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 publ …
4
votes
5answers
3k 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 l …
3
votes
3answers
191 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.GZipS …
3
votes
4answers
287 views
Is there a URL builder that supports request paramater 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 …
3
votes
4answers
1k 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 WebCli …
2
votes
2answers
135 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 exter …
2
votes
1answer
147 views
WebRequest: How to find a postal code using a WebRequest against this ContentType=”application/xhtml+xml, text/xml, text/html; charset=utf-8”?
I first posted this: HttpWebRequest: How to find a postal code at Canada Post through a WebRequest with x-www-form-enclosed?.
Following AnthonyWJones suggestions, I changed my cod …
2
votes
3answers
382 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 solutio …
2
votes
2answers
211 views
How can I fetch full name and picture from any user’s Facebook page?
I'd like to get access to the public information about any user on Facebook.
Basically, that means only user pictures and full names, that's all.
It's the information you get when …
2
votes
2answers
1k views
c# WebRequest to connect to wikipedia API
Hey,
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 …
2
votes
2answers
968 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 …
2
votes
3answers
2k views
c# HttpWebRequest Server Unavailable 503 problem
I originally used WebRequest and WebResponse to sent Http Post Messages. Always I got a response of "OK". The message I post is an XML signed with a certificate in the xml.
The co …
2
votes
1answer
599 views
Returning form, querystring, cookie values by priority in ASP.NET MVC
I'm wondering why query string is preferred when getting values from user request. Where?
1) Code of System.Web.Mvc.DefaultModelBinder looks like this (only part of it):
HttpRequ …
1
vote
2answers
58 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 …
