Help!

I am trying to do xml transformation with tomcat.  I
want to use the xalan transformation engine.  However
the jaxp.jar that is included in the tomcat lib is
getting in the way.  I keep on getting a "Namespace
not supported by parser" exception.

If I remove jaxp.jar and parser.jar from the tomcat
lib directory and replace it with the xerces.jar
everything works great.  Is there anyway to keep the
installed jaxp.jar and parser.jar but still get my
transformations to work, because my app will be
running at a hosting provider and they probably won't
make the change I need.

thanks in advance,
scott.

Below is the code I use to do my transformation:
TransformerFactory tFactory =
TransformerFactory.newInstance();
Transformer transformer =
tFactory.newTransformer(xslSource);
transformer.transform(xmlSource, new
StreamResult(response.getOutputStream()));      

=====
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Scott
May the Force be with you!

__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/

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

Reply via email to