Re: [soapbuilders] Dave says: Tell me what to write
by Fredrik Lundh other posts by this author
Apr 2 2001 7:13AM messages near this date
RE: [soapbuilders] Re: The Interop tests and BDG (was : some questions/observations re: BDG)
|
Re: [soapbuilders] Re: The ebXML use of SOAP-ENV:mustUnderstand
simon wrote:
> Its important to note that the first part of the arrayType value is a
> XML QName
make that "qualified name (an namespace prefix followed by the local part)"
> and should be treated as such, in particular you should ensure that
> the namespace prefix has been declared
"and that you're using the actual namespace URI, not the prefix,
when looking up the data type."
> e.g. given an array defined as
> <names SOAP-ENC:arrayType="xsd:string[1]">
> <item>Simon</item>
> </names>
>
> you should check that namespace prefix 'xsd' has been declared
> somewhere in the request document.
where "xsd" may be name, of course, as long as it maps
to http://schemas.xmlsoap.org/soap/encoding/
Cheers /F
|