Falls jemand noch eine Lösung sucht:
der Experte für den
WSDL-Import
http://docwiki.embarcadero.com/RADSt...en_WSDL-Import
hat diese beiden relevanten Optionen:
Optionale und nillable Elemente verarbeiten - Aktivieren Sie diese Option, damit das
WSDL-Importprogramm relevante Informationen über optionale und nillable Eigenschaften erzeugt. Die
SOAP-Laufzeit verwendet diese Informationen, um zu ermöglichen, dass bestimmte Eigenschaften nil sind.
TXSString für einfache nillable Typen verwenden - Der
WSDL-Standard lässt zu, dass einfache Typen in Delphi nil bzw. in C++ NULL sind. Delphi und C++ lassen das nicht zu. Aktivieren Sie diese Option, damit das
WSDL-Importprogramm diese Beschränkung umgeht, indem Instanzen von Wrapper-Klassen verwendet werden.
Aus
diesem Post von J.M. Babet:
Zitat:
Support for 'nil' has been an ongoing issue. Several built-in types of Delphi are not nullable. So we opted to use a class for these cases (not elegant but it works). So with the latest update for Delphi 2007 I have added several TXSxxxx types to help with this. Basically: TXSBoolean, TXSInteger, TXSLong, etc. TXSString was already there but it was not registered. Now it is. When importing a
WSDL you must enable the Use 'TXSString for simple nillable types' option to make the importer switch to TXSxxxx types. On the command line it is the "-0z+" option.