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 817 public repositories matching this topic...
-
Updated
Jul 2, 2021 - Java
-
Updated
Aug 18, 2021 - Java
-
Updated
Sep 17, 2021 - Java
-
Updated
Apr 27, 2020 - Java
-
Updated
Feb 24, 2017 - Java
More details here
violetagg/reactor-netty-workshop#2
-
Updated
Apr 30, 2021 - Java
-
Updated
Jun 7, 2021 - Java
-
Updated
Jan 14, 2018 - Java
-
Updated
Apr 27, 2020 - Java
jUnit5 uses thread interrupt to stop hanging tests after the timeout expires. Some of our tests ignore InterruptedException by using:
- AwaitUtils
- netty’s syncUninterruptibly()
- awaitRequestNUninterruptibly
- awaitCancelledUninterruptibly
As the result, these tests may hang forever and jUnit5 won’t be able to stop them.
We should not ignore InterruptedException or run something uninte
-
Updated
Sep 15, 2021 - Java
-
Updated
Jun 3, 2021 - 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
Sep 1, 2021 - Java
-
Updated
Mar 11, 2021 - Java
Currently,
UnframedGrpcServicereturns an error message as plain text.https://github.com/line/armeria/blob/54b70906bcd813f0b9b2c6715ad4086160ac49b2/grpc/src/main/java/com/linecorp/armeria/server/grpc/UnframedGrpcService.java#L255-L272
It would be nice to return a JSON object if the content type is JSON compatible.
{ "code": "FAILED_PRECONDITION", "message": "Input validatio