Tagged Questions
6
votes
4answers
1k views
How to properly dispose of a WebResponse instance?
Normally, one writes code something like this to download some data using a WebRequest.
using(WebResponse resp = request.GetResponse()) // WebRequest request...
using(Stream str = ...
2
votes
1answer
1k views
WebRequest.GetResponse locks up?
When writing the below my code locks up on GetResponse. Why?
try
{
WebRequest myWebRequest = WebRequest.Create(strURL);
WebResponse myWebResponse = ...
1
vote
1answer
2k views
The remote server returned an error: (422)
I am getting following error when I am trying to get WebResponse usiing
WebResponse response = request.GetResponse()
The remote server returned an error: (422).
at ...
0
votes
1answer
46 views
How to get redirected url as string after request
For example on any tinyurl/ajdeijad link (this one is fake), the think redirects to another url
Here is my code:
Dim request1 As HttpWebRequest = DirectCast(HttpWebRequest.Create(urlvimeohd), ...
0
votes
0answers
48 views
Images downloaded are sometimes displayed incorrectly [Resolved]
//src is the internet location of the image
//local is a temp file generated in my machine
//all images are less than 1MB
HttpWebRequest request = WebRequest.Create(src) as HttpWebRequest;
using (var ...
0
votes
2answers
111 views
Downloading response from WebResponse - images included?
I'm trying to download HTML so I can parse it using the minimum bandwidth to download. This is a bit of my code.
if (!String.IsNullOrEmpty(siteAddress))
webReq = ...