How to generate TRemotable Class with XML Bind?

1

I need to generate the TRemotable classes of a WebService SOAP based on an XML. I tried the Delphi XE XML Bind but it generates interface with uses uses xmldom, XMLDoc, XMLInt.

    
asked by anonymous 31.01.2014 / 12:43

1 answer

2

To generate the client for a WebService in Delphi, you must use the WSDL Import Wizard, using the following steps:

  • Start Delphi XE
  • Activate the File - > New - > Other ...
  • In the window that appears, select the Delphi Projects - > Webservices
  • In the right pane, choose WSDL Importer
  • The Webservice WSDL Import Wizard will generate a unit with the classes you need.

        
    31.01.2014 / 18:58