Project

Profile

Help

Support #6510

closed

load-xquery-module fails incomprehensibly with a 'hash-uri'

Added by Pieter Lamers about 1 month ago. Updated about 1 month ago.

Status:
Resolved
Priority:
Low
Assignee:
-
Category:
-
Sprint/Milestone:
-
Start date:
2024-08-15
Due date:
% Done:

0%

Estimated time:
Legacy ID:
Applies to branch:
Fix Committed on Branch:
Fixed in Maintenance Release:
Platforms:

Description

following a discussion on Slack I tried to include an xquery library module using a namespace uri defined as '#my-module'. The error reported by Oxygen when running the code with EE 12.3 was 'The file imported for module null is not a valid XQuery library module. The content starts: <xsl:stylesheet xmlns:mymod...'. When I changed all instances of the namespace-uri to 'http://test/#my-module' my code ran fine. I have not yet tried on latest EE.


Files

my-module.xqm (189 Bytes) my-module.xqm Pieter Lamers, 2024-08-15 17:27
my-xslt.xslt (587 Bytes) my-xslt.xslt Pieter Lamers, 2024-08-15 17:27
test.xml (33 Bytes) test.xml Pieter Lamers, 2024-08-15 17:27
Actions #1

Updated by Michael Kay about 1 month ago

It's safest when the spec calls for a URI to supply a valid RFC3986 URI.

The XQuery spec says "In most contexts, processors are not required to raise errors if a URI is not lexically valid according to [RFC3986] and [RFC3987]. See 2.4.5 URI Literals and 3.9.1.2 Namespace Declaration Attributes for details." But saying that the processor isn't required to raise an error isn't the same as saying it's OK and should work.

Note that in this context a URI Reference (often misleadingly called a relative URI) is not actually a URI.

So how and why is it actually failing, and could Saxon do a better job on the diagnostics?

Actions #2

Updated by Michael Kay about 1 month ago

What is happening is that Saxon first attempts to see whether the module URI is known in particular whether there is a catalog that recognizes it. Because it is a relative reference, it is first resolved against the base URI (of the XSLT stylesheet), which results in a request for file://..../my-xslt.xslt#mymodule. This succeeds in retrieving a resource (the stylesheet). There is no meaning attached to fragment identifiers in an XQuery resource, so the fragment identifier is ignored, and the stylesheet is retrieved. This is then parsed as XQuery, with the result

FOQM0003  The file imported for module null is not a valid XQuery library module. The
  content starts: <xsl:stylesheet

Is Saxon's behaviour conformant? Well, the spec for load-query-module basically says that the strategy for locating a query module with the relevant module namespace is implementation-defined.

XQuery 4.12.1 says:

To maximize interoperability, query authors should use a string that is a valid absolute IRI.

Implementions must accept any string of Unicode characters. Target namespace URIs are compared using the Unicode codepoint collation rather than any concept of semantic equivalence.

Implementations may provide mechanisms allowing the target namespace URI to be used as input to a process that delivers the module as a resource, for example a catalog, module repository, or URI resolver. For interoperability, such mechanisms should not prevent the user from choosing an arbitrary URI for naming a module.

Similarly, implementations may perform syntactic transformations on the target namespace URI to obtain the names of related resources, for example to implement a convention relating the name or location of compiled code to the target namespace URI; but again, such mechanisms should not prevent the user from choosing an arbitrary target namespace URI.

As with other namespace URIs, it is common practice to use target namespace URIs whose scheme is "http" and whose authority part uses a DNS domain name under the control of the user.

So you're definitely inviting trouble by using a string that isn't a valid absolute URI. The spec says that we should accept any string of characters; but it doesn't say what we should do with it. The spec explicitly says that we may "provide mechanisms allowing the target namespace URI to be used as input to a process that delivers the module as a resource, for example a catalog..." which is what we are doing.

So I think the bottom line is that what you are doing is explicitly discouraged by the spec, and what we are doing is explicitly allowed by the spec.

Not a very satisfactory state of affairs, but things involving URIs very rarely are.

Actions #3

Updated by Michael Kay about 1 month ago

  • Tracker changed from Bug to Support
  • Status changed from New to Resolved
Actions #4

Updated by Pieter Lamers about 1 month ago

Thanks Mike for digging this up. I understand now why it was using the xslt as a source and I understand more of the lookup mechanisms that may be at work. I had no idea this 'temp' relative uri could get me in trouble.

Please register to edit this issue

Also available in: Atom PDF