<xsl:template match="wsdl:operation">
<tbody>
<tr><th colspan="2">Méthode</th><th><xsl:value-of select="@name" /></th></tr>
<tr>
<th colspan="2">Action SOAP</th>
<td><xsl:value-of select="soap:operation/@soapAction" /></td></tr>
<tr><th rowspan="2">Paramètres</th><th>Entrée</th>
<td>
<xsl:call-template name="showOperation" >
<xsl:with-param name="operation"><xsl:value-of select="@name" /></xsl:with-param>
<xsl:with-param name="dir">input</xsl:with-param>
</xsl:call-template>
</td>
</tr>
<tr>
<th>Sortie</th>
<td>
<xsl:call-template name="showOperation" >
<xsl:with-param name="operation"><xsl:value-of select="@name" /></xsl:with-param>
<xsl:with-param name="dir">output</xsl:with-param>
</xsl:call-template>
</td>
</tr>
</tbody>
</xsl:template>