[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

How do you use the URIResolver interface to find xsl t

Subject: How do you use the URIResolver interface to find xsl templates in a WAR base application
From: "Onaindia, Juan" <Juan.Onaindia@xxxxxxxxxx>
Date: Tue, 23 Apr 2002 09:50:19 -0400
websphere uriresolver
Hello,

In the middle of converting existing applications to a WAR deployment
environment, I have come up with the problem that during the transformation
(in Java) the transformer tries to find the stylesheets base on the root of
the application server in my case WebSphere. 
I have been trying to use the URIResolver interface to resolve this by
passing the document root and publicId.
The path of the file is correct but I still get the following exception:

javax.xml.transform.TransformerConfigurationException: 

File "C:\Program Files\IBM\Application
Developer\workspace\PositionControlFormsWeb\webApplication\WEB-INF\xsl\PCFMe
taArea.xsl" not found

I appreciate if someone could HELP me with this issue.

Here is the code that I am using to do the transformation:

final String documentRoot =
getServletConfig().getServletContext().getRealPath("");

TransformerFactory tFactory = TransformerFactory.newInstance();
DIURIResolverImpl resolver = new DIURIResolverImpl(documentRoot);
tFactory.setURIResolver(resolver);

Transformer transformer = tFactory.newTransformer(new StreamSource(new
FileInputStream(xslFilePath)));

transformer.setOutputProperty(OutputKeys.METHOD, "html");
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
// pass a parameter to the XSLT stylesheet
transformer.setParameter("rootDir", documentRoot);
transformer.transform(new StreamSource(doc), new StreamResult(out));


The DIURIResolverImpl source code:

import java.net.URL;
import javax.xml.transform.URIResolver;
import javax.xml.transform.TransformerException;
import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamSource;

public class DIURIResolverImpl implements URIResolver
{
	private String docRoot;
	
	public DIURIResolverImpl(String documentRoot)
	{
		docRoot = documentRoot;
	}
	public Source resolve(String href, String base) throws
TransformerException
	{
		try
		{
			return new StreamSource(docRoot + href);
		}
		catch (Exception e)
			{
			throw new TransformerException(e);
		}
	}
}

Once again, I appreciate any input.

Thanks,

Juan Onaindia



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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.