Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WSDL validator? [closed]

Is there any online service available to validate Web Service WSDL file?

like image 903
Rejeev Divakaran Avatar asked Sep 30 '08 07:09

Rejeev Divakaran


People also ask

How do you check if a WSDL is valid or not?

How to test: Start soapUI, click on File -> New WSDL Project, specify the Project name and your initial WSDL that you would like to test, click OK. It will appear in the left side frame, expand your project, so, you can see your WSDL, then right click on the WSDL and click on "Check WS-I compliance".

How do I validate WSDL online?

How can I validate a WSDL document? Upload a WSDL file to wsdl-analyzer.com. After uploading the WSDL document you will be asked to upload all the referenced XML schema files. Then the validation report will be displayed.


1 Answers

If you're using Eclipse, just have your WSDL in a .wsdl file, eclipse will validate it automatically.

From the Doc

The WSDL validator handles validation according to the 4 step process defined above. Steps 1 and 2 are both delegated to Apache Xerces (and XML parser). Step 3 is handled by the WSDL validator and any extension namespace validators (more on extensions below). Step 4 is handled by any declared custom validators (more on this below as well). Each step must pass in order for the next step to run.

like image 86
Dean Rather Avatar answered Oct 12 '22 21:10

Dean Rather