私はこのスキーマをベンダーから受け取り、内部に何が入るかを調べようとしています。
<schema targetNamespace="http://abc.com:9080/product/services/12WebService/types/" xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<element name="Message">
<complexType>
<sequence>
<any minOccurs="0"/>
</sequence>
</complexType>
</element>
</schema>
<types:Message>
以下のサンプルの要素内に合法的に何を入れることができますか。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:types="http://abc.com:9080/product/services/12WebService/types/">
<soapenv:Header/>
<soapenv:Body>
<types:Message>
<!-- What can go here -->
</types:Message>
</soapenv:Body>
</soapenv:Envelope>