Tagged Questions
The webresponse tag has no wiki summary.
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 ...
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
757 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))
}
...
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 ...
2
votes
3answers
841 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
535 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
140 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
206 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
211 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
215 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
2answers
23 views
How can I scrape an image that doesn't have an extension?
Sometimes I come across an image that I can't scrape so that it can be saved. An example of this is:
https://s3.amazonaws.com/plumdistrict.com-production/perks/12321/image/original.?1325898487
When ...
0
votes
1answer
31 views
Using HttpWebRequest, WebResponse is uncompiled aspx page when uploading file to SharePoint
This is a weird one. For years, a bit of code to upload files to SharePoint has been working on my dev machine. It just stopped working the other day! No exceptions are being thrown, but there is a ...
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
0answers
21 views
WebResponse - Getting 401 error and trying to get server information
I'm using Visual Studio 2010 (Visual Basic)
When the error occurs, I get the basic information about it but when I open the exception detail (from a breakpoint) I click on view details. There I get ...
0
votes
1answer
31 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
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
2answers
103 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 = ...
0
votes
4answers
808 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
2answers
2k views
How to post XML document to HTTP with VB.Net
I'm looking for help with posting my XML document to a url in VB.NET. Here's what I have so far ...
Public Shared xml As New System.Xml.XmlDocument()
Public Shared Sub Main()
Dim ...
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
189 views
Prevent errors when doing a Webrequest in VB.Net
I receive three errors using the following function:
Private Sub readWebpage(ByVal url As String)
Try
Dim req As System.Net.WebRequest = System.Net.WebRequest.Create(url)
Dim resp ...
0
votes
1answer
462 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
384 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
896 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
320 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
3answers
68 views
How to post a custom user defined object to a url?
MyObject myobject= new MyObject();
myobject.name="Test";
myobject.address="test";
myobject.contactno=1234;
string url = "http://www.myurl.com/Key/1234?" + myobject;
WebRequest myRequest = ...
0
votes
2answers
355 views
WebRequest problem, response before request-body
I'am using the WebRequest class in .net and POST data to a server which is responding with a Response.
The wierd thing is that its working when I started fiddler to analyze my network traffic, but ...
0
votes
1answer
100 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
144 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 ...
0
votes
2answers
361 views
IIS/Cache problem?
I have a program that checks if a file is present every 3 seconds, using webrequest and webresponse. If that file is present it does something if not, ect, that part works fine. I have a web page that ...
-3
votes
2answers
83 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?