Problem with istio proxy headers

I have installed istio 1.5.0 and configured istio for our applications. we are facing issue when we call application from another application. Following is the error we are getting.

ERROR:“HttpMediaTypeNotSupportedException :Invalid mime type “application/json;charset=UTF-8,application/json”: UTF-8,application/json”

Is there any way that we can disable or edit this headers. Please suggest

Since mime type is defined like this: “type/subtype;parameter=value”, then what are you sending is indeed invalid mine type. You should try to fix this in your application code. :slight_smile:

For quick fix you could rename the port of your service from http- to tcp-. I suppose that that could do the trick, but you’ll lose http routing abilities.