You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ve...@apache.org on 2012/09/23 09:53:52 UTC

svn commit: r1388973 - /synapse/branches/SYNAPSE-905/repository/conf/sample/resources/transform/transform_back.xslt

Author: veithen
Date: Sun Sep 23 07:53:52 2012
New Revision: 1388973

URL: http://svn.apache.org/viewvc?rev=1388973&view=rev
Log:
Fixed sample 8.

Modified:
    synapse/branches/SYNAPSE-905/repository/conf/sample/resources/transform/transform_back.xslt

Modified: synapse/branches/SYNAPSE-905/repository/conf/sample/resources/transform/transform_back.xslt
URL: http://svn.apache.org/viewvc/synapse/branches/SYNAPSE-905/repository/conf/sample/resources/transform/transform_back.xslt?rev=1388973&r1=1388972&r2=1388973&view=diff
==============================================================================
--- synapse/branches/SYNAPSE-905/repository/conf/sample/resources/transform/transform_back.xslt (original)
+++ synapse/branches/SYNAPSE-905/repository/conf/sample/resources/transform/transform_back.xslt Sun Sep 23 07:53:52 2012
@@ -21,7 +21,6 @@
 	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
 	xmlns:fn="http://www.w3.org/2005/02/xpath-functions"
 	xmlns:m0="http://services.samples"
-	xmlns:axis1="http://services.samples/xsd"
 	exclude-result-prefixes="m0 fn">
 <xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>
 
@@ -32,8 +31,8 @@
 <xsl:template match="m0:return">
 
 <m:CheckPriceResponse xmlns:m="http://services.samples/xsd">
-	<m:Code><xsl:value-of select="axis1:symbol"/></m:Code>
-	<m:Price><xsl:value-of select="axis1:last"/></m:Price>
+	<m:Code><xsl:value-of select="m0:symbol"/></m:Code>
+	<m:Price><xsl:value-of select="m0:last"/></m:Price>
 </m:CheckPriceResponse>
 
 </xsl:template>