SDO_WFS_PROCESS.InsertCapabilitiesInfo
Format
SDO_WFS_PROCESS.InsertCapabilitiesInfo(
capabilitiesInfo IN XMLTYPE);
Description
Inserts the capabilities template information.
Parameters
capabilitiesInfo
XML document for the capabilities template, which is used at runtime to generate capabilities documents.
Usage Notes
At runtime, the capabilities document is dynamically generated by binding feature type information from the WFS metadata with the capabilities template. For information about capabilities documents, see Capabilities Documents.
For information about support for Web Feature Services, see Web Feature Service (WFS) Support.
Examples
The following example inserts the capabilities template information.
BEGIN
SDO_WFS_PROCESS.insertCapabilitiesInfo(
xmltype(bfilename('WFSUSERDIR', 'capabilitiesTemplate.xml'),
nls_charset_id('AL32UTF8')));
END
/