IdentityTransformerSetupException ClassXML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
Thrown to indicate a problem instantiating or configuring an identity XSLT Transformer.
Inheritance Hierarchy

System Object
  System Exception
    Throwable
      Exception
        com.deltaxml.api DeltaXMLException
          com.deltaxml.core PipelinedComparatorException
            com.deltaxml.core IdentityTransformerSetupException

Namespace: com.deltaxml.core
Assembly: deltaxml (in deltaxml.dll) Version: 10.4.0.1000
Syntax

[SerializableAttribute]
public class IdentityTransformerSetupException : PipelinedComparatorException
Remarks

Thrown to indicate a problem instantiating or configuring an identity XSLT Transformer.

The PipelinedComparator makes use of an identity XSLT Transformer in its implementation. If there are problems instantiating or configuring this transformer then this exception may be thrown. The configuration which is performed centres around calls to the JAXP javax.xml.transform.sax.TransformerHandler.getTransformer and javax.xml.transform.Transformer.setOutputProperty(System.String,System.String) methods. These are in turn a consequence of the use of the com.deltaxml.core.PipelinedComparator.setOutputProperty(System.String,System.String) method.

The getCause() method should provide details of the underlying javax.xml.transform.TransformerConfigurationException.

If this exception is encountered we suggest checking your use of the com.deltaxml.core.PipelinedComparator.setOutputProperty(System.String,System.String) method and that a standards conforming XSLT processor is available on your classpath. If this is the case and there is still a problem please contact DeltaXML support for further assistance.

See Also