2004-01-06 00:44:01 +08:00
|
|
|
General
|
|
|
|
-------
|
|
|
|
- rename soapobject to soapclient
|
|
|
|
- make sure soapserver.map(), soap_encode_to_xml() and soap_encode_to_zval() are really need
|
2004-01-15 16:38:14 +08:00
|
|
|
- reimplement SoapObject::__getfunctions() and SoapObject::__gettypes()
|
|
|
|
to return structures instead of strings
|
2004-01-29 14:37:51 +08:00
|
|
|
- memory leaks (libxml and WSDL/Schema use malloc to cache WSDL)
|
|
|
|
|
2002-07-08 07:03:43 +08:00
|
|
|
|
2004-01-06 00:44:01 +08:00
|
|
|
SOAP
|
|
|
|
----
|
2004-02-04 22:46:12 +08:00
|
|
|
+ support for SOAP headers
|
2004-02-03 00:19:39 +08:00
|
|
|
? actor attribute
|
2004-02-04 22:46:12 +08:00
|
|
|
+ mustUnderstend attribute
|
|
|
|
- SOAP routing
|
2004-01-26 17:51:07 +08:00
|
|
|
- root attribute
|
2004-01-06 00:44:01 +08:00
|
|
|
- make sure soap 1.1 and 1.2 are supported fully
|
2003-02-26 11:04:00 +08:00
|
|
|
|
2004-01-06 00:44:01 +08:00
|
|
|
Encoding
|
|
|
|
--------
|
2004-01-22 23:58:03 +08:00
|
|
|
? full support for standard simple types (
|
2004-01-15 16:38:14 +08:00
|
|
|
? language, (pattern: "[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*")
|
|
|
|
? NMTOKEN, (pattern: "\c+") (\c: [a-zA-Z0-9.\-_:])
|
|
|
|
? NMTOKENS, (list: NMTOKEN, minLength: 1)
|
|
|
|
? Name, (pattern: "\i\c*") (\i: [a-zA-Z_:]
|
|
|
|
? NCName, (pattern: "[\i-[:]][\c-[:]]*")
|
|
|
|
? ID, (base: NCName)
|
|
|
|
? IDREF, (base: NCName)
|
2004-01-29 23:11:16 +08:00
|
|
|
? IDREFS, (list: IDREF; minLength: 1)
|
2004-01-15 16:38:14 +08:00
|
|
|
? ENTITY, (base: NCName)
|
2004-01-29 23:11:16 +08:00
|
|
|
? ENTITIES, (list: ENTITY; minLength: 1)
|
2004-01-29 14:37:51 +08:00
|
|
|
? duration)
|
2004-01-22 23:58:03 +08:00
|
|
|
? full support for standard date/time types (
|
2004-01-06 00:44:01 +08:00
|
|
|
? dateTime,
|
|
|
|
? time,
|
|
|
|
? date,
|
|
|
|
? gYearMonth,
|
|
|
|
? gYear,
|
|
|
|
? gMonthDay,
|
|
|
|
? gDay,
|
|
|
|
? gMonth)
|
|
|
|
? proper encoding of standard hexBinary type
|
|
|
|
? proper encoding of standard base64Binary type
|
2004-01-22 23:58:03 +08:00
|
|
|
? full support for arrays
|
2004-01-15 16:38:14 +08:00
|
|
|
- SOAP 1.1 encoding of arrays with holes (partially transmitted and sparse arrays)
|
|
|
|
SOAP 1.2 doesn't support partially transmitted and sparse arrays
|
2004-01-09 22:16:30 +08:00
|
|
|
- references to external resources
|
2004-01-16 20:31:10 +08:00
|
|
|
? support for "nillable" and "nil"
|
2004-01-27 18:23:20 +08:00
|
|
|
- default values of <element>
|
2004-01-06 00:44:01 +08:00
|
|
|
? provide schema 1999/2001 support???
|
|
|
|
? make internal refrences for soap encoding (use seralization logic)???
|
|
|
|
? provide user space overriding of serialization certin objects and types???
|
2003-02-26 11:04:00 +08:00
|
|
|
|
2004-01-06 00:44:01 +08:00
|
|
|
WSDL
|
|
|
|
----
|
2004-01-16 20:31:10 +08:00
|
|
|
- support for portType operation parameterOrder attribute
|
2004-01-22 23:58:03 +08:00
|
|
|
- support for binding operation input/output name attribute (part of overloading)
|
2004-01-16 20:31:10 +08:00
|
|
|
- support for <opperation> <fault>
|
2004-02-03 00:19:39 +08:00
|
|
|
? server part support for "document" style encoding
|
2004-01-16 20:31:10 +08:00
|
|
|
- function/method overloading/redeclaration (test(int); test(string))
|
|
|
|
- wsdl caching
|
|
|
|
- wsdl auto generation
|
|
|
|
? SOAP binding
|
|
|
|
- <soap:body> parts attribute
|
|
|
|
- <soap:fault>
|
2004-02-04 22:46:12 +08:00
|
|
|
- <soap:headerfault>
|
2004-01-16 20:31:10 +08:00
|
|
|
- HTTP GET/POST binding
|
|
|
|
- MIME binding
|
|
|
|
- SOAP 1.2 bindings???
|
|
|
|
|
|
|
|
Schema
|
|
|
|
------
|
2004-01-22 23:58:03 +08:00
|
|
|
- <redefine>
|
|
|
|
? support for user defined simple types
|
2004-01-21 00:30:38 +08:00
|
|
|
? restiction
|
2004-01-23 22:43:15 +08:00
|
|
|
? enumeration
|
|
|
|
? length (for string, anyURI, hexBinary, base64Binary and derived) list???
|
|
|
|
? minLength (for string, hexBinary, base64Binary and derived) list???
|
|
|
|
? maxLength (for string, hexBinary, base64Binary and derived) list???
|
2004-01-15 00:24:09 +08:00
|
|
|
+ whiteSpace (preserve, replace [#x9,#xA,#xD=>#x20], collapse [replace+?])
|
|
|
|
- pattern
|
2004-01-07 01:14:30 +08:00
|
|
|
- minExclusive (for numeric, date types)
|
|
|
|
- minInclusive (for numeric, date types)
|
|
|
|
- maxExclusive (for numeric, date types)
|
|
|
|
- maxInclusive (for numeric, date types)
|
|
|
|
- totalDigits (for decimal)
|
|
|
|
- fractionDigits (for decimal)
|
2004-01-21 00:30:38 +08:00
|
|
|
? union
|
2004-01-22 23:58:03 +08:00
|
|
|
? support for user defined complex types
|
|
|
|
? full support for content model encoding/decoding
|
2004-01-06 00:44:01 +08:00
|
|
|
|
|
|
|
Error Handling
|
|
|
|
--------------
|
|
|
|
- ???
|
|
|
|
|
|
|
|
Transport
|
|
|
|
---------
|
2004-01-09 22:16:30 +08:00
|
|
|
? HTTP status codes
|
2004-01-13 21:50:09 +08:00
|
|
|
? HTTP chunked Transfer-Encoding
|
2004-01-29 14:37:51 +08:00
|
|
|
- support for HTTP compression (gzip,x-gzip,defalte)
|
|
|
|
- transport abstraction layer???
|
2004-01-06 00:44:01 +08:00
|
|
|
|
|
|
|
UDDI
|
|
|
|
----
|
|
|
|
- ???
|
|
|
|
|
|
|
|
Interop Testing
|
|
|
|
---------------
|
|
|
|
- more rounds/groups
|
|
|
|
- ???
|