2002/ws/desc/test-suite/results/wsdl-xslt wsdl-component-model.xslt,1.19,1.20

Update of /sources/public/2002/ws/desc/test-suite/results/wsdl-xslt
In directory hutz:/tmp/cvs-serv26933/test-suite/results/wsdl-xslt

Modified Files:
	wsdl-component-model.xslt 
Log Message:
Fixed soapBindingExtension presence on soap 1.1 bindings.

Index: wsdl-component-model.xslt
===================================================================
RCS file: /sources/public/2002/ws/desc/test-suite/results/wsdl-xslt/wsdl-component-model.xslt,v
retrieving revision 1.19
retrieving revision 1.20
diff -C 2 -d -r1.19 -r1.20
*** wsdl-component-model.xslt	17 Nov 2006 23:37:10 -0000	1.19
--- wsdl-component-model.xslt	18 Nov 2006 00:52:48 -0000	1.20
***************
*** 757,762 ****
              </xsl:if>
              <base:parent ref="{generate-id($parent)}"/>
!             <xsl:variable name="bindings" select="$all-bindings[@name=substring-after(current()/@binding,':')][ancestor::wsdl:description/@targetNamespace=current()/namespace::*[local-name()=substring-before(current()/@binding,':')]]"/>
!             <xsl:if test="$bindings[@type='http://www.w3.org/2006/01/wsdl/http']">
                  <httpcm:httpEndpointExtension>
                      <xsl:if test="@whttp:authenticationRealm">
--- 757,764 ----
              </xsl:if>
              <base:parent ref="{generate-id($parent)}"/>
!             <xsl:variable name="this-binding" select="@binding"/>
!             <xsl:variable name="this-namespace" select="namespace::*[local-name()=substring-before($this-binding,':')]"/>
!             <xsl:variable name="binding" select="$all-bindings[@name=substring-after($this-binding,':')][ancestor::wsdl:description/@targetNamespace=$this-namespace]"/>
!             <xsl:if test="$binding[@type='http://www.w3.org/2006/01/wsdl/http']">
                  <httpcm:httpEndpointExtension>
                      <xsl:if test="@whttp:authenticationRealm">
***************
*** 772,776 ****
                  </httpcm:httpEndpointExtension>
          	</xsl:if>
!             <xsl:if test="$bindings[@type='http://www.w3.org/2006/01/wsdl/soap' and @wsoap:protocol='http://www.w3.org/2003/05/soap/bindings/HTTP/']">
                  <soapcm:soapEndpointExtension>
                      <xsl:if test="@whttp:authenticationRealm">
--- 774,781 ----
                  </httpcm:httpEndpointExtension>
          	</xsl:if>
!             <xsl:if test="$binding[@type='http://www.w3.org/2006/01/wsdl/soap' and (
!                     (@wsoap:protocol='http://www.w3.org/2003/05/soap/bindings/HTTP/') or
!                     (@wsoap:version='1.1' and @wsoap:protocol='http://www.w3.org/2006/01/soap11/bindings/HTTP/')
!                     )]">
                  <soapcm:soapEndpointExtension>
                      <xsl:if test="@whttp:authenticationRealm">

Received on Saturday, 18 November 2006 00:52:56 UTC