This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Problem Merging multiple XML files



> If the "http://www.w3.org/TR/WD-xsl"; or
> "http://www.w3.org/1999/XSL/Transform"; are just namespaces which may not
> necessarily relate to a real URI, then does it really matter what reference
> we put in there? 

Because it's the _name_ of the language implemented.
Read http://www.w3.org/TR/WD-xsl as 
"FORTRAN" and
http://www.w3.org/1999/XSL/Transform
as "Java"

they are "just" names it doesn't not matter if anything is retrievable
at that address, but if you give a fortran program to a java system, it
won't work, it won't work even if you changed a comment at the top that
said "this is fortran" to say "this is java". 

To an xslt system anything in the namespace
http://www.w3.org/1999/XSL/Transform
is an xslt instruction. Anything in any other namespace is just
literal result elements that are copied to the output.

so for both IE5 and XSLT, 
 <xsl:stylesheet xmlns:xsl="uri:xsl">
that element is npt the start of a stylesheet, it is just some unknown
 element in some unknown namespace.

If you go

 <xsl:stylesheet xmlns="http://www.w3.org/1999/XSL/Transform";>
then to an XSL system that is the start of a stylesheet, but to IE it is
again just some unknown element.

> Yes, this is written for the Microsoft dialect, but there is no other choice
> if you do not have access to a server that supports XML.

If your server does not support XML (whatever that means) you wouldn't
be able to read the XML files at all, neither the source nor stylesheet.
on any platform that can run the microsoft dialect (server or client
side) then you can install msxml3 and use xslt.

If you really have to use the microsoft version for some strange reason
you can't expect much help from this list. It's like asking java
questions on a C list. Someone may give a bit of help the first time,
but basically you are asking in the wrong place. 

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]