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 = ...
5
votes
2answers
762 views
Why does WebResponse never end when reading twitter firehose stream?
The following function will pull down first X messages from Twitter firehose, but looks like WebResponse blocks and never exits the function:
public void GetStatusesFromStream(string username, string ...
3
votes
3answers
163 views
Parallel process a intensive IO function
I have this sample code.
List<Dictionary<string,string>> objects = new List<Dictionary<string,string>>();
foreach (string url in urls)
{
objects.add(processUrl(url))
}
...
2
votes
3answers
854 views
How to simulate button click programatically
Hai every one,
I am developing an application where users can subscribe or unsubscribe to a group of mailing list using .net.I am using webclient class as below
NameValueCollection formData = new ...
2
votes
2answers
536 views
How to Get IP Address of Server responding to WebResponse C#
I am trying to find the ip address (not the hostname) that responded to my WebRequest in C#. I do not want to do a DNS resolution, because their are cases where the DNS records returned are not the ...
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
144 views
C# cannot save file from url with proxy
I'm trying to download a file from a url. I try two approachs but it isn't working with external files.
I think it's happening because I have internet over proxy. I can download internal network ...
1
vote
1answer
208 views
How to parse a FORM from WebResponse into a POST body of a WebRequest
I'm new to this, this is my virgin voyage, the task at hand is to create a transaction in C# that will navigate through a page flow of a web app via WebRequest/WebResponse. I got the Request/Response ...
1
vote
2answers
213 views
Arabic WebRequest C#
I am trying to access a website through C# using the WebRequest and the WebResponse object,
I logged on to the site and preserved the cookie to further browse it,
The problem is that the website is ...
1
vote
1answer
219 views
How to determine the encoding of a webresponse stream?
How to determine the encoding of a webresponse stream ?
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
36 views
internal server error while trying to load content into xdocument
XDocument xDoc = new XDocument();
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(uri);
req.Timeout = 1000 * 60 * 5;
WebResponse res = req.GetResponse();
Stream ...
0
votes
1answer
45 views
HttpWebRequest return a WebResponse with strange numbers
i have a strange problem.
When i get the response of a httpwebresquest, some numbers appears in the middle of the html text.
For example:
< input type="hidden" name="productid" ...
0
votes
0answers
46 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
0answers
42 views
Passing a search result page(is it xml??) in visual c#
i am learning visual c# these days, mostly from the msdn, Now they have a example in which they make a RSS reader, by getting the RSS xml file from the Internet and doing work on it,,
I understood ...
0
votes
4answers
810 views
C# - Saving Audio File using Google TTS Service
I am trying to build a sample which send a very short sentence (less than 100 char) google tts service which returns a audio stream. I am trying to save this stream into a file but when open it, Buf ...
0
votes
1answer
91 views
WebRequests/Responses Slowing down after many calls
i have this method:
private void sendSms(object url)
{
var Url = url.ToString();
webRequest = WebRequest.Create(Url);
// ...
0
votes
1answer
463 views
C# HttpWebRequest and Javascript based form submittion actions
I am trying to make a simple web crawler as a learning experience and I have hit a wall. I am able to set cookies, get cookies, and keep cookies over a session however I am now stuck when attempting ...
0
votes
1answer
386 views
Can we call aspx page which is a part of web service through a web application + consume webpage response from other page
I have written a sample web service, which consist of certain .aspx pages. I have written a code to consume webmethods from that web service.
Now, is it possible to load the aspx page which is a part ...
0
votes
1answer
900 views
Pause Download & Resume (Merge The Existing File)
I'm making a downloader using C#, I want to add a feature of Pause & Resume download, I googled & implemented the suggestions but it didn't work for me; was resuming from the correct position ...
0
votes
1answer
322 views
Get underlying WebResponse from MethodInfo generated from SoapHttpClientProtocol
I've spent a while looking at this but am struggling to get any useful answers.
Basically I have a SoapHttpClientProtocol that I've compiled from a WSDL previously.
I then get the MethodInfo for my ...
0
votes
1answer
101 views
Getting Text From Flash
I have a problem usint httpWebRequest httpWebResponse. The problem is am trying to fetch data from a website which contains loads of text regarding some documents and articles which are inside the ...
0
votes
2answers
455 views
Why does sending post data with WebRequest take so long?
I am currently creating a C# application to tie into a php / MySQL online system. The application needs to send post data to scripts and get the response.
When I send the following data
...
0
votes
2answers
145 views
ResponseStream re-read after read timeout
I am wondering when I read a response stream and a timeout occurs, can I retry the read? Or do I have to make a new request? The server that I am downloading from does not support resuming, so I ...
-3
votes
2answers
86 views
Getting “Realm” message in HTTP authentication using C# [closed]
How can I get the "Realm" message sent in the WWW-Authenticate header by a server requesting HTTP Basic authentication?