Questions tagged [helidon-httpclient]

6 questions
2
votes
1 answer

Helidon Webclient Handle 400 Bad Request

I'm new to Helidon framework and started with Helidon 2 with JDK11 for our microservice. As per the requirement we need to invoke external HTTP/HTTPS endpoints and for that started exploring helidon webclient from below…
Sourabh
  • 43
  • 6
2
votes
1 answer

Does helidon supports HTTP2?

i want to start using Helidon for our project whcih is currently based on Spring Boot. Want to know if Helidon MP or Helidon SE supports HTTP2 server and clients?
Gaurav
  • 21
  • 1
0
votes
0 answers

BeanParam Annotation not working with helidon rest client to parse QueryParam values

We are using annotation @javax.ws.rs.BeanParam to aggregate our QueryParams for our controller layer, we are able to call the APIs fine from postman by providing the Queryparams and controller layer is receiving the data just good. The problem…
0
votes
1 answer

Encountering MappableException after upgrading helidon and jersey

After upgrading helidon to 2.5.4 and jersey to 2.35, I am getting the following exception in one of the API. With previous version of helidon(2.0.2) and jersey(2.29.1), it used to work fine. Can you please help to resolve this…
0
votes
1 answer

io.helidon.webserver.ServerResponse.send() throwing error on server but file downloaded on front end

Trying to write one sample for (file upload and download) error in server. Though it downloads the file in the frontend, getting error in server. For Routing-- WebServer.builder(getRouting()).port(8080).build().start(); private static Routing…
MRS
  • 1
0
votes
2 answers

What is the difference between request() and submit() in Helidon's WebClientRequestBuilder?

Helidon's WebClientRequestBuilder has two similar APIs: request() and submit(). Both APIs return Single. request()'s Javadoc says... Performs prepared request without expecting to receive any specific type. Response is not…
Nathan
  • 8,093
  • 8
  • 50
  • 76