idltowsdl tool generates the incorrect schematype for a typedef sequence 
<otctet> 
----------------------------------------------------------------------------------

                 Key: YOKO-369
                 URL: https://issues.apache.org/jira/browse/YOKO-369
             Project: Yoko - CORBA Server
          Issue Type: Bug
          Components: Idl2Wsdl
            Reporter: Edell Nolan
         Assigned To: Edell Nolan


The idltowsdl tool fails to generate the correct types for 

typedef octet TpOctet;
typedef sequence <TpOctet> TpOctetSet; Artix 5.0 idltowsdl 

It generates 

<xs:complexType name="TpOctetSet">
    <xs:sequence>
     <xs:element maxOccurs="unbounded" minOccurs="0" name="item" 
type="xs:unsignedByte">
     </xs:element>
    </xs:sequence>
 </xs:complexType>

and it should generate by default without -s option

<xs:complexType name="TpOctetSet">
    <xs:sequence>
     <xs:element name="base64Data" type="xs:base64Binary">
     </xs:element>
    </xs:sequence>
 </xs:complexType>

cheers, Edell.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to