Problem with transforming XMLs containing namespaces.

We are able to transform an XML using an XSLT and create an HTML output using Xalan, but when the XML has any namespace in it and when we try to transform it, we get the output as a text format ie, without any HTML tags in it.
[233 byte] By [arunmp25a] at [2007-10-3 2:33:40]
# 1
Solved just have to set factory.setNamespaceAware(true); while parsing xml with namespacesDocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();factory.setNamespaceAware(true);
arunmp25a at 2007-7-14 19:32:39 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...