0
votes
0answers
28 views

Symfony2 | Hide/remove Header From reponse/forward

I'm trying to put 2 Controller result in one controller, so i forward in the first one using '$response = $this->forward('Bundle:Controller:functionXXX');'. in thecontroller ' functionXXXAction' i ...
0
votes
0answers
14 views

Cross domain http status header

I want to get the status response header of the any url I enter.could not find a way to do that due to single origin policy(and cross domain restrictions).. but sites like ...
1
vote
1answer
119 views

Jmeter reponse header value processing

I have REST webservice call via Jmeter. After placing the request, I am getting the response back with response headers. To view the response headers value I am using View Results Tree listener. I ...
0
votes
0answers
154 views

php soap response header

I am working on a webservise using PHP SOAP, I need the response from the server to look like this: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="ns1" ...
2
votes
1answer
509 views

how to change response header in Chrome

I'm dealing with some mp3 link on the internet. When using Chrome developer tool, I see some have response header with Content-Type:application/octet-stream (links like these force Chrome to ...
0
votes
1answer
300 views

setHeader filename not working on IE8

I'm saving a pdf file with the following part of the code: response.setContentType("application/pdf"); response.setHeader("Content-disposition", "inline; ...
1
vote
0answers
35 views

How to use jquery to check response header when the page render

Is it possible to check the response header inside $(document).ready function? In one of our java apps, a filter is placed in front of some html pages, the filter is used to determine whether certian ...
0
votes
1answer
137 views

Unable to capture Response Headers Location through browsermob proxy

I'm using selenium php webdriver and php wrapper for browsermob proxy to fetch the access token from facebook. Once the user authetication was sucessfull, the facebook will redirect to ...
1
vote
2answers
187 views

Adding extra new parameter to header as response in symfony2

I want to send response to the client which should include some details in header which is common, let say userID and others datails in the body. How to add such new parameters to header of response, ...
0
votes
0answers
108 views

Response header date, always there?

I writing a client application that can communicate with a server and i need to know the current server time (to see if the client time is different). I´m wondering. Is the response header "Date" ...
9
votes
1answer
3k views

What is the point of jQuery ajax accepts attrib? Does it actually do anything?

Spent a solid hour trying to sort out why on earth this (coffeescript) $.ajax accepts: "application/json; charset=utf-8" did absolutely nothing to change the accepts header, while this $.ajax ...
0
votes
0answers
55 views

Why is a page retrieved from cache?

When pages on our website are updated and we load them in the browser they are never reloaded (until I explicitly refresh). The first time I load Chrome Developer Tools just says "(from cache)" and ...
0
votes
1answer
851 views

JBoss AS 7: How to modify the server banner in http response header

I have a web app running in the following two setups: 1) JBoss running on Windows7 and 2) JBoss running with an apache httpd reverse proxy on CentOS. I downloaded and added jbossWebService.jar to the ...
0
votes
1answer
266 views

How to remove post parameters on temporary redirect (HTTP 307)?

I have a problem with redirecting requests. I have an incoming GET or POST for http://foo.com/bar?A=b. I redirect it with HTTP 307 to http://hockily.com/dockily?C=d&E=f. But at hockily.com , I ...
1
vote
1answer
141 views

OData Get Header Value From Response

I am using OData together with JQuery. My problem here is that I need to retrieve the Header as I need the Header value. Do you guys know the syntax? My codes are as follow: OData.request( ...
0
votes
2answers
3k views

intercept response header with jquery ajax request

Exactly what the title suggests: I perform an ajax request to my server, it responds with a 403 but there are headers I want to retrieve and save on localStorage. This is for a phonegap app (Android ...
-1
votes
4answers
366 views

Showing error pages when sending header with header() function

I want to send some response codes in response (what else?) to various conditions. The header is being sent - I tripped over the various errors you can make using header(), such as having output ...
1
vote
1answer
760 views

How to change Server Name in HTTP Response Header?

Is it possible to change your server name in HTTP Response Headers from nginx to something else. I want to do it to confuse prying eyes and enhanced security.
1
vote
0answers
267 views

Passing values from one JSP application to another JSP application through header

I want to pass the values through header from one JSP application to another JSP application which is running at different domain. We have the URL of the application of different domain. That ...
0
votes
1answer
295 views

HTTP response header code ignored when using cURL

I have the below code but for some reason I cannot get the correct HTTP response code as it always comes back as 0. I have tried testing a page that only has "header("HTTP/1.1 404 Not Found");" and ...
1
vote
1answer
215 views

How should I modify this compression code to prevent double-encoding?

I'm using the fairly standard compression code that I've seen floating around numerous places online: HttpRequestBase request = context.HttpContext.Request; string acceptEncoding = ...
0
votes
2answers
208 views

How to consume an asp.net image resizer with javascript

I use javascript/jquery to fill with html a web page. In IE works fine but in Firefox or Chrome the image is not shown wherever the image is shown when i click only the link: ...
2
votes
2answers
507 views

sending cache-control / expires / pragma with 404 response - valid / understood by modern browsers?

we are working on reducing some 'pointless' traffic. if we send valid cache control headers (a-la "do cache") with a 404 response, will modern browsers cache that the requested resource does not ...
1
vote
1answer
624 views

text/html header not returned in response from Websphere when using ResponseEntity, works in Tomcat?

Hi i have some code that works fine in Tomcat, but under Websphere the response being returned does not seem to take on the Content-Type header that I am specifically setting to 'text/html' public ...
1
vote
2answers
461 views

Possible to retrieve full headers or size of headers?

Is it possible for a java servlet to extract the full text of a request header of response header rather than doing the getHeader() method individually? Alternatively, would it be possible to get the ...
4
votes
1answer
422 views

How to get rid of charset on response header in Rails

I am trying to make a file download controller, but unfortunately rails seems to be hell bent on not letting me remove charset from header Content-Type: application/x-octet-stream; charset=utf-8 I ...
0
votes
1answer
177 views

Removing response headers when accessing images from S3

Can we remove response headers when we are accessing images stored on Amazon S3? By default it is giving the following headers: x-amz-id-2: x-amz-request-id: Server: By default it is giving amazon ...
0
votes
1answer
2k views

PHP: How to check for response code?

I'm a relative PHP newbie implementing a PayPal IPN listener and all seems to be working fine, except I dont really know how to check for a response code. I've tried something ugly with cURL but it ...
0
votes
1answer
167 views

Redirecting a HTTP rqueust and response code/headers

I have a loosely coupled web app (one part uses PHP, the other uses WGSI). The WSGI/python framework shares the authentication with the PHP app, meaning that generally, the user should Log in via ...
2
votes
1answer
162 views

Any significance to Google's “expires” date being Fri, 01 Jan 1990 00:00:00 GMT?

I was looking at the response headers for my GMail account and noticed that the date Fri, 01 Jan 1990 00:00:00 GMT shows up as the value for "Expires" over and over again. I suppose this is just an ...
1
vote
1answer
375 views

Get the response headers with prototype.js

Is there an easy way to pull out the response headers of a page with prototypejs without using Ajax.Request?
8
votes
5answers
12k views

Python urllib2 Response header question

I'm trying to extract the response header of a URL request. When I use firebug to analyze the response output of a URL request, it returns Content-Type text/html however when I use the python code ...
0
votes
1answer
336 views

Compacting HTTP Response Headers?

I had asked a few questions regarding compressing HTTP Request headers here and here but I some how skipped the HTTP response part... I am looking for a way to reduce/compact the headers in my HTTP ...
31
votes
9answers
15k views

Remove Server Response Header IIS7

Is there any way to remove "Server" response header from IIS7? There are some articles showing that using HttpModules we can achieve the same thing. This will be helpful if we don't have admin right ...
2
votes
4answers
10k views

parse http response header from wget

Im trying to extract a line from wget's result but having trouble with it. This is my wget call: $ wget -SO- -T 1 -t 1 http://myurl.com:15000/myhtml.html --18:24:12-- ...