views:

327

answers:

1

How to generate an xsd from the wsdl generated in Coldusion? I'm no sure how the xsd is useful for creating SOAP stub but someone needs it so need to find a way to generate one. I tried using some online tools for this but it says "inline definitions". Hopefully some one knows how to do this.

+2  A: 

The generated WSDL document includes an XSD property:

xmlns:xsd="http://www.w3.org/2001/XMLSchema"

(The above is from Adobe ColdFusion 8)

To find the appropriate XSD for the WSDL in question (in case it differs between Adobe CF, Railo, OpenBD, or versions thereof), just search for "xsd" inside the WSDL.

Adam Tuttle