I'm working with Delphi 2009 update 2. Borland WSDLIMP Version 2.3 - $Rev: 16699 $
Why does the identifier rápido shows as r_pido ?
Where did the character á go?
Is this WSDLIMP bug or MS XML bug ?
thanks for replies
File.XSD
<?xml version="1.0" encoding="UTF-8"?>
....
....
....
<xs:simpleType name="displayName">
<xs:restriction base="st">
<xs:enumeration value="rápido"/> //-----> attention !!!
<xs:enumeration value="lento"/>
....
....
....
command prompt -->
wsdlimp -Oe- -Ow+ -P -= "c:\myWsdlFile.wsdl"=myService.pas
myService.pas
.....
.....
unit myService.pas;
interface
uses InvokeRegistry, SOAPHTTPClient, Types, XSBuiltIns;
......
.....
displayName = (
r_pido, //---> attention!!! á Where did it go?
lento);