Skip to main content
0 votes
0 answers
63 views

I have a problem with sending multipart/form-data requests from my Java service (using WebClient but same history with RestTemplate) to Flask service. It seems like a sent body is just empty as I get ...
Ania Fijałkowska's user avatar
0 votes
0 answers
29 views

I am trying to write a unit test for a webclient that has a oauth filter. I see the error , org.springframework.security.oauth2.client.ClientAuthorizationException: [server_error] at org....
stackuser's user avatar
  • 4,213
0 votes
0 answers
36 views

I am trying to create a mockwebserver to unit test a webclient parent code : public DetailResponse getDetail(String id) { WebClient newWebClient = getLoggingWebClient(webClient); ...
stackuser's user avatar
  • 4,213
0 votes
0 answers
61 views

I want depending on the HttpStatus of the error, throw an exception with the associated error message. But somehow response.rawStatusCode() doesn't work. This is currently my code: JsonNode APISong = ...
Pluschein's user avatar
0 votes
1 answer
228 views

I'm using Spring Boot and WebClient to call an external REST service (not developed by me). To do that, I build a full URL by appending an encoded file path to the base service URL. When I copy the ...
Salvatore Montagna's user avatar
0 votes
0 answers
56 views

I am trying to mock the responses using hoverfly, but it not working with webclient. Same setup works if i switch to RestTemplate for service calls and i am using following webclient configs. @Bean ...
InfiniteLoop's user avatar
0 votes
0 answers
53 views

I am using webclient to integrate with external get API WebClient webClient = WebClient.builder().filter(logRequestAndResponse()).baseUrl("url").build(); return webClient.get() .uri(...
Hagar's user avatar
  • 1
1 vote
0 answers
149 views

I'm using Spring WebFlux with WebClient to fetch data from an API. When the response contains a list of objects, everything works fine with .bodyToFlux(MyClass.class).collectList(). However, when I ...
Кирилл Курда's user avatar
0 votes
0 answers
83 views

I am trying to use spring Reactive Webclient to post payload remote microservice. When I post it via postman I am getting response back with { Status: “Success”, statusId:”dff-1244”}. But from via IJ ...
user2457545's user avatar
2 votes
0 answers
54 views

Question Why doesn't the request body logging include serialized request data? How can I configure my application to log the complete request body details? I'm trying to log the request body sent ...
백현명's user avatar
1 vote
0 answers
86 views

I am working with Spring WebClient and exploring ways to enable detailed logging for debugging purposes. Specifically, I am looking at two approaches: ExchangeStrategies and wiretap. Below are the ...
백현명's user avatar
0 votes
0 answers
48 views

What should I do if I want to disconnect while still receiving responses from RestClient? (java, kotlin) val result = restClient().get() .uri("") .exchange { : HttpRequest, ...
jun's user avatar
  • 37
1 vote
0 answers
57 views

We have an existing code that makes calls to ADFS endpoint for UI authentication passing below 4 parameters "grant_type":"authorization_code" "redirect_uri":<...
user2113885's user avatar
1 vote
1 answer
90 views

In our current microservice, we store the data that doesn't belong to us and we persist them all through external events. And we use these duplicate data (that doesn't belong to us) in our actual ...
Burak's user avatar
  • 155
-3 votes
1 answer
199 views

I have a Spring web application which does Http calls to external web services, for now it uses WebClient from webflux for making such calls, but every time it uses .block() since we don't need ...
Akzhol Issaliyev's user avatar

15 30 50 per page
1
2 3 4 5
277