You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way I can read UTF8 stings? The data I am receiving contains German characters and they appear to be corrupted. Likely being converted to ASCII. Is there a setting or a special method I need to use?
The text was updated successfully, but these errors were encountered:
Look at the source, I don't think it is as easy as just swapping out ByteStringConverter. It looks like the read routines process the data one byte at a time. UTF8 characters are never going to be single bytes. They are probably 2 but could be more.
I think it is RetrieveAndParseResponse which processes the response stream and that is what would need to be changed. Not really sure how this can be changed without breaking what you have already.
Is there a way I can read UTF8 stings? The data I am receiving contains German characters and they appear to be corrupted. Likely being converted to ASCII. Is there a setting or a special method I need to use?
The text was updated successfully, but these errors were encountered: