-
|
Hi everyone, I am updating our software to use apache jena 6.0.0 and are therefore using Thanks in advance! Barry |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi Barry, Which version are you upgrading from? You should be able to use It is "absolute" - RFC 3986 URI syntax allows the However, that's just the basic syntax. Mistakes in URI syntax are exceptions. URI schemes are layered on top of the URI syntax; errors and warning in URI schemes are recorded with the IRIx. https/http (also defined in RFC 3986) require a non-empty host - that's https/http specific. Jena will parse that and print a warning for errors in scheme-specific rules. Parser errors are fatal errors. prints the "isReference" value is a Jena bug (#3825). It should be false. RDF 1.2 Concepts introduces RDF Reference IRIs" in section 3.3.1. |
Beta Was this translation helpful? Give feedback.
Hi Barry,
Which version are you upgrading from?
You should be able to use
IRIxand not need to use IRI3986 as of Jena 6.0.0It is "absolute" - RFC 3986 URI syntax allows the
hier-partto have ahostthat is an empty string forreg-name. "absolute does not mean much more than "has scheme, does not have fragment".However, that's just the basic syntax. Mistakes in URI syntax are exceptions.
URI schemes are layered on top of the URI syntax; errors and warning in URI schemes are recorded with the IRIx.
https/http (also defined in RFC 3986) require a non-empty host - that's https/http specific.
Jena will parse that and print a warning for errors in scheme-specific rules. Parser errors are fata…