0

私のXSDは次のとおりです。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="AppRegisterConfig">
    <xs:sequence>
        <xs:element name="restServiceUrl" type="xs:string" />
        <xs:element name="timeout" type="xs:int" />
        <xs:element name="attempts" type="xs:int" />
    </xs:sequence>
</xs:complexType>

私のXMLは以下の通りです:

<?xml version="1.0" encoding="UTF-8"?>
<appregister-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:noNamespaceSchemaLocation="appregister-config.xsd">

  <restServiceUrl><url>url 1</url></restServiceUrl>
  <timeout>15000</timeout>
  <attempts>5</attempts>  
</appregister-config>  

私が見逃したかもしれない何か考えはありますか?

4

1 に答える 1