I have some code that iterates a few 100 urls and requests the data from the web. It looks something like this
I\'m trying to write a function in my Silverlightapp that requests a particular page that doesn\'t exist on the same domain as where my Silverlight app is hosted.
In my silverlight app I do a file upload. I break the file i开发者_高级运维nto chunks and then I upload each chunk. The problem is that I want to use the HttpWebRequest synchronously. My propblem is t
An HttpWebRequest has the properties ContentLength and ContentType, but 开发者_如何学Chow do you actually set the content of the request?The following should get you started
In one of my apps, I am getting the response fro开发者_StackOverflowm a webrequest. The service is Restful service and will return a result similar to the JSON format below:
I am writing some failover code so that if my desktop app cannot connect to its website, it can instead try a backup website.
I\'m only interested in handling GET or POST requests, so I designed this abstract class to determine which request has been made and to subsequently call the appropriate function. I would really appr
I\'m trying to scrape a website that has user authentication. I am able to do a POST to send my login and stores a cookie. However, after the login I get a 403 error when trying to access the protecte
For a client application that needs to download several (25+) different objects at the same time from an internet connect, what is the ma开发者_开发问答x number of async HttpWebRequests that should be
Merged with How to free up memory after base64 convert. Thanks for your great suggestions to an OOM (out of memory) problem I\'m seeing in code intended to stream files for web services.[