Visual Studio 2019 import of WSDL with operation names containing UTF-8 chars
I am trying to import a WSDL filen into Visual Studio 2019 V16.6.3 (using Add Service Reference) without success.
It seems that the problem is, that some of the operation tags contains UTF-8 chars. Like this one:
<wsdl:operation name="EnØvelse"> … </wsdl:operation>
The WSDL importer in VS shows ‘??’ instead of the char ‘Ø’ from the name attriibute. None of the operations are imported.
The WSDL file is tagged with ‘encoding="UTF-8"’ and the file itself is in UTF-8.
Testing this WSDL in SoapUI show no errors.
Any suggestions as to how I fix this?