1

私のスキーマは次のとおりです。

 <xsd:element name="SetMonitor">
    <xsd:complexType>
        <xsd:sequence>
            <xsd:element name="period" type="xsd:long" />
            <xsd:element name="refreshrate" type="xsd:long" />
        </xsd:sequence>
    </xsd:complexType>
</xsd:element>

そして私のxmlは次のようになります:

ケース1。

<SetMonitor
    xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:cb="http://schemas.cordys.com/1.0/coboc">
    <period/>
    <refreshrate/>
</SetMonitor>

または ケース 2。

 <SetMonitor
        xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:cb="http://schemas.cordys.com/1.0/coboc">
        <period>10</period>
        <refreshrate>20</refreshrate>
    </SetMonitor>

ケース 2の場合、問題はありません。しかし、ケース 1の場合、次のエラーが発生します。

Caused by: org.xml.sax.SAXException: cvc-datatype-valid.1.2.1: '' is not a valid value for 'integer'.
org.xml.sax.SAXParseException; lineNumber: 6; columnNumber: 14; cvc-datatype-valid.1.2.1: '' is not a valid value for 'integer'.

ケース 1ケース 2の両方を受け入れるように wsdl を変更するにはどうすればよいですか? 助けてください。

4

1 に答える 1