| 1 |
= ToDo |
|---|
| 2 |
|
|---|
| 3 |
* <xsd:list> of <xsd:simpleType> |
|---|
| 4 |
<xsd:complexType name="PurchaseOrderType"> |
|---|
| 5 |
<xsd:sequence> |
|---|
| 6 |
<xsd:element name="ShipTo" type="tns:USAddress" maxOccurs="2"/> |
|---|
| 7 |
<xsd:element name="BillTo" type="tns:USAddress"/> |
|---|
| 8 |
<xsd:element name="Items" type="tns:ItemsList"/> |
|---|
| 9 |
</xsd:sequence> |
|---|
| 10 |
<xsd:attribute name="OrderDate" type="xsd:date"/> |
|---|
| 11 |
</xsd:complexType> |
|---|
| 12 |
|
|---|
| 13 |
<xsd:simpleType name="ItemsList"> |
|---|
| 14 |
<xsd:list> |
|---|
| 15 |
<xsd:simpleType> |
|---|
| 16 |
<xsd:restriction base="xsd:string"> |
|---|
| 17 |
<xsd:enumeration value="I001"/> |
|---|
| 18 |
<xsd:enumeration value="I002"/> |
|---|
| 19 |
<xsd:enumeration value="I003"/> |
|---|
| 20 |
<xsd:enumeration value="I004"/> |
|---|
| 21 |
<xsd:enumeration value="I005"/> |
|---|
| 22 |
<xsd:enumeration value="I006"/> |
|---|
| 23 |
</xsd:restriction> |
|---|
| 24 |
</xsd:simpleType> |
|---|
| 25 |
</xsd:list> |
|---|
| 26 |
</xsd:simpleType> |
|---|
| 27 |
|
|---|
| 28 |
=> |
|---|
| 29 |
|
|---|
| 30 |
<Items>I001 I002 I003 </Items> |
|---|
| 31 |
|
|---|
| 32 |
* <xsd:union> of <xsd:simpleType> |
|---|
| 33 |
<xsd:simpleType name="zipUnion"> |
|---|
| 34 |
<xsd:union memberTypes="tns:stateType tns:zipIntType"/> |
|---|
| 35 |
</xsd:simpleType> |
|---|
| 36 |
<xsd:element name="zip" type="tns:zipUnion"/> |
|---|
| 37 |
|
|---|
| 38 |
* <xsd:extension> |
|---|
| 39 |
|
|---|
| 40 |
* session scope (with HTTP-Cookies) SOAP servant. |
|---|
| 41 |
* SOAP/1.2 support. |
|---|
| 42 |
* wsdl2ruby qualified element support; needed? |
|---|
| 43 |
* wsdlRouter: return value must be converted to the specified element name, |
|---|
| 44 |
not "fooResponse" style. |
|---|
| 45 |
* Support all derived built-in types in XML Schema Part2 Sec. 3.2. |
|---|
| 46 |
* normalizedString, token, language, NMTOKEN, NMTOKENS, Name, NCName, ID, |
|---|
| 47 |
IDREF, IDREFS, ENTITY, ENTITIES |
|---|
| 48 |
|
|---|
| 49 |
* WSDL Strict check; order of sequence, unbound, etc. |
|---|
| 50 |
* WSDL ref support |
|---|
| 51 |
�q���v�f��肷�����́A�V���ɐ錾�������ƁA |
|---|
| 52 |
���v�f��Ƃ��������������B���v�f���Ƃ����́A |
|---|
| 53 |
ref������p���܂� |
|---|
| 54 |
* Parse XML Namespace with xmlscan, not by itself. |
|---|
| 55 |
* Support actor. |
|---|