tagged [http]

Blank page in IE6

Blank page in IE6 A site I am working on that is built using PHP is sometimes showing a completely blank page. There are no error messages on the client or on the server. The same page may display som...

Response.Redirect HTTP status code

Response.Redirect HTTP status code Why is it that ASP/ASP.NET Response.Redirect uses a HTTP-302 status code ("Moved Temporarily") even though in most cases a HTTP-301 status code ("Moved Permanently")...

7 Dec at 21:45

Make a link use POST instead of GET

Make a link use POST instead of GET I'm not sure if this is even possible. But I was wondering if anyone knows how to make a hyperlink pass some variables and use POST (like a form) as opposed to GET.

14 Jul at 02:18

Simple URL GET/POST function in Python

Simple URL GET/POST function in Python I can't seem to Google it, but I want a function that does this: Accept 3 arguments (or more, whatever): - - - Return me the results, and the response code. Is t...

9 Apr at 20:21

Send HTTP GET request with header

Send HTTP GET request with header From my Android app I want to request a URL with GET parameters and read the response. In the request I must add a `x-zip` header. The URL is something like Can some ...

13 Feb at 15:51

How do you change the server header returned by nginx?

How do you change the server header returned by nginx? There's an option to hide the version so it will display only nginx, but is there a way to hide that too so it will not show anything or change t...

16 Mar at 05:3

Is an entity body allowed for an HTTP DELETE request?

Is an entity body allowed for an HTTP DELETE request? When issuing an HTTP DELETE request, the request URI should completely identify the resource to delete. However, is it allowable to add extra meta...

18 Nov at 18:14

Get original URL referer with PHP?

Get original URL referer with PHP? I am using `$_SERVER['HTTP_REFERER'];` to get the referer Url. It works as expected until the user clicks another page and the referer changes to the last page. How ...

8 Dec at 04:27

Values of disabled inputs will not be submitted

Values of disabled inputs will not be submitted This is what I found by Firebug in Firefox. Is it the same in other browsers? If so, what's the reason for this?

Getting a POST variable

Getting a POST variable I am using C# with ASP.NET. How do I check if a parameter has been received as a POST variable? I need to do different actions if the parameter has been sent via POST or via GE...

24 Feb at 05:11

Set HTTP protocol version in HttpClient

Set HTTP protocol version in HttpClient I need to make a request to a webservice that uses HTTP version 1.0. Im using `HttpClient` , But I cant see any option to set HTTP version. Where can i set the ...

22 Jan at 20:28

Response to preflight request doesn't pass access control check

Response to preflight request doesn't pass access control check I'm getting this error using ngResource to call a [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API on [Amazon W...

Does Google provide a http page to return a XML route?

Does Google provide a http page to return a XML route? I have been using a lot of Google Maps's API for getting geocoding and reverse geocoding services. Do you know if there's a service (through http...

31 Jan at 12:12

ServiceStack - upload files as byte stream?

ServiceStack - upload files as byte stream? I am trying to create my own S3 compatible server using self-hosted ServiceStack (version 4.0.31 on mono) and I need to support s3curl.pl format uploads. Th...

23 May at 12:5

HTTP GET request in JavaScript?

HTTP GET request in JavaScript? I need to do an [HTTP GET](http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods) request in JavaScript. What's the best way to do that? I need to do...

28 Sep at 16:19

How are parameters sent in an HTTP POST request?

How are parameters sent in an HTTP POST request? In an HTTP request, parameters are sent as a : In an HTTP request, the parameters are not sent along with the URI. In the request header? In the reques...

17 Dec at 10:21

How to send a POST request from node.js Express?

How to send a POST request from node.js Express? Could someone show me the simplest way to send a post request from node.js Express, including how to pass and retrieve some data? I am expecting someth...

1 Sep at 09:20

"CAUTION: provisional headers are shown" in Chrome debugger

"CAUTION: provisional headers are shown" in Chrome debugger I noticed a strange caution message when looking at downloaded resources using Google chrome inspector (): > Caution provisional headers are...

HTTP GET in VB.NET

HTTP GET in VB.NET What is the best way to issue a http get in VB.net? I want to get the result of a request like [http://api.hostip.info/?ip=68.180.206.184](http://api.hostip.info/?ip=68.180.206.184)

18 Sep at 13:28

Is there any way to do HTTP PUT in python

Is there any way to do HTTP PUT in python I need to upload some data to a server using HTTP `PUT` in python. From my brief reading of the urllib2 docs, it only does HTTP `POST`. Is there any way to do...

29 Jan at 16:15

HTTP vs HTTPS performance

HTTP vs HTTPS performance Are there any major differences in performance between http and https? I seem to recall reading that HTTPS can be a fifth as fast as HTTP. Is this valid with the current gene...

15 Jul at 18:39

Strange 301 redirect problem

Strange 301 redirect problem I'm trying to redirect all URLs that start with "/?page=" to "/stuff/?page=" I have this in my .htaccess file: But it's not working.. What am I doing wrong?

26 Apr at 08:26

Sending http requests in C# with Unity

Sending http requests in C# with Unity How can I send HTTP GET and POST requests in C# with Unity? What I want is: - - - What I've tried: - - - Most problems were with threading, I'm not experienced e...

9 Sep at 14:55

Azure Function Http Trigger validating body data

Azure Function Http Trigger validating body data Is there a way currently to validate objects in Azure functions using something similar to Data Annotations and Model State in the MVC framework? Or wh...

HttpServletRequest to complete URL

HttpServletRequest to complete URL I have an `HttpServletRequest` object. How do I get the complete and exact URL that caused this call to arrive at my servlet? Or at least as accurately as possible, ...

15 Jan at 07:24