12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 2005, 2011
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:bus="http://developer.cognos.com/schemas/bibus/3/" >
- <xsl:output method="xml" encoding="UTF-8" indent="no"/>
-
- <xsl:template match="*">
- <fault>
- <xml>
- <xsl:copy-of select="SOAPFault/*"/>
- </xml>
-
- <html>
- <xsl:text/><xsl:value-of select="'<![CDATA['" disable-output-escaping="yes"/><xsl:text/>
- <xsl:value-of select="html" disable-output-escaping="yes"/>
- <xsl:text/><xsl:value-of select="']]>'" disable-output-escaping="yes"/><xsl:text/>
- </html>
- </fault>
- </xsl:template>
- </xsl:stylesheet>
|