CreateConference.xsl

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:ns="http://bupt.edu.cn"; version="1.0">
  <xsl:output method="xml"/>

  <xsl:param name="hello"/>
  <xsl:param name="number"/>

  <xsl:template match="/">
    <!-- The root element is the one that will be used as a base for the
assignment rvalue -->
    <xsl:element name="ns:getHelloWorldResponse">
      <xsl:element name="ns:getHelloWorldReturn">
        <xsl:value-of select="concat($hello, ' ', $number, ' World ')" />
      </xsl:element>
    </xsl:element>
  </xsl:template>

</xsl:stylesheet>
-- 
View this message in context: 
http://www.nabble.com/ODE--while--error-tp19566046p19566116.html
Sent from the Apache Ode User mailing list archive at Nabble.com.

Reply via email to