User-474980206 posted
the following code removes the file data from the post:
this.http.post<T>(this.url, JSON.stringify(formDataDTO), this.getHeaders())
you need to pass the actual FormData object to the underlying fetch or XMLHTTPRequest object (don't know if http.post supports this). your other option is convert the blob to base64 string so that it can be passed in a json object. then in the
action it just a string parameter that you convert back to byte[]