Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

closed as not constructive by Bo Persson, NullUserException Nov 10 '12 at 20:51

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

10 Answers

up vote 18 down vote accepted

Try out this site, although it requires you to upload the WSDL to some publicly accessible web site. I confirmed that it works against Google's WSDL, located here.

share|improve this answer
1  
This site is good one even though it requires the WSDL to be available online. that may not be the case when we develop a WSDL. It would have been better if I could upload the WSDL file and get it validated. – Rejeev Divakaran Oct 1 '08 at 3:20
4  
Unfortunately, that site is down. :( – Fuzzy76 Jan 26 '10 at 13:52
That site doesn't appear to recognize WSDL 2.0 files. – Phil Hayward May 28 '11 at 0:03

I've found http://www.validwsdl.com/ to be useful, since it also allows calling into the methods, if available.

share|improve this answer
For some reason this service returns 301 as an error!, while trying to get secure.avangate.com/api/merchant/?wsdl - still the same URL works without any redirect from my machine. – sorin Jun 13 '11 at 22:47
@SorinSbarnea - what a coincidence! I am trying to integrate with the same vendor, and I cannot validate their WSDL. Did you figure out what is wrong? – M.R. Apr 20 '12 at 16:58
1  
Seems the validator is having some issues lately (for about a week at least). But very useful tool! love it. – Kingsolmn Apr 30 '12 at 18:49

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.

share|improve this answer
Visual Studio as well (in 2008 and later, at least, not sure about previous versions). – Chris Mar 26 at 15:03

You can try using one of their tools: http://www.ws-i.org/deliverables/workinggroup.aspx?wg=testingtools

These will check both WSDL validity and Basic Profile 1.1 compliance.

share|improve this answer

http://xmethods.net/ve2/Tools.po

share|improve this answer
It is less strict than Eclipse... at least for my WSDL here that passes xmethods but not Eclipse – Nicolas Raoul Feb 15 '10 at 10:03

you might want to look at the online version of xsv

share|improve this answer

http://xmethods.net/ve2/Tools.po

share|improve this answer
The second link is not working? – czuk Jul 30 '09 at 18:49
Sorry, didn't check the bookmark link. – Crad Jul 30 '09 at 20:46

If you would to validate WSDL programatically then you use WSDL Validator out of eclipse. http://wiki.eclipse.org/Using_the_WSDL_Validator_Outside_of_Eclipse should help or try this tool Graphical WSDL 1.1/2.0 editor.

share|improve this answer

This ones works fine : http://www.validwsdl.com/

share|improve this answer

You can try out wsdl validator http://docs.wso2.org/wiki/display/ESB451/WSDL+Validator

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.