Shared types in SOAP web services

Hi,

I have created RemObject SDK server with 2 services defined in the RODL file.
These services are exposed via SOAP protocol.

Services use some common types (enums and structs), defined in the same RODL file.

Now I am importing WSDL services definition with Delphi WSDL import tool.

Problem: I am getting shared types definition in each generated file. How can I have some shared types between imported services ?

if you exclude xsoSplitServiceWsdls from TROSoapMessage.SerializationOptions, you will be able to receive “full” WSDL that contains all services and all shared types at http://localhost:8099/soap .

Thanks, it worked well!