Open
Description
Requirement: Passing cloud foundry user related data from the application with each cloud foundry requests and need to send the respective response headers back to the calling application.
For Example: For Creating a Service Key, the code flow will be
Application ----> Mono createServiceKey(CreateServiceKeyRequest request) ----> Mono requestCreateServiceKey ----> Mono create(CreateServiceKeyRequest request) ----> Mono post(Object requestPayload, Class responseType, Function<UriComponentsBuilder, UriComponentsBuilder> uriTransformer) ----> Http Client (for HTTP Related Operations)
Is there any way from which we can track the Http Client Response Headers from the calling application.