Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Validate XML instance document against WSDL

I can easily validate a XML document against a XML Schema, eg. with XMLSpy or programmatically. Is it possible to do this with a WSDL file? It does not seem possible with XMLSpy or any other XML tool I know. For me the only possibility right now is to do it programmatically, eg. by generating Java code from the WSDL and starting a request, which is then marshalled correctly. If there is no tool / easy programmatic approach, is there a tool which can extract XML Schema from the WSDL?

Best

like image 497
Ice09 Avatar asked Mar 15 '10 13:03

Ice09


1 Answers

You could use SoapUI :

  • Create new project (you'll need to provide wsdl)
  • Double click on the "request" of your new project
  • Modify XML if needed
  • Right click -> validate
like image 94
Fundhor Avatar answered Nov 09 '22 23:11

Fundhor