Skip to content

Commit

Permalink
Specific binding check for ArtifactResolutionService, currently fails…
Browse files Browse the repository at this point in the history
… on some entities.
  • Loading branch information
iay committed Mar 15, 2012
1 parent 485a2a8 commit 31e2154
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions mdx/check_future_4.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,18 @@
-->
<xsl:import href="../build/check_framework.xsl"/>

<xsl:template match="md:ArtifactResolutionService
[@Binding != 'urn:oasis:names:tc:SAML:1.0:bindings:SOAP-binding']
[@Binding != 'urn:oasis:names:tc:SAML:2.0:bindings:SOAP']
">
<xsl:call-template name="error">
<xsl:with-param name="m">
<xsl:text>invalid binding '</xsl:text>
<xsl:value-of select="@Binding"/>
<xsl:text>' on </xsl:text>
<xsl:value-of select="name()"/>
</xsl:with-param>
</xsl:call-template>
</xsl:template>

</xsl:stylesheet>

0 comments on commit 31e2154

Please sign in to comment.