Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Having issue with delphi WSDL importer

I am importing a WSDL provided by third party. but I am not successful with delphi WSDL importer. When I import the WSDL then delphi WSDL importer is hiding the implementation of the classes from the WSDL file.The WSDL file contains some functions which accept objects as parameter. After importing the WSDL delphi gives error as some variables are undeclared which are actually objects of class,whose definition is hidden by WSDL importer.

like image 203
user1643367 Avatar asked Nov 13 '22 23:11

user1643367


1 Answers

I have no personal experience with it, but the Free Pascal Web Service Toolkit seems to be in active development. It is compatible with Delphi,and can be used to create web service clients and servers.

It includes a WSDL importer, both as a command-line utility and a "Wizard". It also has a WSDL based type library editor.

The toolkit uses FPCUnit for test cases. For Delphi, DUnit is used.

like image 117
mjn Avatar answered Dec 21 '22 21:12

mjn