After extracting yesterday's trunk, I'm seeing two compile errors in a 
generated WsResourceProxy.  These are due to differences in the return types in 
the destroy and getMultipleResourceProperties methods.  The generated code 
returns Element for both.  The superclass WsResourceClient, however, has void 
for destroy and Element[] for getMultipleResourceProperties.

I think I can see how the destroy proxy code generated from the 
WS-ResourceLifetime-1_2.xsd would be an Element:

       <xsd:element name="DestroyResponse">
               <xsd:complexType />
       </xsd:element>

And from WS-ResourceProperties-1_2.xsd, also an Element:

  <xsd:element name="GetMultipleResourcePropertiesResponse">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:any  minOccurs="0" maxOccurs="unbounded" />
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>

Is anyone else seeing these compile errors?  The project WSDL is the sample 
supplied with the tutorial.

Reply via email to