HttpWebRequest is a class for .NET Framework applications that provides a HTTP-specific implementation of the WebRequest class.

learn more… | top users | synonyms

0
votes
0answers
14 views

Fiddler2 blocking C# GetRequestStream()

Trying understand, why my POST request not works, i downloaded Fiddler2. Fiddler catch first GET request, but when i sending POST request using (var streamRequest = request1.GetRequestStream()) ...
0
votes
1answer
31 views

HttpWebRequest.GetResponse() keeps getting timed out

i wrote a simple C# function to retrieve trade history from MtGox with following API call: https://data.mtgox.com/api/1/BTCUSD/trades?since=<trade_id> documented here: ...
0
votes
2answers
24 views

Using Statement with Stream, StreamReader and WebResponse

I have been noticing what seems to be memory leaks in some of my services, and I am trying to make sure that I am handling resources properly. I have the following code used to send an external Http ...
0
votes
0answers
16 views

Authenticate against UAG using Windows Phone 8 app

I have a very simple scenario - I need my app to automatically authenticate against the UAG gateway. At the moment, I only have a file share application behind the portal, but I'm just trying to do an ...
0
votes
0answers
10 views

Get stream data from httprequest asp.net

I am sending an audio file to a asp.net webpage i build . I am using following code to send audio file. WebReq = (HttpWebRequest)WebRequest.Create(URL); WebReq.Method = "POST"; ...
0
votes
2answers
24 views

how to handle while multiple push notification comes at same time in foreground of app in iOS

I have send request to server in delegate method of application:(UIApplication *)application didReceiveRemoteNotification: but when multiple push notification comes at same time app get crash because ...
0
votes
0answers
29 views

Is there any way to process the content before gettting whole response from the server in c# .net

I have to process the response content without waiting to get all content from the server.... If I get some part of data then i have to start process in it, without waiting for all data to come Here ...
0
votes
0answers
9 views

HttpWebRequest not sending renewed cookie only in Safari, Silverlight

I am making post request in my Silverlight Application using HttpWebRequest which includes cookies in the header. Following is my code HttpWebRequest request = ...
0
votes
0answers
8 views

httprequest stream vs tcp netstream differences

I currently have an open http connection to a data feed where I read a message at a time and send to a MSMQ queue. If the data volume spikes then I am aware that I am losing data as the source cannot ...
0
votes
1answer
16 views

Android RSS fail to download xml file from link

I already know how to read a xml file from local storage. But now I would like to get the news from Yahoo! [link: http://hk.news.yahoo.com/rss/hong-kong ] I use the code as below but it returns ...
0
votes
0answers
25 views

How to abort the uploading through HTTPWebRequest correctly?

ImageFile currImage = (ImageFile)image; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(BuildUrl(currImage.Meta)); req.AllowWriteStreamBuffering = false; req.Method = "POST"; ...
-1
votes
0answers
23 views

c# Parallel multiple web page request

I'm creating an scrapper and I want to get the results like: Main URl list: 1. https://www.google.co.in/#output=search&sclient=psy-ab&q=c%23+tutorial&start=10 2. ...
0
votes
1answer
23 views

How to reject and HTTP Posts based on content length without parsing the request stream in C#? [duplicate]

Some third party is posting data to our webpage via HTTP Post. I want to set a limit say 1 Kb for HTTP posts, if it is above 1 Kb I need to reject the HTTP post. I don't want to read the whole request ...
0
votes
0answers
24 views

vb.net error with setting cookie from webbrowser control to httpwebrequest

im loading my web application in vb.net web browser control. every valid users are authenticated using username and password in web application . my problem is , to upload a file im using ...
0
votes
1answer
15 views

Remembering Sessions - phpBB

Im currently coding a basic login using HttpWebRequests in Visual Basic 2010. After following some tutorials, I somehow racked this code up: http://pastebin.com/azZuyvDM Pretty much I have phpBB ...
0
votes
1answer
39 views

curl Request with ASP.NET

I have read some other posts on Stack but I can't get this to work. It works fine on my when I run the curl command in git on my windows machine but when I convert it to asp.net it's not working: ...
0
votes
2answers
21 views

c# RequestStream changes equal to comma

I have a program where I am using POST to send an XML message to an endpoint. It is properly formed in the output both before and after being converted to a byte array, but once it is received by the ...
0
votes
0answers
43 views

Windows Phone 8 HttpWebRequest Timeout

Just a philosophical question here... I consider Timeout in an asynchronous HttpWebRequest something basic, something so basic I can't even think why would it not be implemented... I tried to make a ...
0
votes
1answer
26 views

Windows Phone: Cancel HttpWebRequest and get data

I use a HttpWebRequest in C# for Windows Phone 8 to download a file from a remote server. The request is canceled after a certain time using a timeout which calls HttpWebRequest.Abort(). This works ...
-1
votes
0answers
22 views

Is there a way to force HttpWebRequest/WebRequest to wrap attribute values in quotations?

So I am writing a C# application that gets and parses a web page using HttpWebRequest. I would prefer the attribute values in the returned HTML to be wrapped in quotes. I could write a function to add ...
0
votes
0answers
24 views

Get httpwebrequest redirect response

I have a page 'A' lets say http://www.mytestpage.com/A which redirects(using Javascript) to Page 'B' lets say http://www.mytestpage/B. I am using following code to get the response of the redirected ...
0
votes
0answers
47 views

What is the least ugly way to make async HttpRequests [closed]

I have a utility Winforms app. Currently it makes a series of HttpWebRequests, processes the output, and displays the results all in the GUI thread. I want to parallelize the Http requests with the ...
0
votes
0answers
37 views

How do I get rss feed xml schema back from twitter api in Classic ASP into an local file

Here is my asp file calling the url: <% Response.Expires = -1 URLToRSS = "https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=nrcGOV" Set xmlHttp = ...
0
votes
2answers
57 views

How to do a HTTP GET request using async and await

I'm trying to create a function that takes a url as a parameter and returns the GET Response from it, it just give me an error in the WebResponse responseObject intialization line The exception is ...
0
votes
0answers
72 views

c# - http web request with https and basic authentication

I'm trying to do a webrequest over a https url with basic authentication. And its not working! below is my code, it actually works if i use a non secure url vs the secure one, and i can't figure out ...
0
votes
2answers
67 views

Poor performance when using MonoTouch's HttpWebRequest

I'm downloading some small images (about 40 KB each) in my MonoTouch app. The images are downloaded in parallel - the main thread creates the requests and executes them asynchronously. I use ...
0
votes
0answers
21 views

Ajax HTTP request. Adding points to a bing map

I am trying to use a HTTP request to add points to a bing map with data from the seismi Api. However whenever include the apipins function in the views page (MVC) the map does not load. Also how do ...
0
votes
0answers
16 views

Is there a tool to check my crossdomain.xml added to my site is working fine?

Is there any tool to check that crossdomain.xml which I have added (to the root of my site) is allowing cross domain web requests. I have a silver light application which makes cross domain requests ...
1
vote
1answer
124 views
+100

HttpWebRequest with Windows 8 Phone App

When i try to make HttpWebRequest it is returning System.Net.ProtocolViolationException error. private void txtGo_Click(object sender, RoutedEventArgs e) { WebRequest client = ...
0
votes
0answers
11 views

Unable to duplicate browser post encoding with HttpWebRequest

I am using HttpWebRequest and I am having trouble with special characters & encoding. This is what I am attempting to duplicate: Using Fiddler I get the following post variables for the "€" ...
16
votes
1answer
377 views

Is HttpWebRequest implemented differently in mono and .net?

I am trying to port the c# cloudinary api to mono and I am having some problems building up the http request. I have separated out this method for setting up the request but the ...
0
votes
0answers
40 views

Get HttpOnly cookies using HttpWebRequest

I'm trying to log in to a site programmatically using .NET's HttpWebRequest POST method (code's written in C#). Originally I sent the request to the login page, saved the response cookies to a ...
4
votes
8answers
350 views

Sending SMS for a bulk of users

I want to send SMS to bulk of users(4000 user) so i put the following method on loop : protected int SendSMS(string url) { // Now to Send Data. StreamWriter writer = ...
0
votes
2answers
22 views

Check ContentLength of a large response before downloading content

I'm using HttpWebRequest and want to check the ContentLength of the response before the entire response is downloaded. But when calling: var res = request.GetResponse(); // entire response is being ...
0
votes
1answer
37 views

AllowAutoRedirect in windowsPhone

In HttpClientHandler have propertie AllowAutoRedirect, but on build app for WindowsPhone throw exception: HttpClientHandler.AllowAutoRedirect is not supported on this platform. Please check ...
2
votes
0answers
61 views

Is it a bad practice to do WebRequests from ASP.NET MVC app?

I'm doing a web application (ASP.NET MVC) running/deployed in Windows Azure. Is it a bad practice if I do a lot of WebRequests from this application?, that is: ActionResult SomeAction() { ...
0
votes
0answers
51 views

Upload File using httpwebrequest and rest api

I am trying to upload file using httpwebrequest and rest api My code is like this i am not getting any error but i cannt able to upload file. public static string RequestProfileUrl = ...
0
votes
1answer
60 views

C# : OAuth 2.0 authentication doesn't redirect for user consent

I'm working on a Web App that gets my users' gmails. For OAuth Authentication, I'm Making a Ajax call from UI to HTTPHandler and from HttpHandler i'm making HttpWebRequest GET call to google server. ...
0
votes
1answer
58 views

Web Request error 407 Proxy Authentication Required

Trying to GetResponse From a web site; using System.Text; using System.Net; using System.IO; namespace DutyPharmacy751013 { class Program { static void Main(string[] args) { ...
3
votes
0answers
67 views

HttpWebRequest doesn't seem to “get” my proxy credentials

I have a REST-based web service I'm trying to connect to, and while it works just fine from my local dev machine, I am trouble getting it to work on my client's test system which is behind a web ...
0
votes
1answer
28 views

translate curl to .net web request

Here is a curl command from documentation: curl -g "http://ip.ip.ip.ip/test/xyz.jpg?attributes=size" Can i just translate it to HttpReqeust like this? UriBuilder builder = new UriBuilder("http", ...
0
votes
0answers
28 views

How to create a folder using REST api

I want to create a folder in https://ws.onehub.com/ site. i did everything like downloading file,deleting file and getting list of file but my problem is that httppost is not working for me. My code ...
0
votes
2answers
58 views

HttpWebRequest download file and progress bar

I searched the net but couldn't find any way to get progress while downloading file with HttpWebRequest. Does this class support progress at all? Any link, tutorial, hint would be greatly appreciated. ...
0
votes
4answers
62 views

Does a http response parser exist in C#?

{"sentences":[{"trans":"událost","orig":"event","translit":"","src_translit":""}],"dict":[{"pos":"podstatné jméno","terms":["událost","případ","příhoda","soutěž","sportovní ...
0
votes
1answer
57 views

Get request fails by timeout

I am working on automation of voting process on one particular web site. My program needs to do the following things: log in to the web site, vote for particular musician, then log out. I use ...
1
vote
2answers
116 views

Tamper GET request parameter with Tamper Data in Firefox?

I am able to tamper post request parameter with Tamper Data in firefox i.e when i make post request and i get the popup in firefox to change POST request parameters but in case of GET request, i ...
2
votes
1answer
34 views

Different Content Length between C# and Java

I am trying to read a upload file from browser, then write to a remote server. But I found that the request.getheader("content-length") is different from the actual length of request.getInputStream() ...
0
votes
0answers
45 views

PHP Mail using HTTP POST Attachments

I am developing a PHP service for my Windows Phone based client application. I will be invoking the service through my client(WP7) and I want the service to also send any attachment that is sent as a ...
0
votes
0answers
51 views

Getting redirected while trying to scrape a website: HTTP/1.1 302 Moved Temporarily

I have written a Cocoa app to scrape the text of different languages of content of a website. It worked really well until all of the sudden it stopped working. In order to build the scraper I had to ...
2
votes
1answer
62 views

HttpWebRequest Response Stream only returns 64k of data

We're using the Web API to provide a RESTful service to our application, which at the moment is using WPF and so requires a service client. The problem we're having is that when the response size ...

1 2 3 4 5 64