Possible bug: WSDL 1.1 validation
Posted: Wed Nov 16, 2011 5:53 pm
Hi,
I already posted potential validation bug regarding WSDL. I already reported bug at http://www.oxygenxml.com/forum/topic6395.html which seems to be fixed in version 13.
I explored another bug or feature to be implemented in new versions.
Situation is following. I have this piece of code in WSDL document:
It is OK in the first look, but there is "Case object name error":
Both names schould be same in WSDL file as soon as abstract definition in portType area becomes concrete at binding area, so these operations are referencing same object.
Best regards,
Ladislav
I already posted potential validation bug regarding WSDL. I already reported bug at http://www.oxygenxml.com/forum/topic6395.html which seems to be fixed in version 13.
I explored another bug or feature to be implemented in new versions.
Situation is following. I have this piece of code in WSDL document:
Code: Select all
<portType name="ZavodyVRoceBS">
<operation name="getZavodyVRoce">
<input message="bs:ZavodyVRoceReqMsg"/>
<output message="bs:ZavodyVRoceRespMsg"/>
</operation>
</portType>
<binding name="ZavodyVRoceBSSOAP11Binding" type="bs:ZavodyVRoceBS">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="GetZavodyVRoce">
<soap:operation style="document" soapAction="http://xmlns.lesycr.cz/BS/ZavodyVRoce/V1/GetZavodyVRoce"/>
<input>
<soap:body use="literal" parts="ZavodyVRoceListDM"/>
</input>
<output>
<soap:body use="literal" parts="ZavodyVRoceRespDM"/>
</output>
</operation>
</binding>
It is OK in the first look, but there is "Case object name error":
Code: Select all
<portType name="ZavodyVRoceBS">
<operation name="getZavodyVRoce"> starts with small letter
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="GetZavodyVRoce"> but here it starts with big one
Best regards,
Ladislav
