HTTP
HTTP (Hypertext Transfer Protocol) is a request and response protocol used to send a request to a server and receive a response back in the form of a file. HTTP is the basis of data communication for the web. HTTPS is an evolution in HTTP, where the “S” stands for secure socket layer allowing communication in HTTP to be more secure.
Here are 885 public repositories matching this topic...
-
Updated
Mar 18, 2022 - Java
Some users may want to add multiple query param values for a single key
e.g. localhost:8080/v1?id=1&id=2&id=3
However, WebClient.prepare().queryParam() performs a QueryParamsBuilder#setObject by default, making it
difficult to execute such a query programmatically
WebClient.prepare()
.get("/")
.queryParam("id", 1)
.queryParam("id", 2)
.q
-
Updated
Apr 11, 2022 - Java
-
Updated
Aug 18, 2021 - Java
-
Updated
Apr 27, 2020 - Java
More details here
violetagg/reactor-netty-workshop#2
-
Updated
Feb 24, 2017 - Java
-
Updated
Mar 9, 2022 - Java
-
Updated
Jun 7, 2021 - Java
As i only have windows environment, i cannot really test the created executables. It would be nice to have the build setup to build all three versions during the build (also in windows environement).
maybe using https://github.com/federkasten/appbundle-maven-plugin
-
Updated
Jan 14, 2018 - Java
-
Updated
Apr 27, 2020 - Java
There are many links to external documentation and specifications contained in the ServiceTalk source code. Many of these links are currently http links where they could be https links. For example, all links to http://reactivex.io/documentation could be upgraded to https.
Converting all existing http links to https within the ServiceTalk source will require checking to ensure that
-
Updated
Mar 18, 2022 - Java
As a SDET
I want a documentation or Wiki page where the expected vs actual field matching is explained
So that I can use these in my test automation to test the server response payloads and headers
e.g. id=123 , id="123", isValid=true, isValid="true" etc
AC1:
Cover the following currently supported mechanisms with examples
- $EQ
- (int)
- (float) or (decimal)
- (boolean)
-
Updated
Jan 7, 2022 - Java
-
Updated
Apr 8, 2022 - Java

Issue
The response header does not reflect the correct version for HTTP2 requests. Even though, wiremock replies in h2 but the version in the response header shows "HTTP/1.1 200". This is caused by the hardcoded value in the toString() method of Response.java class