I'm new to WSDLs so I'm trying to create a simple math service with one. The service should add two integers together, as well as multiply two floats together, and return the results. I really don't even know where to start - is there any site etc. that has a good explanation of how to work with WSDLs, or could anyone give the runover on how a WSDL is constructed? I've read W3 Schools' explanation, but it was a bit brief.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
WSDL stands for Web Services Description Language. You can take a look at W3School documentation, it is pretty complete. http://www.w3schools.com/wsdl/wsdl_intro.asp. Usually the technology you use with to create your service, creates common mechanisms to handle the WSDL.Yo can see your WSDL adding this to your Web Service EndPoint. ?WSDL |
||||
|
|
|
@Inerdia - +1 ! I wrote a WSDL for a service by hand, and it took a lot of blood, sweat and tears to get it right. I strongly recommend using some kind of toolset to help you - either .NET dev environment or Apache Axis, or something of that sort. |
|||
|
|