- From: Jonathan Marsh via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 02 Jan 2007 18:53:52 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/test-suite/documents/good/MessageTest-3G
In directory hutz:/tmp/cvs-serv15130/test-suite/documents/good/MessageTest-3G
Modified Files:
HTTPservice.wsdl
Log Message:
1) LocationTemplate-1G. Removed the “#” characters from the whttp:location on the “Escape” binding. These aren’t legal at this spot in a URI. And there isn’t a requirement they be escaped during the templating algorithm, so they aren’t testing anything and preventing the wsdlcm from having a valid anyURI for the {http location} property.
2) MessageTest-2G. Augmented each whttp:location attribute to start with the name of the operation. Without some kind of unique whttp:location, operation dispatch in Axis doesn’t work. I’ll send a new issue describing the limitations of this shortly.
3) MessageTest-3G. Added whttp:location attributes on each Binding Operation, with a value equal to the operation name. Because unique whttp:location attributes are needed by Axis2, generic http bindings are not possible, so I added minimally-defined operations to the SafeEchoHTTPBinding.
4) Added Dashboard.html task to the build file.
5) Updated Baselines and regenerated results.
Index: HTTPservice.wsdl
===================================================================
RCS file: /sources/public/2002/ws/desc/test-suite/documents/good/MessageTest-3G/HTTPservice.wsdl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C 2 -d -r1.7 -r1.8
*** HTTPservice.wsdl 13 Dec 2006 19:15:38 -0000 1.7
--- HTTPservice.wsdl 2 Jan 2007 18:53:50 -0000 1.8
***************
*** 81,89 ****
<whttp:header name="X-WSDLTestHeader" type="xs:string" required="true"/>
</fault>
! <operation ref="tns:EchoString">
<input />
<output />
</operation>
! <operation ref="tns:EchoName" whttp:method="POST">
<input>
<whttp:header name="X-WSDLTestHeader" type="xs:string" required="true"/>
--- 81,89 ----
<whttp:header name="X-WSDLTestHeader" type="xs:string" required="true"/>
</fault>
! <operation ref="tns:EchoString" whttp:location="EchoString">
<input />
<output />
</operation>
! <operation ref="tns:EchoName" whttp:method="POST" whttp:location="EchoName">
<input>
<whttp:header name="X-WSDLTestHeader" type="xs:string" required="true"/>
***************
*** 94,107 ****
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:EchoNameExpectFault" whttp:method="DELETE">
<input />
<output />
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:Send"
! whttp:method="GET">
<input />
</operation>
! <operation ref="tns:GuaranteedFault">
<input/>
<outfault ref="tns:EchoNameFault" />
--- 94,106 ----
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:EchoNameExpectFault" whttp:method="DELETE" whttp:location="EchoNameExpectFault">
<input />
<output />
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:Send" whttp:method="GET" whttp:location="Send">
<input />
</operation>
! <operation ref="tns:GuaranteedFault" whttp:location="GuaranteedFault">
<input/>
<outfault ref="tns:EchoNameFault" />
***************
*** 115,136 ****
</documentation>
<fault ref="tns:EchoNameFault" whttp:transferCoding=""/>
! <operation ref="tns:EchoString" whttp:transferCodingDefault="">
<input />
<output />
</operation>
! <operation ref="tns:EchoName" whttp:transferCodingDefault="gzip"> <!-- gzip should never be used -->
<input whttp:transferCodingDefault=""/>
<output whttp:transferCodingDefault=""/>
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:EchoNameExpectFault" whttp:transferCodingDefault="">
<input whttp:transferCodingDefault="gzip"/>
<output whttp:transferCodingDefault="gzip"/>
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:Send" whttp:transferCodingDefault="">
<input />
</operation>
! <operation ref="tns:GuaranteedFault">
<input/>
<outfault ref="tns:EchoNameFault" />
--- 114,135 ----
</documentation>
<fault ref="tns:EchoNameFault" whttp:transferCoding=""/>
! <operation ref="tns:EchoString" whttp:transferCodingDefault="" whttp:location="EchoString">
<input />
<output />
</operation>
! <operation ref="tns:EchoName" whttp:transferCodingDefault="gzip" whttp:location="EchoName"> <!-- gzip should never be used -->
<input whttp:transferCodingDefault=""/>
<output whttp:transferCodingDefault=""/>
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:EchoNameExpectFault" whttp:transferCodingDefault="" whttp:location="EchoNameExpectFault">
<input whttp:transferCodingDefault="gzip"/>
<output whttp:transferCodingDefault="gzip"/>
<outfault ref="tns:EchoNameFault" />
</operation>
! <operation ref="tns:Send" whttp:transferCodingDefault="" whttp:location="Send">
<input />
</operation>
! <operation ref="tns:GuaranteedFault" whttp:location="GuaranteedFault">
<input/>
<outfault ref="tns:EchoNameFault" />
***************
*** 138,145 ****
</binding>
! <binding name="SafeEchoHTTPBinding" type="http://www.w3.org/2006/01/wsdl/http">
<documentation>
! This is a generic binding, testing wsdlx:safe's impact on the HTTP method.
</documentation>
</binding>
--- 137,150 ----
</binding>
! <binding name="SafeEchoHTTPBinding" interface="tns:Echo" type="http://www.w3.org/2006/01/wsdl/http">
<documentation>
! This binding tests wsdlx:safe's impact on the HTTP method.
</documentation>
+ <fault ref="tns:EchoNameFault"/>
+ <operation ref="tns:EchoString" whttp:location="EchoString"/>
+ <operation ref="tns:EchoName" whttp:location="EchoName"/>
+ <operation ref="tns:EchoNameExpectFault" whttp:location="EchoNameExpectFault"/>
+ <operation ref="tns:Send" whttp:location="Send"/>
+ <operation ref="tns:GuaranteedFault" whttp:location="GuaranteedFault"/>
</binding>
Received on Tuesday, 2 January 2007 18:55:09 UTC