How to import wsdl file in Delphi offline?
2 answers
Yes it is possible Delphi can import a WSDL file stored locally.
In Delphi Win32 go to File-> New -> Others-> Delphi projects-> WebServices-> WSDL Importer
Then you will get a dialog asking you to specify the location of the WSDL file. Delphi generates a module from WSDL with interfaces for classes and objects exposed by the web service. After that, a file is created with the name of the service with the extension ".pas".
In Delphi.Net Go
Project-> Add Web Link Select the file to import and click "Add Link"
Goodbye.
+5
source to share