What tool can I use to convert XML to a WSDL?

Discussions related to the ILE C port of the popular Expat open source XML parser. http://www.scottklement.com/expat/
Post Reply
assignment400
Posts: 12
Joined: Mon Aug 29, 2022 10:39 pm

What tool can I use to convert XML to a WSDL?

Post by assignment400 »

This is my example.
<?xml version="1.0" encoding="UTF-8"?>
<canonical>
<environment>Staging</environment>
<language>en</language>
<transactionId />
<clientTransactionId>foobar</clientTransactionId>
<version>1</version>
<stockcheck>
<salesOrganization>default</salesOrganization>
<distributionChannel>default</distributionChannel>
<division>default</division>
<account>1000525</account>
<ordertype>rush</ordertype>
<parts>
<part>
<lineNumber>1</lineNumber>
<dormanPartNumber>H620894-BX</dormanPartNumber>
<clientPartNumber>H620894-BX</clientPartNumber>
<quantityRequested>1</quantityRequested>
</part>
<part>
<lineNumber>2</lineNumber>
<dormanPartNumber>938-320</dormanPartNumber>
<clientPartNumber>938-320</clientPartNumber>
<quantityRequested>1</quantityRequested>
</part>
</parts>
</stockcheck>
</canonical>

I downloaded and tried SOAPUI but it does not have a converter.

TIA, Darryl.
Scott Klement
Site Admin
Posts: 636
Joined: Sun Jul 04, 2021 5:12 am

Re: What tool can I use to convert XML to a WSDL?

Post by Scott Klement »

Converting this document to a WSDL doesn't make any sense.

This document appears to be a transaction related to parts. A WSDL is a set of instructions for how to call a SOAP API. There's no relationship between that and this document.
Post Reply