It looks as if you’ve got a configuration problem here: the XSLT processor that you’re using doesn’t work with the XML parser that you’re using. The XSLT processor has apparently requested a namespace processing option that the XML parser doesn’t support.
So you need to find out which XSLT processor and XML parser are being loaded, and change your classpath and/or system properties to get the one that you actually want. Sometimes the simplest approach is to specify the chosen processor/parser explicitly in your application by calling System.setProperty() - see the JAXP specification for details. But a change to the classpath will usually fix the problem.
Michael Kay
#API-Management#Tamino#webMethods