I have .xsd file i need to convert it into wsdl,how would i do so?and is this conversion the right approach. I have request and response data in same .xsd file
|
You can not do that so easily. Usually, the I don't see how a tool could "reconstruct" the operations out of only the xsd only, except if it uses naming convention. E.g. messages Manually creating the wsdl shouldn't be too long.
Have a look at WSDL essentials to get the general structure of the wsdl. Or you can give a try to the tool WSDL Generator (from http://www.theprogrammerfactory.com/) whose purpose is apparently to ease this task. (Note that I never used it). Another approach would be to generate classes out of the xsd, then use them to define the service class manually (this is the tedious part of matching types together into the corresponding operation) and then use another tool to transform the service class back into a complete wsdl. There are various tools available to convert to/from xsd and wsdl, for both Java or C#: wsgen, wsimport, xsd.exe, wsdl.exe. |
|||||
|
|
|
|||