Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: vcsim: swap order of xsi type attribute
PropertyCollector responses always included the 'xsi:type' attribute. When a property type is ManagedObjectReference, there are 2 'type' attributes in the response, for example: <val xsi:type="ManagedObjectReference" type="LicenseAssignmentManager">LicenseAssignmentManager</val> Some clients (Java) have problems with this. Changing the order to be the same as real vCenter to workaround: <val type="LicenseAssignmentManager" xsi:type="ManagedObjectReference">LicenseAssignmentManager</val> Fixes #2114 Signed-off-by: Doug MacEachern <[email protected]>
- Loading branch information