we have this line of code in the GrouperHttpClient which wraps the Apache HttpClient.
((HttpPost)httpRequestBase).setEntity(new StringEntity((this.body)));
the default for “StringEntity” is Consts.ISO_8859_1. So I think I need to adjust that based on content type to be a UTF type or something… I can look at it at some point