Hi,
I have a method that sends a file to the backend and waits for the response.
It is a massive import.
However the backend takes a long time to make the import, so I have a timeout error on the client side.
return this.httpClient.post<any>(myUrl, formData,
{headers: this.getFormMultipartHeader(), responseType: 'json'});
Which is the right way to do this, according to you?
Thank you very much
cld