ISAXXMLReader::putBaseURL Method (Windows CE 5.0)

Send Feedback

This method sets the base URL for the document. The base URL cannot be set during parsing.

HRESULT putBaseURL(const wchar_t* pwchBaseUrl);

Parameters

  • pwchBaseUrl
    [in] Pointer to the base URL (zero-terminated Unicode string) for the document.

Return Values

  • S_OK
    Returned if the base URL is successfully set.
  • E_FAIL
    Returned if the application tries to set the base URL during parsing.

Remarks

The base URL represents the URL of the current XML document. The reader uses this base URL to resolve relative links (either for those links related to the parseURL method or for external entities in an XML document). To resolve these links, the reader uses the base URL in much the same way that an Internet browser uses a Web page's URL to resolve relative links contained on that page.

The base URL may be a complete URL. However, the reader only uses that portion of the URL up to and including the final backslash when resolving links. For instance, a base URL for a document is "https://msdn.microsoft.com/xml/test.xml". The reader would then only use "https://msdn.microsoft.com/xml/" when resolving links.

Here is an example of how the reader uses the base URL to resolve links. The base URL for a document is "https://msdn.microsoft.com/xml/test.xml". In that document, there is a link for "mytest.xml". The reader would resolve this link as "https://msdn.microsoft.com/xml/mytest.xml".

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.
Link Library: Uuid.lib.

See Also

getBaseURL Method | getSecureBaseURL Method | putSecureBaseURL Method | ISAXXMLReader:IUnknown Interface

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.