Issue 12762: 8.1.1.17 The XML schema for GetConfigResponse uses an undefined ConfigResul (gems-ftf) Source: Amergint Technologies (Mr. Rob Andzik, andzik(at)amergint.com) Nature: Uncategorized Issue Severity: Summary: There is no type defined for ConfigResult in either the PSM or the PIM. This is meant to be the result_description Resolution: The 'ConfigResult' type is really meant to be the 'result_description' defined in the base 'ResponseMessageType' in section 7.1.1.19. Revised Text: In section 7.1.1.19 the schema definition has been modified. Before <!-- Define a GetConfigResponseType --> <xsd:complexType name="GetConfigResponseType"> <xsd:complexContent> <xsd:restriction base="MessageType"> <xsd:sequence> <xsd:element name="Parameter" type="Parameter" minOccurs="0" maxOccurs="unbounded"/> <!-- 0 or more Parameters --> <xsd:element name="ParameterSet" type="ParameterSet" minOccurs="0" maxOccurs="unbounded"/> <!-- 0 or more ParameterSet --> <xsd:element name="result" type="ConfigResult"/> </xsd:sequence> </xsd:restriction> </xsd:complexContent> </xsd:complexType> <!-- Define a GetConfigResponse --> <xsd:element name="GetConfigResponse" type="GetConfigResponseType"/> After <!-- Define a GetConfigResponseType --> <xsd:complexType name="GetConfigResponseType"> <xsd:extension base="ResponseMessageType"> <xsd:sequence> <xsd:element name="Parameter" type="Parameter" minOccurs="0" maxOccurs="unbounded"/> <!-- 0 or more Parameters --> <xsd:element name="ParameterSet" type="ParameterSet" minOccurs="0" maxOccurs="unbounded"/> <!-- 0 or more ParameterSet --> <xsd:element name="result" type="ConfigResult"/> </xsd:sequence> </xsd:extension> </xsd:complexType> <!-- Define a GetConfigResponse --> <xsd:element name="GetConfigResponse" type="GetConfigResponseType"/> Actions taken: August 8, 2008: received issue April 30, 2009: closed issue Discussion: End of Annotations:===== ssues submitted by From: "Rob Andzik" This is issue # 12762 8.1.1.17 The XML schema for GetConfigResponse uses an undefined ConfigResult There is no type defined for ConfigResult in either the PSM or the PIM. This is meant to be the result_description