Convert WSDL to XML Tool? -


does know of tool / program convert wsdl xml?

basically want empty xml template. can populate nodes data after template.

you can extract xml request/response templates wsdl using soapui.

soapui useful @ lot of things web service mocking, unit testing etc. great tool.

here generates operation in 1 of examples at: http://www.webservicex.net/currencyconvertor.asmx?wsdl

<soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.webservicex.net/">    <soapenv:header/>    <soapenv:body>       <web:conversionrate>          <web:fromcurrency>?</web:fromcurrency>          <web:tocurrency>?</web:tocurrency>       </web:conversionrate>    </soapenv:body> </soapenv:envelope> 

and

<soap:envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:web="http://www.webservicex.net/">    <soap:header/>    <soap:body>       <web:conversionrateresponse>          <web:conversionrateresult>?</web:conversionrateresult>       </web:conversionrateresponse>    </soap:body> </soap:envelope> 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -