请教下各位大侠,sequence中定义的元素,在XML中可以多次出现吗,
例如:
我定义的
  <xs:element name="HTTP">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="IP"/>
        <xs:element ref="PP"/>
        <xs:element minOccurs="0" ref="Credentials"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>XML里如果多个IP配置可以吗??? 求解答
<?xml version="1.0" encoding="UTF-8"?>  <!-- IP addresses to the port 43 service -->
  <Port43>
    <IP>192.0.2.1</IP>
    <IP>192.0.2.1</IP>
    <pp>2001:D8::1</pp>
  </Port43>
  <HTTP>
    <IP>192.0.2.2</IP>
    <pp>2001:DB8::2pp>
xmlserviceencodingcredentials