I am developing an application that uses XSLT to convert several XML datafiles and associated images into an HTML presentation.
The datafiles live in several directories (DataA, DataB, DataC). The XSLT lives in a Resources directory. I need to pass the directory name for the datafile to the XSLT in the resources directory.
As it stands now, the initial xml file that starts it resides in the Data directory:
reports.xsl lives in the resources directory and needs a path to Datafile.xml. Furthermore, it needs to be able to pass it along to other xml files referenced from reports.xsl. The href doesn’t seem to do it. How do I proceed?