Project

Profile

Help

Bug #2749

closed

Type error XPTY0004: Required item type of first argument of collection() is node(); supplied value has item type xs:base64Binary

Added by O'Neil Delpratt almost 8 years ago. Updated almost 7 years ago.

Status:
Closed
Priority:
Normal
Category:
XPath conformance
Sprint/Milestone:
-
Start date:
2016-05-17
Due date:
% Done:

100%

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

Description

Reported by user:

I presumed no config was necessary, because per http://www.saxonica.com/documentation/index.html#!sourcedocs/collections "the URIs listed in the doc elements are treated like URIs passed to the doc() function" and in the test XSL, doc-available() succeeds with the same url immediately before collection().

Anyway, I tried -config of the mappings from "rdf" to "text/xml". The same error. The test files are attached.

P:\test>java -classpath saxon9ee.jar net.sf.saxon.Transform -config:config.xml -it:main -t -xsl:test.xsl

Saxon-EE 9.7.0.5J from Saxonica

Java version 1.8.0_91

...
	Type error
	  XPTY0004: Required item type of first argument of collection() is node(); supplied value
	  has item type xs:base64Binary
	Required item type of first argument of collection() is node(); supplied value has item type xs:base64Binary

Related issues

Related to Saxon - Bug #2881: Required item type of first argument of collection() is node(); supplied value has item type xs:base64Binary - no file extensionClosedO'Neil Delpratt2016-08-16

Actions
Actions #1

Updated by O'Neil Delpratt almost 8 years ago

  • Status changed from New to Resolved
  • Applies to branch 9.8 added
  • Fix Committed on Branch 9.7, 9.8 added

The problem is content types not known by the AbstractResourceCollection are assumed to be binary. The fix was to add the rdf+xml to the map of known resources (i.e. resourceFactoryMapping in the AbstractResourceCollection).

Bug fixed and committed to svn on the 9.7 and 9.8 branches.

Actions #2

Updated by O'Neil Delpratt almost 8 years ago

It seems like setting the resource fileExtension mapping in the config file does not take effect:

<configuration edition="EE" xmlns="http://saxon.sf.net/ns/configuration">
	<global expandAttributeDefaults="false" validationComments="true" />

	<xslt recoveryPolicy="doNotRecover" />

	<serialization saxon:indent-spaces="4" xmlns:saxon="http://saxon.sf.net/" />

	<resources>
		<fileExtension extension="rdf" mediaType="application/xml" />
	</resources>
</configuration>

Opening this as a new bug. see #2750

Actions #3

Updated by O'Neil Delpratt almost 8 years ago

  • Status changed from Resolved to In Progress

Reopening this bug issue because we need to investigate the poor diagnostics.

Actions #4

Updated by Michael Kay almost 8 years ago

  • Status changed from In Progress to Resolved

The bad error message appears to arise as follows.

In CollectionFn line 201, if the XPath version is 3.0 or less (i.e. not 3.1), the collection() function is required to return a sequence of nodes. So we add an item checker to ensure that this is the case. But the RoleDiagnostic (which determines the error message) is set up to report that the error relates to the first argument.

If we're not going to allow items other than nodes to be returned, then perhaps the CollectionFinder shouldn't even consider the possibility, and should parse everything as XML. But the immediate thing is to fix the error message, which I have done.

Actions #5

Updated by O'Neil Delpratt almost 8 years ago

  • Status changed from Resolved to Closed
  • % Done changed from 0 to 100
  • Fixed in Maintenance Release 9.7.0.6 added

Bug fixed in maintenance release 9.7.0.6.

Actions #6

Updated by Michael Kay almost 8 years ago

  • Status changed from Closed to In Progress
Actions #8

Updated by Michael Kay almost 8 years ago

Reopened by user:

(a) What about files having no file extension?

(b) The diagnostics have not been improved: we still get

XPTY0004: Required item type of result of call to collection is node(); supplied value has

 item type xs:base64Binary
Actions #9

Updated by O'Neil Delpratt over 7 years ago

  • Related to Bug #2881: Required item type of first argument of collection() is node(); supplied value has item type xs:base64Binary - no file extension added
Actions #10

Updated by O'Neil Delpratt over 7 years ago

  • Status changed from In Progress to Closed

I have opened a new bug issue to address with comment #8: https://saxonica.plan.io/issues/2881

Therefore I am closing this bug issue.

Actions #11

Updated by O'Neil Delpratt almost 7 years ago

  • Fix Committed on Branch trunk added
  • Fix Committed on Branch deleted (9.8)
Actions #12

Updated by O'Neil Delpratt almost 7 years ago

  • Applies to branch deleted (9.8)

Please register to edit this issue

Also available in: Atom PDF