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
Eclipse Jetty® - Web Container & Clients - supports HTTP/2, HTTP/1.1, HTTP/1.0, websocket, servlets, and more
-
Updated
Apr 11, 2022 - Java
Java HTTP Request Library
-
Updated
Aug 18, 2021 - Java
PRDownloader - A file downloader library for Android with pause and resume support
-
Updated
Apr 27, 2020 - Java
More details here
violetagg/reactor-netty-workshop#2
仿茄子快传的一款文件传输应用
-
Updated
Feb 24, 2017 - Java
The best file downloader library for Android
-
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
Fast Parallel Async HTTP/SSH/TCP/UDP/Ping Client Java Library. Aggregate 100,000 APIs & send anywhere in 20 lines of code. Ping/HTTP Calls 8000 servers in 12 seconds. (Akka) www.parallec.io
-
Updated
Jan 14, 2018 - Java
Apache OFBiz - Main development has moved to the ofbiz-frameworks repository.
-
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
True Object-Oriented Java Web Framework
-
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)
grain是一个极简的、组件式的RPC框架,灵活且适合渐进学习,可与任何框架整合。同时包含(系统通用多线程模型与消息通讯 || 多对多关系的分布式锁 || 基于Servlet的HTTP框架 || 基于系统通用多线程模型的Websocket框架 || 支持行级锁的多线程锁 )等组件,按需选择组件,不绑架开发者。
-
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