Tagged Questions

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 ...
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 ...
1
vote
1answer
221 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
225 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
2answers
467 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
69 views

Webresponse/Webrequest not working

My program uses WebRequest and WebResponse in order to download a HTML file from a given URL in an iteration. For example, the URL string will look something like http://www.aaaa.com/cccc=varB ...
0
votes
2answers
29 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
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
1answer
46 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
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
0answers
43 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
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
98 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
201 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
467 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
964 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
3answers
74 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
389 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
2answers
370 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 ...