• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

wsdl definition

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm new to the web services technology. And it seems the wsdl is significant in the concept. Would someone please explain in depth the wsdl concept/capabilities to me. Also, how and where to access the file.
 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
** WSDL full form ia Web Services Description Language. This is XML based language to describe the web services and how to access them.

** A WSDL file contains a description of everything involved in calling a SOAP web service:

The service URL and namespace
The type of web service (probably function calls using SOAP, although as I mentioned, WSDL is flexible enough to describe a wide variety of web services)
The list of available functions
The arguments for each function
The datatype of each argument
The return values of each function, and the datatype of each return value

** Universal Description, Discovery and Integration (UDDI) is a directory service where businesses can register and search for Web services.

** UDDI uses WSDL to describe interfaces to web services

You can use Mikalai Zaikin MZ's study notes for further reading.
 
reply
    Bookmark Topic Watch Topic
  • New Topic