Provides an HTTP-specific implementation of the WebResponse class

learn more… | top users | synonyms

0
votes
1answer
13 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 ...
0
votes
0answers
15 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
2answers
71 views

C# Export to CSV problems

I am using a method that accepts datatable and transform it into CSV. The problem is, (1) when I try to call this method, succeeding process/commands will never be executed. Also (2) list box contents ...
0
votes
0answers
21 views

How Web Server responds when it gets “Options” Request?

I want to implement Options method in my HTTP web server. But I didn't yet find the good tutorial of the working of this method. I made one code that implements this method, my code is at the end of ...
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
0answers
14 views

WebException timout vs HttpWebResponse timout

I'm using the Asp.Net WebClient to do an http post. I have a try catch around the code to catch WebException. try { using (MyWebClient wc = new MyWebClient()) ...
0
votes
0answers
16 views

HttpWebRequest and buffer pooling

In my windows service application, we are doing hundreds of http request per second to different servers. The service is long-running service and it used around 4GB of memory after running a few days. ...
0
votes
0answers
22 views

Should a WebException of a webresponse from https request with a expired certificate, have a response or not?

I'm working with windows phone 8 and I'm trying to make a httpWebRequest to an https server which have a ssl certificate expired and not installed on the phone. I only get a general webexception ...
0
votes
0answers
32 views

I'm can download video from a password protected site in asp.net, but the video won't play

So after using this site extensively, I was able to programatically log in to a password protected site, access and display protected web pages, and download a protected video by URL. But I'm having ...
0
votes
0answers
35 views

Remote directory files listing using C#

This could be common ques for you but I am not able to resolve exception coming into my code. I am trying to list down all file names which exist at "http://www.ibiblio.org/pub/". When I types this ...
-2
votes
0answers
52 views

Not opening Popup window to save pdf in Extjs [closed]

I'm new to Extjs-4, I have a question that I'm getting a response of PDF format but unable to open save as popup window. I tried some of the way of opening save as popup window but nothing works for ...
0
votes
1answer
41 views

How do I check for binary vs. text in an HttpWebRequest in c#?

Is there a way to determine if the response from an HttpWebRequest in C# contains binary data vs. text? Or is there another class or function I should be using to do this? Here's some sample code. ...
0
votes
1answer
36 views

OnPropertyChanged Event Handler

I am writing an application for Windows Phone. I have a variable result which stores the response sent by a server after a request from the Windows Phone app. I have a class called request which ...
0
votes
1answer
49 views

Fetching Result from HTTP Response

I have the following C# class which initiates an HTTP request from a Windows Phone to a server: public class Request { public string data; public string result; public Request() { ...
0
votes
1answer
37 views

Why doesn't this code work to detect a page update?

Well the question pretty much explains it. I'm aware the code is very dirty during String.equals, but I just wanted to see if I understood header responses. Clearly I do not, because I watch in my ...
0
votes
0answers
50 views

Access PHP site in ASP.NET with log-in credentials

We have two web applications, one in asp.net and other in PHP. In both we create user profiles. Now the task is to Create users in Asp.NET application and we need to save the same information in PHP ...
0
votes
0answers
81 views

invoke Java Restful web service from c#

Hi I have a java web service in which one method is present I need to invoke the method in C#(ASP.NEt 2.0) but it is giving The remote server returned an error: (405) Method Not Allowed. I am ...
0
votes
0answers
50 views

C#,C++ web requests/responses trackable?

I been developing C#,C++ web request/response applications for quite a while now, usually software related to tasks such as automated website testing and similar sorts of functionality. I'm curious ...
0
votes
0answers
49 views

Edit news in joomla 2.5 with HttpWebRequest/Response c#

Hi (sorry for bad english) I want to learn work with HttpWebRequest/HttpWebResponse in c# on real example - I create programm that can create/edit news, modules, menu item etc. But I get problem when ...
0
votes
0answers
78 views

Get HTTP Response from a url by using C#

Environment: ASP.Net MVC 4 using C# I need to get image by using GET request to a URL /inbound/faxes/{id}/image I used the code below HttpWebRequest request = ...
0
votes
1answer
118 views

HttpWebRequest.GetResponse does not return AutoID for server side controls

In .NET by default the client side ID's, for server side controls, get concatenated with generated text. For example: <asp:TextBox ID="txtUser" runat="server"> would become... <input ...
0
votes
2answers
62 views

do httpwebrequest but without waiting for response

Here i do not want to wait for response from server because i do not care about response for these httpwebrequest. is it ok? or will it affect system in future? HttpWebRequest PostRequest = ...
3
votes
2answers
194 views

C# file export issue

I use this code to export/open files (pdf/xls/doc). Response.Clear(); Response.Buffer = true; Response.ContentEncoding = System.Text.Encoding.UTF8; Response.Charset = "UTF-8"; Response.ContentType = ...
0
votes
1answer
81 views

Could not successfully simulate the form login using c# programming code

Currently I'm trying to simulate the Login using c# code (HttpWebRequest/HttpWebResponse), however I ended up with the login.aspx webpage's html text rather than the html text after successful login. ...
0
votes
0answers
17 views

Wrong Content-Length in HttpWebResponce

I'm writting simple program that requests some sites. I've faced with problem. After _webResponse = webRequest.GetResponse(); Fiddler shows the next request GET ...
1
vote
1answer
35 views

Consuming a stream in the context of a Servicestack client

While I have already learned how I can easily write to the response stream, I was wondering whether in the context of a ServiceStack client (e.g. ServiceClientBase) I can gain access to the server's ...
1
vote
1answer
105 views

C# - HttpWebResponse redirect checker

I'm trying to code a redirect checker, the solution I have was just banged together this morning so it's not the most efficient but it does everything I need it to do apart from one thing: It only ...
0
votes
0answers
52 views

Convert byte[] to HttpWebResponse

I'm writing tcp worker on raw sockets, which simply exchanges http traffic with server. Using raw sockets is, unfortunately, obligatory. So far on the output there is a byte[] array that looks this ...
0
votes
1answer
45 views

Exception in callback trying to get WebResponse

I am using HttpWebRequest to transfer files. The workflow looks like this: webRequest.BeginGetRequestStream(new AsyncCallback(WriteToStreamCallback), webRequest); In WriteStreamToCallback: ...
0
votes
1answer
116 views

How can I get the cookies set by “Set-Cookie” in a HttpWebRequest?

I was hoping the following code would yield a non-zero value: var webRequest = (HttpWebRequest) WebRequest.Create(loginUrl); var webResponse = (HttpWebResponse)webRequest.GetResponse(); ...
1
vote
1answer
319 views

C# System.Net.WebRequest HTTP Request Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host

Before I get started First let me apologize in advance if this is a duplicate question as there appear to be several questions related to 'Existing connection was forcible closed by the remote host', ...
0
votes
1answer
92 views

Paypal Mass Payment API (Does Not Receive Response From paypal) with Asp.net using

I created MassPayment using MassPaymentAPI But I got Error In this Method Input For Methods ::: url="https://api.sandbox.paypal.com/nvp" ...
3
votes
2answers
98 views

Proper fix for HttpWebRequest GetResponse delay on first request

As mentioned before here Why is this WebRequest code slow? and here HttpWebRequest GetResponse delay on 64bit Windows HttpWebRequest hangs at the first request because of proxy auto-detection. A fix ...
1
vote
2answers
70 views

Why HttpWebResponse.ContentLength returns -1 all of a sudden?

We have a peculiar issue here. We have a code on the client side to download some files from the web server using HTTPWebResponse/HttpWebRequest We are using HttpWebResponse.ContentLength to get the ...
0
votes
0answers
92 views

How do I decide on a buffer size when downloading a file using HttpWebRequest and HttpWebResponse?

I'm using HttpWebRequest / HttpWebResponse to download an image file from a remote server to my own web server. The code is working fine, but I don't know if the buffer size I've chosen is the optimum ...
0
votes
2answers
197 views

C# HttpWebResponse contentlength = -1 when file too large

I'm getting a string in a json format from the Rotten Tomatoes website. My code looks like HttpWebRequest webRequest = (HttpWebRequest)HttpWebRequest.Create(url); webRequest.Method = "GET"; ...
0
votes
1answer
69 views

How can you read only part of an HttpWebResponse

I would like to read only part of an HttpWebResponse. Let's say the first 100k. How can I read only the first 100k of the Response but still end up with a non-corrupted substring? If I just throw the ...
0
votes
2answers
98 views

httpwebrequest getresponse() does not return any content whereas fiddler shows content

I created the GetCourses() method where I am using HttpWebRequest to request data from the Url shown. If I copy paste the url in a browser, the browser will show xml data. I also used fiddler to do ...
0
votes
1answer
50 views

Web Page Reading Without Affecting Visitor Count

I'm writing a program that is reading webpage contents whith C# Windows Forms. I'm using HttpWebRequest and WebResponse thats ok no problem with reading any content. But the pages visitor counter is ...
1
vote
1answer
130 views

How to display HTTP 401 basic authentication dialog

I am new to web development. I have Android application that hosts some web pages using HTTPServer. I am using Netty to decode/encode request/responses. Now, I want to display basic authentication ...
0
votes
1answer
454 views

httpwebrequest in windows phone 8 app throws “The remote server returned an error: NotFound.”?

i am developing an windows phone 8 app , in my app i am calling services and downloading some data into my app. i am testing my app in windows phone 8 emulator, many times it throws this error : ...
1
vote
0answers
71 views

Most effective way of checking a url is alive and redirects anywhere or not?

I want to check whether a url is alive and if redirects anywhere i want to get redirected url. Here is my function but i am not sure whether it is most effective way or not From effective i mean ...
2
votes
1answer
49 views

Why do I get the IMDB result translated in Romanian?

HttpWebRequest WebReq; HttpWebResponse WebResp; Stream Answer; StreamReader _Answer; string ResponseOutput; WebReq = (HttpWebRequest)WebRequest.Create(imdb.url); WebReq.KeepAlive = false; ...
2
votes
2answers
155 views

Asynchronously using HttpWebRequest without blocking UI thread

I am trying to use HttpWebRequest and HttpWebResonse asynchronously in a WinForms application without blocking my UI thread. I saw this similar SO Question which explains how to do it. However, I am ...
0
votes
1answer
156 views

Unable to get the session id from HTTP cookie in CookieContainer WP8 application

Preface: I'm writing a windows phone 8 application, and one of my modules is responsible for communication over a remote server. I'm using GET and POST methods using HttpWebRequest and ...
0
votes
1answer
64 views

Webservice returns an ad page instead of data in monodroid app

I have been testing an app i am writing in Monodroid(Mono for android). Basically i am storing some simple data to the database via a php post (http:// ...
0
votes
1answer
80 views

HttpWebRequest.GetResponse hangs on reponse with no content

I've written a small "web server" that replays a pre-crafted response to everything. In this case: HTTP/1.1 404 Not Found\r\n \r\n The following client code hangs until the TCP timeout kicks in: ...
1
vote
1answer
146 views

JSON response contains XML header

I'm sending a HTTP request to an ASP.NET web service and it returns the response as JSON (The web service originally returns a DataTable and it uses JSON.NET to convert it to JSON). I'm getting the ...
0
votes
0answers
84 views

Getting error in AJAX response on Safari browser only

I'm facing very strange issue. I'm using below code to get value from an API: var getId = function () { var url: "Proxy:url=https_URL" var result; $.ajax({ type: ...
1
vote
1answer
118 views

How do you create a WebException with a custom WebResponse

I have created a RESTful web service using MVC4 Web API. I am throwing a WebException if something is wrong. throw new WebException("Account not found"); Here's the client code that handles the ...

1 2 3 4 5 9