Using Apache Tomcat 5.0.28 I'm having a problem with the xsl:import command.

I have several Tomcat running on the same server (they could be different
releases of code so can't share resources). 

An XSLT script is called via a JSP to convert XML to HTML (<xsl:apply
nameXml="routesummary" xsl="/xsl/routesummaryheader.xsl" />). 

This routesummaryheader.xsl script then needs to call another XSLT script
routesummarycontent.xsl and it does this via an import, for example,

<xsl:import href="http://localhost:8080/aaem/xsl/routesummarycontent.xsl"; />

Now this works fine. 

But I run many Tomcat servers on this box and so a specific URI is no good.
So I want to replace that import with a relative URI

<xsl:import href="routesummarycontent.xsl" />

This does not work, I get "Had IO Exception with stylesheet file:
routesummarycontent.xsl".

Note routesummaryheader.xsl and routesummarycontent.xsl are in the same
directory.

I've tried all kinds of relative paths in the import nothing seems to work.

The JSP file is under webapps\app-dir\jsp. The XSLT files are under
webapps\app-dir\xsl.


How do I fix this?

***********************************************************************************
The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered 
Office: 36 St Andrew Square, Edinburgh EH2 2YB. 
Authorized and regulated by the Financial Services Authority 
 
This e-mail message is confidential and for use by the 
addressee only. If the message is received by anyone other 
than the addressee, please return the message to the sender 
by replying to it and then delete the message from your 
computer. Internet e-mails are not necessarily secure. The 
Royal Bank of Scotland plc does not accept responsibility for 
changes made to this message after it was sent. 

Whilst all reasonable care has been taken to avoid the 
transmission of viruses, it is the responsibility of the recipient to 
ensure that the onward transmission, opening or use of this 
message and any attachments will not adversely affect its 
systems or data. No responsibility is accepted by The Royal 
Bank of Scotland plc in this regard and the recipient should carry 
out such virus and other checks as it considers appropriate. 
Visit our websites at: 
http://www.rbos.com
http://www.rbsmarkets.com 
***********************************************************************************

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to