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

0
votes
0answers
3 views

My Macbook can't send out OPTIONS request anymore

I guess this is a rare issue since I have googled the answer for days but seems like no one has run into this before. What happened is my computer could make OPTIONS requests out to remote servers ...
0
votes
0answers
3 views

Expires Response header

I am hosting a file on Akamai, for which I have set "Expires" response header. But for some reason, the expires header has a date older than the value in Date header field. Below is te result of wget ...
-3
votes
0answers
10 views

How to create a folder in SharePoint 2010 document library using REST

I have the exact requirement as in the post How to create a folder in SharePoint 2010 document library using REST or HTTP methods But I could even make a connection to SharePoint using Java, has ...
0
votes
0answers
14 views

Chunked Steam error in android HTTP post

I'm working on creating an android app that will pull down user data from a MySQL database stored on a web server. I've read a few tutorials on HTTP Post that allows me to connect to the database, ...
0
votes
0answers
5 views

posting interactive panorama only works on HTTP connection

I'm making a panorama out of panotour pro with everything embedded, and forcing it to load flash content only. Then I write meta tags for facebook opengraph understanding. Then I post on facebook. ...
0
votes
0answers
17 views

C# Send POST request and recieve 303 statuscode

I'm writing simple application which connects to webpage and recieves specific data from document's body. I'm sending HttpWebRequest in this way: HttpWebRequest request = ...
0
votes
0answers
31 views

How to use mega.co.nz API?

How to use mega.co.nz API? I want to use MEGA API as explained here https://mega.co.nz/#developers but I have no idea how to implement it in C#? They basically use JavaScript as main engine and ...
4
votes
3answers
40 views

What RESTful HTTP request for executing actions on the server?

I have a RESTFul server API which I've built. Some parts of it is not controlling resources and I'm having trouble mapping the relevant URL + HTTP-method to the actions that are executed on the ...
0
votes
0answers
11 views

Getting Partial Response with Asynchronous XMLHTTP

How can I asynchronously read XMLHTTP before it’s finished in VBS? The example below (which has a ”The data necessary to complete this operation is not yet available” error if sleep times are not ...
0
votes
0answers
10 views

Async Netty HttpServer and HttpClient

I have been exploring Netty for the past days, as I am writing a quick and tight HTTP server that should receive lots of requests, and Netty's HTTP server implementation is quite simple and does the ...
0
votes
0answers
7 views

incomplete header with socket c#

Hi I've try to send and http request to a Shoutcast stream site and then read response, I've this two sources one is the main ( I've tested with wpf) and other is a little helper for socket... well ...
-1
votes
0answers
12 views

uploading image in base64 format.application crashes

i am trying to upload an image over the network, but my app keeps crashing in bw my code is package com.example.imgeup; import java.io.ByteArrayOutputStream; import java.io.File; import ...
0
votes
1answer
16 views

Modx, is it possible to login by passing details in a hyperlink from a remote URL?

I know this question defeats the object of having security in the first place, but you know how clients can be sometimes. Basically the client has 2 sites, one built in modx and one in asp, they both ...
2
votes
1answer
17 views

Securing API with access token

I am not using any kind of SSL and I am wondering the following: If I have a list of api keys stored in my DB, and I force users who want to consume the API to do the calls with the following HTTP ...
0
votes
1answer
12 views

read the http links from a file and append it to a list

I am still a beginner.I have a 'link.txt' file with several links in it.. for example: http://google.com http://google.com http://google.com http://google.com http://google.com How do I read them ...
0
votes
0answers
12 views

Sencha Touch 2 Images on server with Basic Authentication

I've a problem on Sencha with images which come from server with Basic Authentication, indeed images don't want to show on Android device (Galaxy S2) in tpl, I've tried to put an URL like this ...
0
votes
0answers
13 views

vb6 http get method returns the same response

I have code: ... MsgBox GetHTMLSource("http://...par1=" & 1 & "&par2=" & 2) ... Function GetHTMLSource(ByVal sURL As String) As String Dim xmlHttp As Object Set xmlHttp = ...
0
votes
0answers
11 views

Firefox properties HTTP requests

I want my Firefox browser to send next http request only after it got response for the previous request. How can I do it? P.S.: Excuse me for my bad English.
-10
votes
0answers
26 views

Please help me streaming voice to a webservice in ios I have tried as much as possible [closed]

Please help me streaming voice to a webservice (HTTP Put) in ios I have tried as much as possible.
0
votes
1answer
8 views

Apache CXF WebClient multiple requests with www-authenticate header

I got simple JAX-RS resource and I'm using Apache CXF WebClient as a client. I'm using HTTP basic authentication. When it fails on server, typical 401 UNAUTHORIZED response is sent along with ...
0
votes
0answers
16 views

gevent http server behind nginx hanging

Using nginx 1.2.3, the latest version of gevent, python 2.7 An instance of a gevent WSGI server is created: from gevent import monkey monkey.patch_all() wsgi.WSGIServer((host, port), ...
0
votes
1answer
19 views

Cookies does not seem to be set properly

I manage to log in and get cookies with respect to the session. But when I try to make a new request the login-information seems to be lost (the HTML-data is the same for both the requests. The second ...
0
votes
1answer
19 views

Return JSON based on “Accept: application/json” from a Symfony2 controller without modifying each controller action

I'm working on an app that I want to offer both JSON and HTML responses. Here's an example action method: /** * Lists all Boards entities. * * @Route("/", name="boards") * @Method("GET") * ...
0
votes
0answers
42 views

What is the optimum size for a minified JavaScript file? [closed]

Assuming an entire JavaScript code-base is minified into a single file, at what file size would it be more efficient to breakout the single minified file into two so that the files can be downloaded ...
0
votes
0answers
14 views

How do I programatically configure my Jetty Request Handler to Handle custom HTTP methods

I Have a Jetty Handler that extends AbstractHandler, from what I can tell with online research I should be able to configure this to tell Jetty to handle verbs other than post/get. I need to configure ...
0
votes
1answer
15 views

Overcoming max persistent connections by using both root domain and www?

I've read about overcoming the max persistent connections of a browser by using various subdomains and also by using various ports. Do browsers treat example.com and www.example.com as different ...
1
vote
0answers
11 views

HTTP 302 redirects between servers failing in IE, working in FF and chrome

I'm getting a blank white screen in IE when building a login system that redirects through a 3rd party server for authentication. (The browser is supposedly requesting a page back on my server when it ...
0
votes
1answer
17 views

Android - Using Connectivity Manager in a Fragment

Okay so i had the problem of network usage in UI Thread and now using AsyncTask. I am using Fragments and have a problem. When putting this line: ConnectivityManager connMgr = ...
0
votes
2answers
41 views

Can I know on PHP (without javascript) if a user has right-clicked oppening a link?

I was coding from some ideas collected over the web a "solution" to redirect all pdf, for example, downloads on a server to a reCAPTCHA form and, after passed, download the requested file. It is cms ...
0
votes
0answers
17 views

Are there defined semantics when expiring and then setting an HTTP cookie in a single response?

Using a third party service, a cookie is being both deleted/expired and set in the same HTTP response: Set-Cookie:flash=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; domain=.example.com ...
0
votes
4answers
44 views

Android network usage on main thread

So, i have been creating and application for a client and got to the network part. I am currently removing the targetSDK tag from the manifest so i dont get a MainThreadException. I have seen people ...
0
votes
0answers
8 views

Restlet client's deserialization on asynch http method vs synch method

I'm using Restlet client to get some nested object from the server. I have one synchronous client and one is asynchronous. They both access the same url and both request for the same data. The ...
0
votes
2answers
19 views

Node.js and the connect module: How do I get the message out of a request object sent to a web server

I'm using Node.js and connect to create a simple web server. I have something similar to the following code and I can't figure out how to access the actual request message body from the request ...
5
votes
2answers
34 views

Issue an HTTP GET from REPL in Racket

I feel like I'm missing something, but after perusing the docs for net/url and poking around in general, I was unable to figure out a way to issue a GET request from the interactive prompt. Basically, ...
-1
votes
0answers
12 views

WCF Rest service POST method fails error 404

I use fiddler to debug a REFTFUL WCF Service, but it returned http 404 error. Why? updated: The response "Raw" HTTP/1.1 404 Not Found Cache-Control: private Content-Length: 1565 Content-Type: ...
1
vote
0answers
11 views

Communicating from https website to http server on localhost, cross-domain

So I have a GWT webapp that needs to communicate with a desktop application. To accomplish this, the desktop program starts up a webserver at a given port (say, http://localhost:9000). I have ...
0
votes
0answers
22 views

How does a web browser (IE8) determine the token to send for the Authorization: Negotiate request header?

I am installing spnego on a java app server that will authenticate users against Active Directory. I've followed all of the directions closely, and the AD Preauth account has the java app server FQDN ...
0
votes
0answers
11 views

The requested URL returned error: 405

i have a trouble with curl... when i do curl my domain in https it gives me an error "curl error #22: The requested URL returned error: 405" i spent almost two days on it to solve/search but ...
-1
votes
1answer
20 views

HttpClient.excute(HttpPost) no response

I constructed an HttpClient, and set timeout parameters. the code is like this: while(bufferedinputstream.read()!=-1){ post.setEntity(multipartEntity); HttpResponse response = ...
0
votes
1answer
34 views

How do I respond to user if I have no internet connection?

I am trying to write the code that would read a JSONArray but there is a possibility that the internet server is down and the device is not able to connect or then there is no internet connection on ...
0
votes
2answers
28 views

Prevent Android wrapper to website

Our website is mobile ready and provides service to end uses. Someone has developed a wrapper application around the website and published on playstore. I checked the web request header from this ...
0
votes
0answers
13 views

How to mock only a specific http resource (URL) in Angular

I'm working in a team split into front-end and back-end developers. Sometimes, the front-end wants to make some REST requests to a http address / REST-resource that isn't yet implemented. In ...
0
votes
1answer
5 views

Localhost:8080/Admin - runs successfully, Localhost:8080/Portal ERROR. Both using Tomcat. Why?

I have two projects in STS: 1. Admin 2. Portal I'm able to build them successfully in STS, but when I try to run them: 1. Localhost:8080/Admin - it runs successfully 2. Localhost:8080/Portal - the ...
0
votes
1answer
15 views

Android fragment http response

I am trying to get data from a php file in the internet using JSON. It works in a normal class but will not work when using a fragment. public static class MagFragment extends Fragment { ...
2
votes
1answer
39 views

In Node.js/Express, how do I disable browser cache for a redirect?

app.get('/my_profile_picture', function(req,res){ getPicture(req.user.id, function(url){ res.redirect(url); }); }); This is my code. However, when the user changes his profile ...
0
votes
0answers
17 views

HTTP BASIC AUTH + IIS + NTLM + PHP Logout Script

I have the following configuration: IIS + NTLM + HTTP Basic AUTH + PHP. Everything is fine except that there is no way to logout a user.... The way http://test@localhost.com doesn't work I think ...
-2
votes
0answers
17 views

http redirect to www to prevent google marking it as duplicate

I have a website http://totalfree.in Recently i learned that google treats the http:// and www as duplicate. I am worried about it. I need to redirect to either. Please provide me the solutions what ...
0
votes
1answer
29 views

Http response header and body not correct as expected

I am working on proxy with PHP. In my php code I am sending proper required headers and expected to get response body and headers. However I am getting response body correctly as I want but not ...
0
votes
1answer
21 views

Post request to server. Different responses with different defaultClients

When i try to send post request using Java (JVM on Mac) with correct credentials I got correct response code 302 FOUND. But when using the same code on the android, with SAME correct params, i got ...
0
votes
1answer
19 views

doGet() is not implemented by this URL

In my servlet I used doPost() method and while running the servlet it is giving http method doGet is not supported by this url.And I set POST GET in my web.xml under .Still getting the method ...

1 2 3 4 5 344