RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TWSDLItems Class

TWSDLItems represents the definitions in a WSDL document.

Pascal
TWSDLItems = class(TWSDLDocument, IWSDLItems);
C++
class TWSDLItems : public TWSDLDocument, public IWSDLItems;

Use TWSDLItems to represent a WSDL (Web Services Definition Language) document. A WSDL document is a special form of XML document that describes the contents of a Web Service application and how you call the services it implements. TWSDLItems augments its immediate ancestor (TWSDLDocument) by introducing methods that provide easier access to the definitions in the WSDL document. 

TWSDLItems can read an existing WSDL document from a file or server, it can be associated with an in-memory string that is the contents of a WSDL document, or it can create a new, empty WSDL document. TWSDLItems uses an external DOM (Document Object Model) parser to analyze the WSDL document. This parser is usually assigned by specifying the DOMVendor property. When you set the Active property to true, TWSDLItems uses the DOM parser to parse the WSDL document so that you can examine or modify it.  

When TWSDLItems is created without an Owner, it behaves like an interfaced object. That is, when all references to its interface are released, the TWSDLItems instance is automatically freed. When TWSDLItems is created with an Owner, however, it behaves like any other component, and is freed by its Owner. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!