this is a pain becuase we have to customize the pipeline.xsl for every
computer that we deploy it on...
I realized that making the folliwng change in OAPipelineResolver.java
fixes the problem :
File XSLTFile = new
File(GlobalConfigurations.getApplicationPathPrefix() + xsltURI);
instead of
File XSLTFile = new File(xsltURI);
the Unit tests work fine with this change, also the since the path
prefixing is dynamic its portable across computers.
Ashok