Questions tagged as 'http'

1
answer

HTTP method delete has body?

At MDN documentation :    Request has body No       Successful response has body No       Insurance No       Idempotent Yes       Cacheable No       Accepted in HTML forms No I've also seen answers on the site saying that, like GET,...
asked by 24.05.2018 / 01:50
1
answer

How to pass headers on request with Vue.js 2

I need to pass the header Authorization which is located in localStorage with the key of iflix-user-token , here is my code: getFilmes: function () { this.$http.get(Api.url + '/filme').then( response => {...
asked by 22.10.2017 / 15:17
1
answer

Get QueryString with NodeJS

I need to get the QueryString being passed to the server created on NodeJS . I've tried it in many ways but I can not get the and ph parameters. I am a beginner in NodeJS and the code I have is: var express = require('express') ,...
asked by 26.11.2016 / 09:20
1
answer

XAMPP 5.6.16, apache error with globlas on

I installed Xampp 5.6.14, I changed the clause to on ( register_globals=on ) in php.ini and now apache does not start from the application error. I have already made changes from http to 8000 ports in httpd.conf and to 4430 in http-ss...
asked by 24.11.2015 / 18:44
1
answer

Python - HTTP Digest Authentication with urllib2

I needed to authenticate on a test server to consume a service in a webservice, I was able to make the authentication and generate the xml with the following code based on a code SOen operacao = 'consulta' Agencia = "X" Agente = "X" Origem =...
asked by 16.06.2014 / 19:39
0
answers

How to do multiple Thread in a Java Loop

Problem description I'm doing a Pokedex, in which one of its functions is to filter all pokemons of a certain type. I was able to implement this functionality, but the execution time is not good ... It takes about 25 seconds to go through...
asked by 03.11.2018 / 20:11
1
answer

Send headers in angular http request

I need to send three values in my header in http request, but when I check in the browser I realize that my headers have not been sent. I tried something like: trocaToken(token):Observable<any>{ const _headers = new HttpHeaders(...
asked by 23.07.2018 / 16:28
0
answers

HTTP Response issues

I'm studying the use of sockets and multithreading to build an HTTP server in Java, but I'm experiencing some complications. When I run the server code, it opens correctly in Internet Explorer, but in Google Chrome it does not even display the S...
asked by 03.10.2017 / 23:37
0
answers

HTTP call error ERR_RESPONSE_HEADERS_TOO_BIG

I'm submitting a form with a lot of information and I get the following message: ERR_RESPONSE_HEADERS_TOO_BIG Short code snippet: $("#editForm").submit(); I understand that the error is because I am sending a lot of data, but is there...
asked by 10.05.2017 / 15:47
0
answers

Streaming of files by HTTP on Node

Hello, I'm developing a system in which one of the fundamental parts is to transmit a file via JS Node. Suppose I have a A connection , this connection is uploading a file via HTTP. And there is also a B connection , this connection wants to d...
asked by 21.01.2017 / 20:11