Re: [Rslib-talk] Return question
Status: Alpha
Brought to you by:
gweis
From: Gerhard W. <ger...@gm...> - 2009-02-22 02:39:24
|
Sorry, The WS-I BasicProfile is a bit more restrictive with SOAP-ENC:Array than I remember. (and I made a few other errors.) The WS-I BasicProfile says: R2110 In a DESCRIPTION, array declarations MUST NOT extend or restrict the soapenc:Array type. R2111 In a DESCRIPTION, array declarations MUST NOT use wsdl:arrayType attribute in the type declaration. R2112 In a DESCRIPTION, array declaration wrapper elements SHOULD NOT be named using the convention ArrayOfXXX. R2113 A MESSAGE containing serialized arrays MUST NOT include the soapenc:arrayType attribute. The WS-I compliant schema example should read: <xsd:complexType name="Common.StringSequence"> <xsd:complexContent> <xsd:sequence> <element name="item" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:restriction> </xsd:complexContent> </xsd:complexType> Cheers, Gerhard |