Questions tagged [quarkus-rest-client]

Quarkus MicroProfile REST Client used to interact with REST APIs with little effort.

Quarkus MicroProfile REST Client used to interact with REST APIs with little effort.

Use guide available at https://quarkus.io/guides/rest-client

181 questions
0
votes
0 answers

Different query parameter styles for multivalued parameters and regular ones

I have a service that accepts requests with the following query parameters: limit=1 param[117]=3345 parameters param[117] are List, and parameter limit is a string The service expects to receive these parameters in the following…
mrtopgun
  • 25
  • 5
0
votes
1 answer

Quarkus How to get all url query param?

I would like to get all query params from an URL but I can't use @QueryParam without specifying a name, since names of paramters are dynamic, I can have some params that start with same name : param_toto, param_tata, param_titi, etc. @QueryParam("")…
Naou
  • 726
  • 1
  • 10
  • 23
0
votes
1 answer

I'm getting a ContextNotActiveException when trying to use a Custom TokensProducer with Quarkus RestClient ClientFilter

I am using the quarkus-oidc-client-filter in a Lambda calling an external service and that works brilliantly. Unfortunately, the calls to the Lambdas can be bursty. When a big burst hits after a quiet period I can get rate limited on calls to the…
0
votes
1 answer

Quarkus application not starting properly

I have a quarkus application, when I build the application with below command, for the first time process is starting perfectly fine compile quarkus:dev -DskipTests=true Logs for successful startup: Press [h] for more options> Tests paused Press [r]…
0
votes
1 answer

Quarkus Project - vertx-blocked-thread-checker

WARN [io.ver.cor.imp.BlockedThreadChecker] (vertx-blocked-thread-checker) Thread Thread[vert.x-eventloop-thread-4,5,main] has been blocked for 3912 ms, I need help with this WARNING
0
votes
1 answer

Quarkus/MicroProfile Rest Client Session Cookie

I'm using the Quarkus Rest Client to communicate with an external service which uses two cookies to authenticate all requests. These two cookies are returned from an authentication API and from every subsequent API call. Is there a way to handle…
KyriacosP
  • 31
  • 1
  • 6
0
votes
1 answer

How to Validate a RESTful endpoint that the call is not happening from CURL or POSTman or any similar tool

We have few restful endpoints service developed in Quarkus. We test all the endpoints using CURL and POSTMAN or similar tool. After testing, We call all the endpoints from Andriod code from our mobile app. Now, we want to validate that the endpoints…
0
votes
1 answer

AWS XRay with Quarkus

I would like to trace downstream rest client calls using AWS Xray in Qurakus application. Any idea how to enable aws xray tracing for Rest Client calls in Quarkus Application.
0
votes
0 answers

Unable to authenticate Proxy using quarkus-microprofile restclient

Any ideas on why quarkus-microprofile rest-client (version 1.3) ignores System-env properties proxy username and proxy password. It definitely considers using the proxy host and port as I am getting an HTTP-407 from the proxy server. https.proxyHost…
0
votes
1 answer

NTLMv1 authentication support for Quarkus

How does one add or implement NTLMv1 Authentication in Quarkus? I need it so that I can use the quarkus rest client to read and write to Sharepoint folders using their Rest APIs. See…
0
votes
0 answers

Use of Rest Client Reactive in the extension plug-in is abnormal

In my Quarkus extension, I want to use REST Client Reactive, but an exception occurred in the run log : Caused by: javax.enterprise.inject.UnsatisfiedResolutionException: Unsatisfied dependency for type…
liuz
  • 1
0
votes
1 answer

How to create customised Rest endpoints in kogito quarkus

I am creating a kogito app with DRL files in it . It’s generating REST endpoints based on Rule names in DRL files. How can I change it as per my requirement ? e.g. rule findStudents When /// Then /// So endpoint will be ->…
Anshu_06
  • 3
  • 1
0
votes
2 answers

is there a smaple quarkus project with multiple named OidcClients to call multiple service calls?

am looking for a sample quarkus reactive project with multiple OidcClients to make multiple service calls? Eg: DemoProject wants to call service A, B, C, D. DemoProject used keycloak authorization with grant type as password. Service A has…
ajith kumar
  • 91
  • 2
  • 5
0
votes
1 answer

How to inherit a class and pass over a PanacheRepository

I'm creating an application in Kotlin and Quarkus. I'm now creating a generic rest resource, which will be extended by my other resource classes. The idea would be that I will have to write less code, as all methods of the generic class will be used…
rjjdv
  • 339
  • 1
  • 3
  • 12
0
votes
0 answers

Quarkus calling Rest API with dynamic endpoint

I used the micro profile to make a call to a specific API, it happens that this call gives me a list of URLs and I have to make a call for each URL returned. My objective is call all of these URL e verify HTTP status returned. "ApiResources": [ …
Alex Braz
  • 1
  • 1