[
Lists Home |
Date Index |
Thread Index
]
> > I doubt it.
> > sun java 1.4, saxon 6.5.2
> > regards DaveP
>
> Oh, saxon. Take a look at the "standards conformance" page at
> http://saxon.sourceforge.net/saxon6.5.2/conformance.html, in
> particular:
>
> "SAXON supports the
> <xsl:document> element defined in the draft XSLT 1.1
> specification.
I think Dave is talking about the document() function. Saxon 6.5.2
(which was released over a year ago and still runs with JDK 1.1) uses
the java.net.URL class to handle the URI supplied to the document()
function. You can write your own URIResolver if you don't like the way
it behaves. There seem to be two schools of thought on interpreting URLs
- the "be liberal in what you accept" school, which is happy to accept
"c:\My Documents\temp\test.xml" as a URI, and the "conform to the
standards" school, which has great difficulty in this case because the
standards are such a mess.
Michael Kay
|