Advertisement
Guest User

XSL File

a guest
Apr 10th, 2014
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  3.  
  4.   <xsl:output method="xml" indent="yes" />
  5.  
  6.   <xsl:template match="/">
  7.     <xsl:for-each-group select="soapenv:Envelope/soapenv:Body/csv-set/csv-record" group-by="customer_id">
  8.       <tims:Payload>
  9.         <customer id="{customer_id}">
  10.           <xsl:for-each select="current-group()">
  11.             <value>{value}</value>
  12.           </xsl:for-each>
  13.         </customer>
  14.       </tims:Payload>
  15.     </xsl:for-each-group>
  16.   </xsl:template>
  17.  
  18. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement