exceptions_1_3_0.xsd
上传用户:sex100000
上传日期:2013-11-09
资源大小:1377k
文件大小:1k
源码类别:

GIS编程

开发平台:

C#

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsd:schema
  3.     targetNamespace="http://www.opengis.net/ogc"
  4.     xmlns:ogc="http://www.opengis.net/ogc"
  5.     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  6.     elementFormDefault="qualified">
  7.     <xsd:element name="ServiceExceptionReport">
  8.        <xsd:complexType>
  9.           <xsd:sequence>
  10.              <xsd:element name="ServiceException"
  11.                           type="ogc:ServiceExceptionType"
  12.                           minOccurs="0" maxOccurs="unbounded"/>
  13.           </xsd:sequence>
  14.           <xsd:attribute name="version" type="xsd:string" fixed="1.3.0"/>
  15.        </xsd:complexType>
  16.     </xsd:element>
  17.     <xsd:complexType name="ServiceExceptionType">
  18.        <xsd:simpleContent>
  19.           <xsd:extension base="xsd:string">
  20.              <xsd:attribute name="code" type="xsd:string"/>
  21.              <xsd:attribute name="locator" type="xsd:string"/>
  22.           </xsd:extension>
  23.        </xsd:simpleContent>
  24.     </xsd:complexType>
  25. </xsd:schema>