What tool can be used to combine wsdl and xsd files?

I have two files: one with a description of webservice (wsdl), the second with data structures used in webservice (xsd). I don’t have anything else, the web service is not working yet. I need to combine them into one because the Delphi 7 WSDL Importer does not process the included xsd files. Where can I find a tool for this?

EDIT

I copied the contents of xsd to the <types> section and it works. I tried this before, but I must have made a mistake, and Delphi WSDL import did not work. I have to improve my copy / paste skills.

+4
source share
3 answers

I copied the contents of xsd to the partition and it works. I tried this before, but I must have made a mistake, and Delphi WSDL import did not work. I have to improve my copy / paste skills.

+1
source

You can change include to import .
I saw how different tools handle one better than the other.

Use XMLSpy as an alternative: here you can edit the WSDL and import the XSD into it.

This question has an answer on how to host XSD content in WSDL.

+5
source

You can also try the updated importer from here:

http://cc.embarcadero.com/Item/24535

Added support for external schema files.

+3
source

Source: https://habr.com/ru/post/1306767/


All Articles