Issue 6634: The section "Typedef" needs an example with a no basic type (wsdlcorba-rtf) Source: (, ) Nature: Clarification Severity: Minor Summary: The section "Typedef" needs an example with a no basic type, like following : // IDL struct S { long dummy; }; typedef S S_t; // XSD <xsd:complexType name="S"> <xsd:sequence> <xsd:element name="dummy" type="xsd:int" maxOccurs="1" minOccurs="1" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="S_t"> <xsd:complexContent> <xsd:restriction base="tns:S"> <xsd:sequence> <xsd:element name="dummy" type="xsd:int" maxOccurs="1" minOccurs="1" /> </xsd:sequence> </xsd:restriction> </xsd:complexContent> </xsd:complexType> Resolution: Add the proposed example to the revision text Revised Text: Add the following example to section 1.2.7.3: " // IDL struct S { long dummy; }; typedef S S_t; // XSD <xsd:complexType name="S"> xsd:sequence> xsd:element name="dummy" type="xsd:int" maxOccurs="1" minOccurs="1" /> /xsd:sequence> </xsd:complexType> <xsd:complexType name="S_t"> xsd:complexContent> xsd:restriction base="tns:S"> xsd:sequence> xsd:element name="dummy" type="xsd:int" maxOccurs="1" minOccurs="1" /> /xsd:sequence> /xsd:restriction> /xsd:complexContent> </xsd:complexType> " Actions taken: November 20, 2003: received issue March 10, 2005: closed issue Discussion: End of Annotations:===== m: webmaster@omg.org Date: 20 Nov 2003 02:56:39 -0500 To: Subject: Issue/Bug Report -------------------------------------------------------------------------------- Name: Francois PERRAD Company: - mailFrom: francois.perrad@gadz.org Notification: Yes Specification: CORBA to WSDL/SOAP Interworking Specification Section: 1.2.7.3 FormalNumber: 03-11-02 Version: 1.0 RevisionDate: 11/02/2003 Page: 1-9 Nature: Clarification Severity: Minor HTTP User Agent: Mozilla/4.79 [en] (Windows NT 5.0; U) Description The section "Typedef" needs an example with a no basic type, like following : // IDL struct S { long dummy; }; typedef S S_t; // XSD