0
votes
0answers
33 views

Unexpected HEAD request error in NodeJS

I have a node.js server and client using node.js api, and when I was trying to send a HEAD request to the server, got an error says { [Error: socket hang up] code: 'ECONNRESET' } Meanwhile, a PUT ...
2
votes
0answers
44 views

with servicestack how can i prevent cookies being added to the response?

I can remove the cookies after the fact, with this: public override void Configure(Funq.Container container) { ResponseFilters.Add((req, res, dto) => { ...
2
votes
1answer
89 views

Spring MVC gives HTTP 406 for application/octet-stream

I am using Spring Web MVC and have written a controller that shall return binary data to a plugin in a web-page that show 3D content. This plugin uses STK files for it's models, so I have set-up my ...
2
votes
1answer
93 views

Having issue reading HTTP response code for a stream (works with normal url)

I try to detect if a stream (ogg or mp3 file) exists, or not. I wanted to use get_headers but i've noticed that my hosting has disabled this function. I can activate it in htaccess but for some ...
4
votes
1answer
42 views

How should a client handle Location field in an HTTP response when it includes a username & password?

The specification does not mention what to do of the username:password in a URI returned by a Location such as: Location: http://user:secret@w3.org/hidden/pages Are we supposed to ignore such? It ...
0
votes
1answer
32 views

php: inconsistent behaviour with HTTP headers

am testing lots of links on the same domain to see whether they exist or not. I am using the following code: function get_http_response_code($url) { $headers = get_headers($url); return ...
0
votes
2answers
165 views

Extract cookies info from response headers C#

I have some information that is available in a response header. One way would be to come up with a regex for it...Is there another way to work around this? This is the header info: Headers = ...
3
votes
1answer
184 views

How can I modify a Java servlet response header in case the container authentication has failed?

I have a Java EE project with web services protected by web container authentication. (HTTP-basic) (we can say in this context: the web services are servlets) A would like to modify the servlets ...
1
vote
1answer
100 views

Problems using PHP to send headers using header()

I am trying to do a small application that send a HTTP request to a website, and gets a HTTP reply. I use the status on the header to see what happened with the request. The code is quiet simple, and ...
0
votes
1answer
646 views

request.getHeader returning a null value in a jsp page

I have written a filter to add some header values to Response object. The doFilter is setting some header value as shown below public void doFilter(final ServletRequest req, final ServletResponse ...
0
votes
0answers
37 views

How is it possible to findout duration of a video file form http response

When downloading a video file with IDM, sometimes it shows the duration of video instead of length in bytes. How is it possible? As I remember, there is no specific information (say video frame rate ...
1
vote
1answer
139 views

Using CakeResponse in CakePHP application

I'm trying to use CakeResponse in my CakePHP 2.2 application. When I use this, I can see my response in page's headers. This is ok: header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT'); But ...
0
votes
0answers
187 views

Dynamic css file 304 on Chrome but 200 on FF and IE?

I have a css file being dynamically loaded. For example: http://example.com/css.php?request=/skin/styles.css On chrome is loads very fast and it has the 304 not modified header. On FF and IE it ...
0
votes
1answer
520 views

Unicode data in web response header

I have developed web api which accept files using POST method, makes manipulation and return them back using HTTP Response. The web api return additional data in http header like output file name. The ...
2
votes
1answer
167 views

Setting the name of a file downloaded from the browser

Disclaimer I am aware of the Content-Disposition header to send back to the client to set the downloaded file name - however my problem is a little more complicated than just that I have an ...
2
votes
4answers
2k views

content type for mp3 download response

I m have created a simple HTTP server which allows user to download files. But this does not seem to work for mp3 files. The content type currently is "application/misc". In order to make it work with ...
0
votes
2answers
343 views

If-modified-since header with filters and MVC3

I just saw some examples about implementing the if-modified-since header. I really don't understand how it works very well. I have seen this example and it seems that if I set a date value to the ...
0
votes
1answer
176 views

get the ETAG value from the HttpResponse

To get the content length we usually use httpResponse.getEntity().getCotentLength(). But to get the ETAG Is it supposed to use httpResponse.getFirstHeader("ETAG")? Both the Content-Length and ETAG ...
0
votes
1answer
265 views

Add Duplicate HTTP Response Headers in Nodejs

I am looking for adding duplicate HTTP headers in the http response in Nodejs, something like: HTTP/1.1 206 Partial Content Content-Length: 1234567 Content-Type: video/ogg Content-type: ...
0
votes
1answer
305 views

Construct Multi-part http response using node.js

I want to create a multipart http response (NOT http request) using the http module in node.js. The response looks like this: HTTP/1.1 200 OK Content-Length: 123456 Content-type: ...
0
votes
1answer
280 views

How to correctly write http response so as to use XHR progress event listener

I would like to use XHR object's "progress" event to get the progress of download. Here's example code from MDN var req = new XMLHttpRequest(); req.addEventListener("progress", updateProgress, ...
1
vote
1answer
217 views

What is the “raw HTTP header”? What is the difference between “HTTP header” and “raw HTTP header”?

In Zend Framework in Response Class there are two different arrays for storing headers: _headers[] and _headersRaw[]. And there are appropriate methods for setting each one: setHeader(), ...
3
votes
3answers
425 views

header() function doesn't work as written in the manual. Where the error can be?

I have some problems with header() function. It works and doesn't work at the same time. The manual says: Remember that header() must be called before any actual output is sent, either by ...
0
votes
1answer
316 views

Android check download successful

For downloading stuff I work with the apache classes HTTPResponse HTTPClient etc. I check for a valid download like this: entity.writeTo(new FileOutputStream(outfile)); ...
1
vote
2answers
1k views

PHP script to check webserver status using a cron job

I'm looking for a PHP script that can be run as a cron job on my web host. It needs to run through a list of websites and check to make sure that each returns the Http response 200 OK. If a site ...
1
vote
1answer
205 views

ASP.NET - Difficulty Modifying Http Headers

I have been working in ASP.NET MVC for a while now, but one thing that has confused me about it is the difficulty involved in modifying HTTP Headers. It is simple enough to add headers ...
0
votes
1answer
315 views

Sending all webpage requests from uiwebview through a proxy server

I have an app and a server that I am working with. The server acts as a proxy server. In my app, I have a uiwebview which sends a request to the proxy server. The proxy server then generates a ...
8
votes
2answers
4k views

difference between Pragma and Cache-control headers?

I read about Pragma header on wikipedia which says : The Pragma: no-cache header field is an HTTP/1.0 header intended for use in requests. It is a means for the browser to tell the server and any ...
4
votes
4answers
1k views

How to get only the response code from a HTTP Request in Ruby

I have a list of urls, I need to check which of the following urls are valid. The code I used is require 'net/http' url = 'http://mysite.com' res = Net::HTTP.get_response(URI.parse(url.to_s)) puts ...
3
votes
1answer
549 views

Set response headers not using filter - RESTeasy

I am trying to set a header value in a response from a RESTful endpoint using RESTeasy. I know that I can read header parameters using @HeaderParam but I want to change the value of that header ...
2
votes
1answer
788 views

http request with multiple ranges returning HTTP/1.1 200 OK

I'm sending an http request to a server that requests an image but using range header with several ranges, the request text is: GET /images/nav_logo102.png HTTP/1.1 Host: www.google.com.eg Accept: ...
0
votes
1answer
1k views

Avoid HTTP 302 response code when setting the Location header in PHP after POST

I need to put a 201 Created Response code and a Location header for a POST request, but for some reason I am still getting a 302 response. This is what I have: header('HTTP/1.1 201'); ...
2
votes
3answers
637 views

Display HTTP Response on Webpage using PHP

I am looking to put together a website that displays the full HTTP Request Headers and HTTP Response Headers for the loading of the page itself. For instance. If someone browses to ...
2
votes
2answers
719 views

How to get all the HTTP response headers of the current page in php

headers_list() and apache_reponse_headers() return a greatly reduced list of the actual response headers, even after headers_sent() and get_headers() would make another HTTP request. So, how can you ...
0
votes
2answers
429 views

How do you set up the correct HTTP Response object for a Range request coming from BITS (Background Intelligent Transfer Service)?

I have a requirement to implement a web-service that can issue files to the bits (Background Intelligent Transfer Service). The language is ASP.NET (C#). The problem I am having is with the "range" ...
1
vote
1answer
371 views

HTTP Responses - Android

I am trying to make my application post something to my webserver (located at IP 10.0.2.2) and receive the response. I'm using a HttpHelper object to do all the server-interaction methods. At the ...
0
votes
1answer
169 views

PHP(Zend) & Smarty - problems generating .doc file and http headers

i'm using the Zend Framework and Smarty Template generator on a project, i'm new to this work and also to ZF and Smarty. Anyway, on an action there's a clickable link for a .doc report generation. ...
2
votes
1answer
684 views

USing PHP header() function to send 404 error in IE [duplicate]

Possible Duplicate: HTTP 404 - File not found Internet Explorer V6 I was testing if it's possible to send a 404 error with php header function: header('HTTP/1.0 404 Not Found'); echo ...
1
vote
4answers
5k views

Java Servlet, How to add a response header before forwarding to another resource

I hava a servlet which handles some resources files, and I need to add a response header before I forward the request to the real jsp file. response.setHeader("a", "b"); ...
3
votes
1answer
4k views

Server cannot append header after HTTP headers have been sent

I get this exception intermittently in my asp.net c# web application: Server cannot append header after HTTP headers have been sent. And it caused by the application appending content to the pages ...
4
votes
3answers
3k views

PHP get_headers() alternative

I need a PHP script that reads the HTTP response code for each URL request. something like $headers = get_headers($theURL); return substr($headers[0], 9, 3); The problem is the get_headers() ...
0
votes
1answer
138 views

What is the appropriate HTTP status code for a password protected page?

What is the appropriate HTTP status code for a password protected page? If /some-page.html is protected, the login form is presented on that URL; it doesn't redirect to a dedicated login page. I was ...
8
votes
4answers
3k views

What's the proper way to set the Location header for an HTTP 201 response in a Java Servlet application

Consider the following code sending an HTTP 201 "Created" response to the client: String url = "/app/things?id=42"; // example response.setStatus(HttpServletResponse.SC_CREATED); ...
1
vote
1answer
2k views

Clean http response header

What are the required http response header fields to sent from server to the client? I working to optimize the http response header to minimize the http response overhead. I know "overhead" is ...
2
votes
4answers
798 views

HTTP Response Behaviour

I have two very similar pieces of ASP.NET code that send a file in an HTTP Reponse to the client. They should cause the browser to prompt to save the file. The first one works, the second one doesn't. ...
1
vote
3answers
548 views

PHP - strange issue - corrupted headers/content due to seemingly unrelated code line

I have spent 3 days & 4 SO questions trying to fix something which didn't have a problem in the first place. However, the actual problem now has me stumped. Please see the following curl code. It ...
1
vote
3answers
962 views

determine content-length of html string

I am exporting a HTML table to excel by sending the data as a HTML Table string and setting the content headers: Dim html as String = ...
5
votes
2answers
949 views

What should my expires, cache-control, and pragma HTTP request header fields be set to?

I have a website in which I update the content approximately once monthly. When I check the HTTP request header fields, I get the following output: Expires: Thu, 19 Nov 1981 08:52:00 GMT ...
0
votes
3answers
967 views

HTTP Content-Length incorrect size served?

I'm serving some files locally via HTTP using QTcpSocket. My problem is that only wget downloads the file properly, firefox adds four extra bytes to the end. This is the header I send: HTTP/1.0 200 ...
1
vote
1answer
607 views

Disassemble HTTP Response (C)

In continuation of this question I ask the following question. I've managed to read and understand what D.Shawley has recommended and I already finished a lot of work. But a problem occured to me ...

1 2