Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #519, #448, #420, #421 Fix SoapAdapter serializer to support se… #528

Merged
merged 1 commit into from
Mar 21, 2017

Commits on Mar 21, 2017

  1. Fixes vmware#519, vmware#448, vmware#420, vmware#421 Fix SoapAdapter …

    …serializer to support serializing unicode chars
    
    We use string formatter to contruct serialization result.
    The template used is str(byte) in python2 even though when the val is
    unicode.
    This is fine when val only contains ASCII chars since python can encode
    them to str implicitly using ASCII encoding. But when the val is
    non-ASCII unicodes,
    the conversion fails. Fix it by using a unicode template to avoid the
    conversion.
    Tianhao He committed Mar 21, 2017
    Configuration menu
    Copy the full SHA
    ac455dc View commit details
    Browse the repository at this point in the history