xml.StaxWriter.declareNamespace
Binds a namespace URI to a prefix, and forces the output of the XML namespace definition to the StaxWriter stream.
Syntax
declareNamespace(
prefix STRING,
ns STRING )
- prefix defines the prefix to bind to the URI, cannot be NULL.
- ns defines the URI to bind to the default namespace, cannot be NULL.
Usage
This method binds a namespace URI to a prefix, and forces the output of the XML namespace
definition to the StaxWriter
stream.
The stream must point to a START_ELEMENT
, and the prefix scope is the
current START_ELEMENT
/ END_ELEMENT
pair.
In case of error, the method throws an exception and sets the
STATUS
variable. Depending on the error, a human-readable description of the
problem is available in the SQLCA.SQLERRM
register. See Error handling in GWS calls (STATUS).