Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Ticket #3 (closed enhancement: fixed)

Opened 4 years ago

Last modified 3 years ago

<xsd:list> of <xsd:simpleType>

Reported by: nahi <nakahiro@gmail.com> Assigned to: nahi
Priority: high Milestone: 1.5.6
Component: wsdl4r Version: 1.5
Keywords: Cc:

Description

    <xsd:complexType name="PurchaseOrderType">
      <xsd:sequence>
      <xsd:element name="ShipTo" type="tns:USAddress" maxOccurs="2"/>
      <xsd:element name="BillTo" type="tns:USAddress"/>
      <xsd:element name="Items" type="tns:ItemsList"/>
      </xsd:sequence>
      <xsd:attribute name="OrderDate" type="xsd:date"/>
    </xsd:complexType>

    <xsd:simpleType name="ItemsList">
      <xsd:list>
          <xsd:simpleType>
            <xsd:restriction base="xsd:string">
                <xsd:enumeration value="I001"/>
                <xsd:enumeration value="I002"/>
                <xsd:enumeration value="I003"/>
                <xsd:enumeration value="I004"/>
                <xsd:enumeration value="I005"/>
                <xsd:enumeration value="I006"/>
            </xsd:restriction>
          </xsd:simpleType>
      </xsd:list>
    </xsd:simpleType>

  =>

    <Items>I001 I002 I003 </Items>

Change History

12/05/04 22:07:09 changed by nahi <nakahiro@gmail.com>

  • owner changed from nahi to anonymous.
  • status changed from new to assigned.
  • severity changed from normal to trivial.

12/05/04 22:42:55 changed by nahi <nakahiro@gmail.com>

  • owner changed from anonymous to nahi.
  • status changed from assigned to new.

12/13/04 23:39:58 changed by nahi <nakahiro@gmail.com>

  • milestone changed from undefined to 1.5.3.

04/17/05 00:54:10 changed by nahi

  • priority changed from normal to low.
  • milestone changed from 1.5.4 to 1.5.5.

delay

07/22/05 17:26:37 changed by nahi

  • priority changed from low to normal.

09/12/05 20:51:30 changed by nahi

  • type changed from defect to enhancement.
  • milestone changed from 1.5.5 to undefined.

09/17/05 06:15:24 changed by nahi

  • type changed from enhancement to defect.
  • milestone changed from undefined to 1.5.6.

09/17/05 06:15:39 changed by nahi

  • severity changed from trivial to major.

09/23/05 13:14:22 changed by nahi

  • type changed from defect to enhancement.

10/31/05 20:08:32 changed by nahi

  • priority changed from normal to high.

11/03/05 09:55:41 changed by nahi

  • status changed from new to closed.
  • resolution set to fixed.

(In [1660]) added support of <list> of <simpleType>. closes #3.