Application Integration
- Application Integration
- All Products
fn:resolve-QName(qname, element)
Argument | Required/Optional | Description |
|---|---|---|
qname | Required | A string representing the QName to be resolved,
which might include a prefix. For example,
"ex:tag" . |
element | Required | The element node providing the namespace context
for resolving prefixes in the QName string. |
|
|
|---|---|
fn:resolve-QName("ex:foo", <a
xmlns:ex="http://example.com"/>) | QName("{http://example.com}foo") |
fn:resolve-QName("bar", <a
xmlns="http://default.com"/> ) | QName("{http://default.com}bar") |
fn:resolve-QName("ns:tag", <a/>) | Error |