<xsl:template name="showOperation" >
<xsl:param name="operation" >Opération inconnue</xsl:param>
<xsl:param name="dir" >Direction inconnue</xsl:param>
<xsl:choose>
<xsl:when test="$dir='input'">
<xsl:call-template name="showMessage">
<xsl:with-param name="message">
<xsl:value-of select=
"/wsdl:definitions/wsdl:portType/wsdl:operation[@name=$operation]/wsdl:input/@message" />
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:when test="$dir='output'">
<xsl:call-template name="showMessage">
<xsl:with-param name="message">
<xsl:value-of select=
"/wsdl:definitions/wsdl:portType/wsdl:operation[@name=$operation]/wsdl:output/@message" />
</xsl:with-param>
</xsl:call-template>
</xsl:when>
</xsl:choose>
</xsl:template>