ParseWeb Method
See Also Example Applies To
Executes a call to the remote server to fetch the XML document and may check the document is well formed.
Syntax
object.ParseWeb (HTTPCall, CheckWellFormed)
| Part |
Description |
| object |
An object expression that evaluates to an XMLSAXParser object. |
| HTTPCall |
Required. XMLHTTPCall object with the defintion of the HTTP call to be made to the remote server. |
| CheckWellFormed |
Optional. A boolean that defines whether the parser should check the XML is "well formed". Defaults to True, i.e. will check the document is well-formed. |
Remarks
The default behaviour of this method is to check the document is well formed. No validation against a DTD can be carried out using this object.
Background
This method actually executes the passed HTTPCall and then passes the resulting string to the ParseString method for the well formed check.
|