我从供应商那里收到了这个模式,并试图弄清楚它里面有什么。
<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>