python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there any limit on what I can set for http.parsing.max-uri-length
The most I've seen someone use was http.parsing.max-uri-length = 16k
I don't see anything in the akka-http project that gives that as a limit https://github.com/akka/akka-http/search?q=max-uri-length
...
namrogom
Votes: 0
Answers: 0
com.typesafe.config.ConfigException$WrongType: system properties: path has type OBJECT rather than STRING
when i try to sbt build :
sbt run -Dhttps.port=9443 -Dhttp.port=disabled -Dhttps.keyStore.type="JKS" -Dhttps.keyStore.password="password" -Dhttps.keyStore.path=/cert/https-example....

Vasanth Vel
Votes: 0
Answers: 1
Akka Http: How to handle high throughput through a proxy?
I would like to handle 3.000 requests per second via proxy usage.
The following code without proxy works without problems and can handle 3.000 requests per second with an average send-response time of...
MJey
Votes: 0
Answers: 0
Akka: custom HttpHeader, convert HashMap to Iterable<HttpHeader> in java
I'm trying to generate custom HttpHeader in akka. I've a HashMap of header entries which I need to convert to Iterable.
Here's my code:
import akka.http.javadsl.model.HttpHeader;
HashMap<String, St...
Dookoto_Sea
Votes: 0
Answers: 2