Consume .NET SOAP WebService that returns Datasets

Hello

Thank you for the WSDL. These diffgram elements are defined in WSDL as <s:any>. Unfortunately this data type is not supported by our SOAP serializers (because this is just a placeholder that can contain literally any vaild XML).

So such elements are omitted while importing RODL because RO SDK won’t be able to access or write them anyway. And even if you would be able to access that data you would have to parse the XML manually anyway.

I’m afraid the only option here would be to follow this approach: Using RemObjects Hydra to consume a .NET WCF service from Delphi
Here .NET code is used to access the remote WCF server and provide received data to the Delphi host.

Regards