Hypertext Transfer Protocol is an application level network protocol that is used for the transfer of content on the World Wide Web.

learn more… | top users | synonyms

4
votes
0answers
145 views

Is using HTML5 Server-sent-events (SSE) ReSTful?

I am not able to understand if HTML5s Server-sent-events really fit in a ReST architecture. I understand that NOT all aspects of HTML5/HTTP need to fit in a ReST architecture. But I would like to know ...
4
votes
0answers
72 views

Issue with the cache manifest “prefer-online” setting

When setting the prefer-online setting I expect the browser to request the page at every refresh of the browser, but it is not the case. Here is my manifest : CACHE MANIFEST SETTINGS: prefer-online ...
4
votes
0answers
240 views

Routing error with IIS 7 versus IIS Express generating HTTP 404 errors

I am using MVC 3 with Visual Studio 2010 and C# 4.0. My application works correctly under IIS Express from Visual studion and when deployed to a remote production IIS 7.5 server. When I switch to ...
4
votes
0answers
92 views

JMeter, post ALL form data

I am trying to performance test a website's Edit functionality using JMeter. However the step that I am trying to test posts back over 200 items in the form. I obviously want all the items to be the ...
3
votes
0answers
36 views

Why web browser don't care about port number when sending cookie?

I have manually created two cookies using firebug: Cookie1=value1; expires=Sat, 29 Mar 2014 06:21:54 GMT; path=/Ex05Cookie; domain=localhost; HttpOnly Cookie2=value2; expires=Sat, 29 Mar 2014 ...
3
votes
0answers
83 views

Android HTTP Post to a URL without parameters

um quite new to android and tried to do a post to a URL by android . My URL looks like this. ...
3
votes
0answers
218 views

gevent.http.HTTPServer API suggests streaming, but instead buffers entire requests and responses

The APIs offered by gevent.http.HTTPServer would seem to support streaming in both directions. The request object does not offer the request body as a simple string, but instead provides an ...
3
votes
0answers
122 views

Slower HTTP 1.0 Communication on Windows Embedded Compact 7 (Formerly CE)

on Windows Embedded Compact 7 (Formerly CE) I have a much slower performance responsing to HTTP 1.0 requests than on older Windows CE versions (4.0 and 5.0). On Windows CE 5.0 I have about 10 ms to ...
3
votes
0answers
31 views

Force HTTP header

The HttpConnection.setRequestProperty method allows the setting of HTTP headers. Some devices like the Nokia 6234 insist on setting their own User-Agent causing both headers to appear in the ...
3
votes
0answers
279 views

Android socket & HTTP response headers

The funny thing is: I may have accidentally found the solution for Is it possible to send HTTP request using plain socket connection and receive response without headers?. I hope I'm overlooking ...
3
votes
0answers
230 views

Using python Requests library to consume from Twitter's user streams - how to detect disconnection?

I'm trying to use Requests to create a robust way of consuming from Twitter's user streams. So far, I've produced the following basic working example: """ Example of connecting to the Twitter user ...
3
votes
0answers
345 views

Android Ignores Content-Disposition: Attachment Inside Iframe

I have a link to a download handler inside an iframe. This download handler has "Content-Disposition: Attachment" in the headers to force the user to download the file. This works in every browser ...
3
votes
0answers
2k views

Server cannot set content type after HTTP headers have been sent — tracking this down

One of our users is getting an error in our web application. We couldnt duplicate this problem, and I suspected it was network related. I had the user try the application using their notebook at ...
3
votes
0answers
1k views

Http range header requests entire file

I am working with the c# webserver from codeplex version 1.1. I have implemented the Accept-Range headers and it does work. However when I use wireshark (Version 1.4.1 (SVN Rev 34476 from /trunk-1.4)) ...
3
votes
0answers
723 views

HttpURLConnection performs always a GET request instead of a POST request in spite of setDoOutput(true) and setRequestMethod(“POST”)

Since update to Ice Cream Sandwich, my POST request doesn't work anymore. Before ICS, this works fine: try { final URL url = new URL("http://example.com/api/user"); final ...
3
votes
0answers
553 views

Compatibility of the “Origin” http header for enforcing restrictions

I am building a RESTful JSON api and I am concerned about json data theft and csrf. A good solution that was created to address both of these problems is the Origin http header. However I am ...
3
votes
0answers
2k views

Make execute() of HttpDefaultClient very slow

I have massive performance problems with the execute method of the execute() method of the HttpDefaultClient. I'm currently using this to post data to a Server, receiving JSON and deserialize the ...
3
votes
0answers
720 views

Setup proxy configuration for ibm websphere server in console

My WebSphere ESB server runs behind corporate proxy server in our network. When I try to access external web-service i get network exceptions (cannot access destination host). Is there any way to set ...
2
votes
0answers
22 views

Exclude Cookies from Requests

Is it possible prevent some cookies to be sent to the server? I have cookies that are set in JavaScript and only required on the client (to share data with other browser windows). I don't want them ...
2
votes
0answers
25 views

Finding the Number of pending requests allowed on a Webpage in chrome?

When a HTTP request is not completed/cannot be completed in chrome, it says status pending. I am trying to dynamically modifying the contents of my webpage with ajax requests. I have a couple of ...
2
votes
0answers
136 views

Why doesn't chrome cache google app engine blobstore

I'm using blobstore to serve audio files embedded in HTML5 audio element. Because I have a blobkey as a part of url I can assume that for any given url its content will never change. That looks like a ...
2
votes
0answers
46 views

Why does IIS return 404 when an unsupported verb is used?

IIS traditionally returns HTTP 404 in case there's some URI path configured to accept POST requests but a GET request is sent to that URI path. Looks like there's HTTP 405 code specifically for such ...
2
votes
0answers
97 views

HTTP 405 — web server compliance

The RFC states: 10.4.6 405 Method Not Allowed The method specified in the Request-Line is not allowed for the resource identified by the Request-URI. The response MUST include an ...
2
votes
0answers
153 views

Handling jQuery $.ajax response data

I'm requesting an OAuth request_token with a jQuery $.ajax. I get the token as an HTTP response: ...
2
votes
0answers
112 views

HTTP Response differs depending on whether request is local or remote

If I make the request locally (POST [http://localhost:8790/blah/]) I get the following response header: Cache-Control private Content-Length 32 Content-Type application/json Date Tue, 19 Mar ...
2
votes
0answers
138 views

Inconsistent browser retry behaviour for timed out POST requests

I am experiencing occasional retries for POST when server times out the request. All modern browsers have retry logic for idempotent requests (GET, HEAD, etc) when there is no response from server or ...
2
votes
0answers
33 views

Is there a validator for HTTP to show if my vendor's API is creating a poorly formed POST?

I apologize if this isn't the right forum for this, but I couldn't figure out where this question fits in all the sites. My vendor has an API for upload a file to a server, creating a POST with ...
2
votes
0answers
44 views

Node.JS: What is the correct way to handle postdata read errors?

If the ServerRequest object emits an error event, that means that the postdata could not be fully received, most likely due to a network failure. This type of network failure is most likely terminal ...
2
votes
0answers
178 views

Make two linear cURL requests over TOR with same IP

Before response my question - be awared that's not related to the following subjects: cURL: two seperate requests, same session select outgoing ip for curl request PHP Multiple Curl Requests I'm ...
2
votes
0answers
62 views

Requests done in the onModuleLoad are not cached at all. Mainly in FireFox

I faced an issue in which requests that are done in the onModuleLoad event are not being cached in most cases (mainly with FireFox). I checked the network console on FireBug and it almost always shows ...
2
votes
0answers
52 views

How to really “no-store” files in cache

I wonder if there is a way to tell browser NOT to put entries of particular files in cache. I know that I can just send headers like no-store, Expires etc., but all those cause the entry to appear in ...
2
votes
0answers
110 views

Http request duration with PHP5/Apache2

Is there a way to get reliable information from HTTP server about the duration of a HTTP request? Scenario of interest: An AJAX request with data payload is dispatched targeting PHP script using ...
2
votes
0answers
345 views

Android DefaultHTTPConnection with Keep-Alive does not reuse TCP connection

I am trying to reuse HTTP connections with Keep Alive. The server supports Keep Alive, I send the Connection: Keep-Alive HTTP headers and still the connection is FIN (initiated by the Android client) ...
2
votes
0answers
172 views

adding POST to the SimpleHTTPServer as proxy

UPDATED I've made simple proxy based on SimpleHTTPServer but i've got problem with POST method when someone is requesting with POST method it show Error so i've made do_POST() function,but when i ...
2
votes
0answers
32 views

Android How to save cookies on sdcard using HttpClient

I need to know a way to store my HttpClient cookieStore on a txt file as a string and how to re-use those and make a new httpConnection. httpclient=new DefaultHttpClient(); cookieStore = new ...
2
votes
0answers
103 views

Using heroku with python results in http:500 error

I have a python app which pulls xml data through http. I want to run this app on Heroku. The app runs fine on Heroku if I just return "hello world" without trying to pull the xml. When I run this app ...
2
votes
0answers
32 views

Parallel request from rails controller action

I have a usecase where when an action of the controller is called, it triggers 3 http request to other urls. I need to parse the response of those requests , combine them and then render the view. How ...
2
votes
0answers
198 views

Submit a form with Java (POST)

I'm trying to submit a form to a certain website from Java (over HTTP), but when reading the response I don't see what I expected. What exactly I do: first of all, I open the website in a browser, ...
2
votes
0answers
129 views

Parse application/x-www-form-urlencoded NSData into NSDictionary

are there some commonly used utils or standard way to parse http-forms into key-value pairs e.g. into NSDictionary? thanks for any help
2
votes
0answers
250 views

Spring cannot connect to local web service when a proxy configured

I have an application which uses Spring to talk to some web services via the JaxWsPortProxyFactoryBean class. All works fine. Another part of my application needs to talk to the internet (for some ...
2
votes
0answers
142 views

java.io.IOException: 42-Error in HTTP operation in J2me

I am developing a mobile application in J2me for Nokia Asha 305, which will connect a webservice (WCF restful service). Connecting from SIM 2 is working fine but while I am trying to connect SIM 1 it ...
2
votes
0answers
22 views

significancy of method, url, queries of OAuth

if a protocol (OAuth influenced) uses only timestamp, and nonce, And the server strongly check those two factors, Is it (can it be said) safe omitting request method, request URL, and query ...
2
votes
0answers
123 views

jsf facelets and http post

I have made a web application in jsf that works by the book. I used facelets for presentation with many backing beans and JPA for DB access, now i have a requirement that concerns HTTP messages. ...
2
votes
0answers
129 views

HttpPost Java with Apache Library

I'm trying to get a confirmation response from a server after sending a json file to it. I can't see what the problem is with the following. I've been consistently getting a 502 error when attempting ...
2
votes
0answers
112 views

connection pooling for wcf httpbinding

For http based wcf service, is there any connection pooling that happens internally? Will the connection be opened and closed for every http request? Through some search, I found something called ...
2
votes
0answers
55 views

Is replying to client before receiving complete request allowed for HTTP 1.0 server?

I couldn't find RFC that may answer this question. Perhaps you guys can point me to right direction. I'm implementing strippeddown http server whose only function is to accept big multi-part encoded ...
2
votes
0answers
113 views

Injecting cookies using PHP not yielding the same cookie

I'm trying to make a PHP script that sets cookies to the browser by reading them from a file first. In the file is the piece of HTTP header "Cookie: x=foo; y=bar; etc". The script does a cleanup of ...
2
votes
0answers
486 views

How to handle authenticatication with HttpWebRequest.AllowAutoRedirect?

According to MSDN, when HttpWebRequest.AllowAutoRedirect property is true, redirects will clear authentication headers. The workaround given is to implement IAuthenticationModule to handle ...
2
votes
0answers
328 views

how does keep alive work httpurlconnection java

What does setting the connection header to keep alive do. I'm noticing, setting it to close makes a faster connection than keep alive by approx. 150 ms on average, when reading the html content on a ...
2
votes
0answers
274 views

Threading in client-server socket program - proxy sever

I am trying to write a program that acts as a proxy server. Proxy server basically listens to a given port (7575) and sends the request to the server. As of now, I did not implement caching the ...

1 2 3 4 5 78