fixuprequestlog.xsl 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: CM
  5. (C) Copyright IBM Corp. 2008, 2009
  6. US Government Users Restricted Rights - Use, duplication or disclosure
  7. restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <!--
  10. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  11. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  12. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/xslt">
  13. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  14. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  15. -->
  16. <!-- declare all of the namespaces that are used in the files to be transformed -->
  17. <xsl:stylesheet version="1.0"
  18. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  19. xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  20. xmlns:bus="http://developer.cognos.com/schemas/bibus/2/"
  21. xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  22. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  23. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  24. <xsl:output indent="yes"/>
  25. <!-- identity transformation. copies the input to the output -->
  26. <xsl:template match="@*|node()">
  27. <xsl:copy>
  28. <xsl:apply-templates select="@*|node()"/>
  29. </xsl:copy>
  30. </xsl:template>
  31. <xsl:template match="/CMRequests/SOAP-ENV:Envelope/SOAP-ENV:Header/bus:biBusHeader/CAM/CAMPassport/id/text()"><xsl:text>??CAMPassport</xsl:text></xsl:template>
  32. </xsl:stylesheet>