Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is WSDL?
.NET INTERVIEW QUESTIONS - What is WSDL?
✍: Guest
WSDL stands for Web Service Description Language. It is a W3C specification which defines XML grammar for describing Web Services.XML grammar describes details such as:-
* Where we can find the Web Service (its URI)?
* What are the methods and properties that service supports?
* Data type support.
* Supported protocols
In short its a bible of what the webservice can do.Clients can consume this WSDL and build proxy objects that clients use to communicate with the Web Services. Full WSDL specification is available at http://www.w3.org/TR/wsdl.
2009-10-07, 4497👍, 0💬
Popular Posts:
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up...
.NET INTERVIEW QUESTIONS - What are Daemon threads and how can a thread be created as Daemon? Daemon...
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...
How To Change System Global Area (SGA)? - Oracle DBA FAQ - Introduction to Oracle Database 10g Expre...
What Does a HTML Document Look Like? A HTML document is a normal text file with predefined tags mixe...