Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
85 views

My HTTP only cookie is being received by the frontend, but not passed in subsequent requests to the backend, therefore ruining my authentication process. I want to add authentication to a page in my ...
Jordan Regan's user avatar
0 votes
1 answer
739 views

Windows 11 I'm attempting what should be a pedestrian API request, but I'm getting an error in Postman (which might be a Postman bug). The API call is possible because it runs on an Android app that ...
Bob's user avatar
  • 347
0 votes
1 answer
150 views

I want to restrict the HTTP request based on the HTTP request protocol lower than 2.0 in ASP.NET Core. Can we add any policy in the startup.cs file that will restrict the HTTP request based on the ...
Saurabh Soni's user avatar
0 votes
1 answer
637 views

Is it possible in HTTP/2 that a data frame is received with END_STREAM flag, and later a trailers frame will be received? In other words, will a frame with END_STREAM also indicate that no other frame ...
Ohad's user avatar
  • 353
2 votes
1 answer
9k views

I'm going to send an array of about 5 millions of records in json format in my spring boot app . is there any way to increase http request timeout in order to prevent from connection timeout?
Pouria Saleh's user avatar
0 votes
1 answer
431 views

It's not a question about sense but about specification. A HTTP cookie must be set like Set-Cookie: <cookieValue>[; <attribute>][; <attribute>] cookieValue is recommended to be set ...
codekandis's user avatar
1 vote
1 answer
59 views

To create an index in the elasticsearch, we need to use the PUT verb, for example, the following command: curl -X PUT "localhost:9200/test_index" -d '{"settings":{"...
Deepak Tatyaji Ahire's user avatar
4 votes
2 answers
3k views

From the OWASP's website https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html: Send a Content-Security-Policy HTTP response header from your web server. Content-...
Nikolay Dimitrov's user avatar
-1 votes
2 answers
573 views

I do have a list of urls such as ["www.bol.com ","www.dopper.com"]format. In order to be inputted on scrappy as start URLs I need to know the correct HTTP protocol. For example: [&...
A.Papa's user avatar
  • 486
0 votes
1 answer
189 views

I am making a UWP app which opens all the http/https protocol links clicked in the Windows. In short it's acts same as a Default Browser. I used the following to associate with http/https protocols ...
Chanakya3721's user avatar
0 votes
1 answer
1k views

So I have successfully run this code from an open source directory in python but I am trying to convert it to JavaScript for my NodeJS app and am having some trouble with the following output when I ...
PaulRydberg's user avatar
2 votes
1 answer
1k views

I'm going to upload files with C++, to a Java spring boot web server. I constructed the protocol looks like below (in plain text): POST /gallery/multimedia/uploadvideo HTTP/1.1 Host: 192.168.0.133:...
Ted Yu's user avatar
  • 1,804
1 vote
1 answer
102 views

We use the git http(s) protocol (https://www.git-scm.com/docs/http-protocol; smart service) to get all branches from a repository on e.g. GitHub or BitBucket like this: GET https://github.com/larshp/...
Nighty42's user avatar
  • 440
1 vote
1 answer
464 views

I've discovered a domain name (web site and API) which adds a header like this to each HTTP response: XTVOpalL: Gtm; path=/; Max-Age=900 The header name looks random. Here are few other examples: ...
Vasyl Boroviak's user avatar
0 votes
2 answers
2k views

In JsnoToApex class I try to GET JSON file from https://openweathermap.org/current. When I try to parse JSON.CreateParses I get these error: Illegal assignment from System.JSONParser to JsonParser I ...
user avatar
0 votes
1 answer
5k views

How can i add entities/parameters into my asp.net mvc application. I want to allow cors to send ajax-requests into a database via asp.net webservice. Does anyone have experience fixing this? <...
AOR's user avatar
  • 21
1 vote
1 answer
2k views

I'm trying to change [http] protocol's bind address,using which im able to send out the results but im not able to access iflux CLI. I tried to change the bind address of [http] from 8086 to other ...
shey's user avatar
  • 354
2 votes
1 answer
275 views

I read the rfc7230 section 3.2. After removing obsolete rules, the spec about header field is: header-field = field-name ":" OWS field-value OWS field-name = token field-value = *field-...
martixingwei's user avatar
1 vote
1 answer
708 views

I have a simple Qt application that loads a page in a QWebEngineView. I would like to redirect all http requests with the word "static" in the url to local files. Using WebUrlRequestInterceptor I ...
madasionka's user avatar
0 votes
1 answer
3k views

This is not much a technical question but more a reflexion about the subject. REST have democtratized a good way of serving resources using HTTP protocols and let developper do the cleanest project ...
Anwar's user avatar
  • 4,306
0 votes
0 answers
672 views

I am wondering how to properly manage the following HTTP response considering the file I am sending to the client contains other linked files representing future HTTP requests. I know that I can ...
Truman Purnell's user avatar
3 votes
1 answer
8k views

I am asking this question primarily to learn. First I tried to make a regular post request and I got this error: C#: Handling WebClient "protocol violation". Then I tried to make a raw ...
Tono Nam's user avatar
  • 36.5k
0 votes
1 answer
711 views

If I enable my Tor Control Port 9051 to allow all localhost connections to send signals and modify tor, what security risk do I run? It is suggested I require password authentication for control ...
N. Howey's user avatar
  • 119
1 vote
0 answers
47 views

Is there an equivalent of WADL or WSDL for COAP? APIs for Rest services like Restlet have functions like addQueryParameter for Request which can be used to make the request JSON after knowing the ...
user3740387's user avatar
-1 votes
1 answer
163 views

I need your help and advice. This is my first project in jersey. I don't know much about this topic. I'm still learning. I created my school project. But I have some problems on the web service side. ...
DylanSt's user avatar
  • 29
2 votes
1 answer
63 views

Is there anyway to prevent HttpWebRequest.GetRequestStream from throwing an exception when the method is GET? I know that HEAD and GET should not contain a body in valid HTTP, but some servers accept ...
Travis Parks's user avatar
  • 8,725
1 vote
1 answer
3k views

I have simple question which method to call on POST and which method to call on GET. This is my simple Class: public class CustomStringRequest extends Request<CustomNetworkResponse> { private ...
5er's user avatar
  • 2,715
3 votes
2 answers
6k views

I know that there are discussions of what are the best practices for handling routes in Symfony2 (routing.yml vs annotations). Just let me mention, that I want to keep the way it is, using annotations....
nTOXIC's user avatar
  • 143
1 vote
0 answers
690 views

I'm trying to test supported methods in HTTP, essentially I'm creating httpwebrequest with verb to see if It's supported, how can I achieve this, how can I achieve that? Below is my code attempt. My ...
Rami Sakr's user avatar
  • 616
0 votes
1 answer
160 views

I'm trying to write a server in python 2.7 which receives and verifies that the client uses HTTP protocol (either 1.1 or 1.0 but a support has to be given for both). How can I verify that the ...
Danis Fischer's user avatar
1 vote
2 answers
718 views

I'm looking at HTTP traffic, and seeing a POST request that is "application/x-www-form-urlencoded" with strange characters in it: t=%d8%94%b2%bc+%cb%ae%c9%ab Various URL decodes that I tried running ...
moomima's user avatar
  • 1,390
1 vote
0 answers
140 views

When I get in my server a HTTP request I get somthing like this: GET /my/page/home.php?arg1=1&arg2=2 HTTP/1.1 Host: mydomainname.com Connection: keep-alive Cache-Control: max-age=0 Accept: text/...
Hans-Eliseo Fernández Kaufmann's user avatar
1 vote
2 answers
713 views

When i'm trying to invoke the YQL via cURL i'm getting the following error. HTTP Version Not Supported Description: The web server "engine1.yql.vip.bf1.yahoo.com" is using an unsupported version of ...
Anil's user avatar
  • 89
5 votes
1 answer
14k views

I want to download file in multi thread mode and I have following code here: #!/usr/bin/env python import httplib def main(): url_opt = '/film/0d46e21795209bc18e9530133226cfc3/7f_Naruto....
Khamidulla's user avatar
  • 2,973
1 vote
0 answers
979 views

I want to set the http SERVER_PROTOCOL as HTTP/1.1 in my CentOS system. The system is currently configured with Apache/2.2.15 and PHP/5.4.10. But the PHP info file in my server shows as: ...
user3218924's user avatar
0 votes
1 answer
111 views

Should a ajax Request obey the rule: one request , one response; What is the essential differences between ajax request and simple request for HTTP Protocol?
Louis's user avatar
  • 9
2 votes
1 answer
841 views

I am trying to send user email address and password from my android app to the db to login via POST. On the server side, I get my data like this : $email = $_POST['email']; $password = clean($...
cxzp's user avatar
  • 672
-4 votes
2 answers
629 views

Let us see I have a GSM Modem connected to a computer that having a valid Static IP Address. Now as a PHP Developer i want to connect to that computer and have to listen the COM1 port. This is what ...
Radhakrishna Rayidi's user avatar
1 vote
1 answer
686 views

I have implemented a channel handler for handling http pipelining. My code is at github: https://github.com/huntc/netty-http-pipelining My question is around the approach that I have taken and ...
Christopher Hunt's user avatar
0 votes
2 answers
547 views

We have a shortcut service in my company which basically provides redirection of short aliases to full URLs. The server runs a simple http redirection (302) service which uses the Host request header ...
JSS's user avatar
  • 2,219
2 votes
2 answers
3k views

In what way WebDAV protocol is better than HTTP protocol in terms of upload. Is there comparison between Socket Upload protocol and WebDav Upload protocol?
Abdallah Ghrb's user avatar
7 votes
2 answers
14k views

I have been searching the internet for about two days now, trying to understand how web sockets work, I am relatively new at Javascript and PHP, seeing as I started about two or three months ago. I ...
William Oliver's user avatar
0 votes
2 answers
1k views

I have a web service. I use it to accept a base 64 string representation of a small (thumbnail size) image. This web service works awesome when using it with Fiddler and manually posting the request....
jdb1a1's user avatar
  • 1,045
4 votes
3 answers
10k views

I would like to implement and HTTP proxy server to get a deeper understanding of some of the finer points of the protocol and learn some socket programming along the way but I don't want to implement ...
David K.'s user avatar
  • 6,411
1 vote
1 answer
3k views

how to reuse TCP Socket connection(possible setReuseAddress(true), but not work for me) for download multiple files from Server(Apache, HTTPD) in on connection without disconnect(and connect again). ...
Andranik's user avatar
1 vote
1 answer
836 views

I want to download multiple images from server. I open socket and download first image and when I want download second image in this socket, download not proceed, socket are closed. My code below... ...
Andranik's user avatar
1 vote
2 answers
3k views

It seems we cannot show images on Google Chrome using file:// protocol. I think would be nice to have a way to load the file on a remote network such as file://my-network-computer/my-folder/my-file....
Junior Mayhe's user avatar
  • 16.5k
5 votes
3 answers
2k views

I am designing a RESTful API and am using the usual HTTP status codes like 200, 404, 500, etc. Given the situation where occasionally the API will require additional data. When this event arises it ...
Lea Hayes's user avatar
  • 64.5k
75 votes
3 answers
58k views

I wrote a servlet in Java and I would like to know if the request to that servlet was executed using HTTP or HTTPS. I thought I can use request.getProtocol() but it returns HTTP/1.1 on both methods. ...
ufk's user avatar
  • 32.4k
1 vote
1 answer
639 views

Let's say I am going to deploy a server application that's likely to be placed behind a NAT/firewall and I don't want to ask users to tweak their NAT port mapping. In other words, connections to the ...
mojuba's user avatar
  • 12.3k