In the Hypertext Transfer Protocol (HTTP), HTTP header fields contain the operating parameters of an HTTP request or response. With the request or response line (first line of message), they form the message header.
0
votes
1answer
119 views
UrlConnection.getHeaderField(string name) returning null
working on a URlconnection problem
The connection object is created by invoking the openConnection() method on a URL and the general request is manipualted. then i initialized a string in which i am ...
0
votes
0answers
27 views
request header value is transformed from empty string to quoted empty string
I am trying to send to a server a request that should include a specific custom header that has as value empty string. It seems that the value gets automatically modified to a quoted empty string, ...
2
votes
2answers
142 views
Viewing the HTTP Headers from a WCF service
I am following the following example for my first experience with WCF.
http://msdn.microsoft.com/en-us/library/bb386386.aspx
I follow the routine and these are the XML codes that I can find with the ...
0
votes
0answers
173 views
expressj : Cant render headers after they are sent to the client
I am working on the simple login form and after login(successfully), i wish to render a list of products. But the login form itself does not get rendered. Here is what i have in app.js
app.get ( ...
0
votes
1answer
171 views
ajax call from pure javascript not returning response from remote php file(no jQuery)
I am using pure javascript to make an ajax call to a PHP file which is residing in the remote server. But it is not returning the response.
The page which is making the ajax call is in my localhost.
...
0
votes
0answers
119 views
Multiple distinct Content-Disposition headers received from server in Jasperreports
I'm trying to set content-disposition header in response of servlet, but i get this error in browser. What should i do?
Duplicate headers received from server
The response from the server
...
1
vote
3answers
2k views
Adding a custom header to HTTP request using angular.js
I am a novice to angular.js, and I am trying to add some headers to a request:
var config = {headers: {
'Authorization': 'Basic d2VudHdvcnRobWFuOkNoYW5nZV9tZQ==',
'Accept': ...
3
votes
2answers
52 views
Should I deny unused request methods?
In my Zend Framework MVC application I am using only two request methods: GET and POST. I am wondering whether I should put a check in my base controller to throw an exception if the other request ...
0
votes
0answers
56 views
Modifying the `host:` header sent from browsers in iOS?
When a website is requested from web server using a browser, the browser sends it an HTTP host: header.
The host: header header tells the web server which DNS-Name resolved its' ip allowing for ...
0
votes
2answers
64 views
Setting HTTP header in DelegatingFilterProxy
I have a filter , I'm using Springs delegatingFilterProxy to intercept incoming requests for a web service. Depending on whether a flag is set i want to allow the request to continue otherwise i want ...
0
votes
0answers
13 views
Http Notational Conventions and Generic Grammar
I read HTTP RFC and read about Notational Conventions and Generic Grammar but i don't understand what is exactly Notational Conventions and Generic Grammar in HTTP?
Please say some example.
0
votes
0answers
4 views
Is there a standard that prescribes which accept header a browser will send when requesting CSS and JS?
Supposed I have a website which includes a line such as:
<script src="..."></script>
Is there a standard that defines which accept header will be sent by a browser in this case? Is this ...
0
votes
0answers
67 views
Php Auth header doesn't work
After a long research on internet , I have found a method that seems to work , but not on the website I want.
<?php
$username = '';
$password = '';
$url = 'https://web.esme.fr/pscripts/bsp';
...
2
votes
0answers
62 views
Serving Dynamic Images In Python 3.3
I am trying to use python (version 3.3) with PIL to generate dynamic images for a web page. I have verified that the contents of my generated image are fine with Image.show() but I can not get the ...
0
votes
0answers
102 views
How to insert custom http header Date in WCF service Windows Phone?
I'm working on WCF service created with service reference on visual studio 2012 for Windows phone 8 and I need to set custom http header in all messages.
I can set either the standard http headers and ...
0
votes
1answer
89 views
Error from timestamp response
I have to get a timestamp from a tsa server. I am sending a file (converted in byte[]). But when I try to get a response it throws me a NullPointerException.
This is my code:
public static void ...
0
votes
1answer
36 views
XMLHTTPRequest and HTTP “Content-Location” header
I run XMLHTTPRequest Asynchronously (true) to download some big images and based on the Content-Location information, which is the image filename, my script knows which < IMG > tag it should put ...
0
votes
0answers
113 views
FAST CGI SERVER with PHP 5.3.3 Internal Server Error during install
Worked fine with old server configuration. When upgraded site from
SERVER API - Apache 2.0 Handler with PHP 5.2.5, DRUPAL 6.28
TO
SERVER API - CGI/FastCGI with PHP 5.3.3 version, DRUPAL 6.28 and some ...
0
votes
0answers
161 views
ASP MVC3 file download exception: Server cannot set content type after HTTP headers have been sent
I get an exception in the logs which says "Server cannot set content type after HTTP headers have been sent". What am I doing wrong in the following code?
Response.ClearHeaders();
...
0
votes
1answer
59 views
How can I render text without any HTTP HEAD information?
I am using Ruby on Rails 3.2 and I would like to render some response text without any HTTP HEAD information. I tryed to use render :text => "MY_CUSTOM_TEXT" in my controller as states the Official ...
0
votes
2answers
35 views
How to get file type of HTTP response?
Is there a way to get the file type(extension) of http response? It is not doable to parse http request because some times there will not be file name in the url, for example, "GET ...
0
votes
2answers
45 views
Headers already sent on remote server, not in local [duplicate]
I've realised a "remember me function" using $_COOKIE and on my LAMP machine where I develop it works fine.
But then I've uploaded the code to the remote server and it gives me this error
Warning: ...
1
vote
0answers
53 views
Download gzipped file through CloudFlare
I have a PHP file protector script:
.htaccess
RewriteEngine on
RewriteRule ^(.*).(zip|tgz)$ ../wp-file-protector.php?file=$1.$2 [QSA]
wp-file-protector.php
<?php
global $wpdb;
/** Make sure ...
0
votes
2answers
66 views
mPDF headers already sent [duplicate]
I'm using mPDF to create a pdf from html.
Right now I'm getting the error "Warning: Cannot modify header information - headers already sent in". This is because I show some html (just site template) ...
1
vote
1answer
253 views
Delete headers from Angular.js $http request
I want to delete some $http request header fields from one specific request (it means not on the $httpProvider level). These fields are:
Cache-Control
If-Modified-Since
Referer
X-Requested-With
...
1
vote
1answer
49 views
How to get the JavaFx WebEngine to report errors in detail?
In JavaFx I can attach a listener to the load worker for a webEngine like this:
webEngine.getLoadWorker().stateProperty().addListener(
new ChangeListener<Worker.State>() {
public ...
1
vote
0answers
38 views
why ie request twice for the UI's html?
I am working on a client server application,in which we open client on our pc by URL:http:\[ip of server]:[port no]. The client's GUI is divided into parts and right click is disabled on left pane.
...
2
votes
2answers
52 views
How can I extract the list of urls obtained during a HTML page render in python?
I want to be able to get the list of all URLs that a browser will do a GET request for when we try to open a page. For eg: if we try to open cnn.com, there are multiple URLs within the first HTTP ...
0
votes
0answers
60 views
grails: cache-headers - use “cache: false” - not expected effect
Maybe I will describe briefly point by point what is the problem:
I generated a new project (grails 2.2.1),
I installed the plugin cache-headers.
I create simple domain class: User
class User {
...
0
votes
1answer
95 views
Include Additional HTTPS Request Header Information in Form
Is there a way to include additional request headers in form data, other than action and method? I am hoping to send some authentication credentials cross domain without making the user re-enter ...
0
votes
0answers
31 views
Non-Conflicting Separator Token for a one-string List of HTTP Header Values?
I'm usually just the client-side-slob on the other end evaluating the occasional header so I'm not sure what all the possible character conflicts are. Anyway, the plan is to have a .NET appSettings ...
0
votes
2answers
428 views
Twitter Application Only Authentication PHP OAuth error
I'm trying to get my application to authenticate via Twitter's application only authentication. See documentation at the following URL:
Twitter Developer Documentation fro Application-only ...
1
vote
1answer
116 views
JavaScript CORS Post Request has empty parameters on the server side
When I want to sent a POST request to my server it works, but the parameters are empty. In another topic on stackoverflow, I read that it could be a problem with the headers. Also also tried it with ...
-1
votes
1answer
91 views
passing headers into file_get_contents() for a json request [duplicate]
I need to pass these headers into the $context variable, i tried using putting the values into an array and then passing it into stream_context_create() function but i get http warnings from the ...
0
votes
1answer
54 views
Add the Http_X_Forwarded_For header in a request in python
I have a small PHP code in a web server. The PHP code just log the IP of the people that do a request with this line:
$ip = !empty($_SERVER['HTTP_X_FORWARDED_FOR']) ? ...
0
votes
1answer
56 views
check if client can access the page, if not do something
I'm working on "CDN" video delivery script. my problem is not all providers are included, therefor I need to check if the client can access the link, if not send him another one.
i've tried with ...
3
votes
1answer
27 views
HTTP HEAD and GET different result
Should the HEAD and GET methods return the same status code? More specifically, we have run into the situation where a client website is returning a 200 when we do a HEAD, but returns a 303 when we do ...
3
votes
3answers
298 views
UIWebView capturing the response headers
I searched/googled a lot but could not get the answer on how to capture HTTP response headers in UIWebview. Say I redirect to user to registration gateway(which is already active) in UIWebview on App ...
5
votes
1answer
333 views
ios-Soap method calling by http post request but response is empty
I am new to iPhone .
in my app Soap method using to import and export data..while import is working nice but export not working the response from soap web service is empty..
//Parameters
NSString ...
2
votes
2answers
105 views
How can I correct this regular expression to capture all the repeating parameter groups in PHP?
I am trying to parse the HTTP Accept header to extract all the details from it.
I am making the following assumptions:
Each entry must start with and contain at least type/subtype, optionally with a ...
0
votes
1answer
231 views
Custom Http Authorization Header with Spring Security
We are building a Restful service using Grails framework and are providing security for it using Spring Security plugin. I wanted to check with you all on best approach to take when you want to ...
2
votes
2answers
178 views
Basic Authentication with RestTemplate - compilation error
trying to add basic auth to restTemplate
problem I encounter is that i cant initialize : (with both the imports in the code snippet)
HttpClient client = new HttpClient();
This code resolves in a ...
0
votes
0answers
50 views
What is the difference between Connection and Proxy-connection in HTTP header?
What is the difference between Connection and Proxy-connection in HTTP header?
Is the proxy-connection field added by the proxy? Or the client and server? What will the proxy, client or server do ...
1
vote
1answer
62 views
API Rate Limiting by IP
I was looking at how rate limiting is done, and it seems that a lot of APIs (including the StackOverflow v1 API) rate limit by IP or limit API keys to usage on a certain domain. How is this done ...
0
votes
0answers
59 views
How to send a completly new request in javascript
I'm currently writing a userscript. That means, javascript is "injected" into a website the userscript specify by your browser when visiting.
Now I want to only get the last 500 bytes of e.g. this ...
0
votes
0answers
201 views
Android http client protocol exception
I am developing small android application in which i tried to send simple image to my server. My problem is that when i tried to add header content-length it gives me error http client protocol ...
1
vote
0answers
69 views
how to send Image to server with content length and image data as body?
I am developing one android application and in my application i want to send image data to my server. So I am using put request. I dont want to send image data with json object. I just want to send ...
1
vote
0answers
52 views
When is the Authorization header automatically sent by the browser?
I am trying to know when is the Authorization header sent automatically by the browser and when not.
By reading several posts and experimenting, I found out that the browser only sends the ...
0
votes
0answers
78 views
Use a base64 encoded 1X1 pixel to eliminate redirect/prevent caching
I am involved in using cookies to sync user ID's between servers. Currently the user goes to a website which executes a pixel that queries a server on our end for information. Generally this is done ...
0
votes
2answers
70 views
How to force specific HTTP headers of cacheable resources served by Windows Azure Storage?
In the document "Optimize Cache - Make the Web Faster - Google Developers", Google states that
It is important to specify ONE of Expires or Cache-Control
max-age, AND ONE of Last-Modified or ...






