@ JJD я вижу, вы оставили мне сообщение в здесь
У меня есть встреча через некоторое время, но я взглянул на ваш вопрос и был бы рад помочь как можно больше.Я вижу, у вас есть проблемы с чтением определения схемы.у вас есть это определение ws, связанное одно внутри другого, поэтому оно вас смутило, читая его:
Если вы продолжите: http://schemas.opengis.net/wfs/1.1.0/wfs.xsd
, возьмите метод "GetCapabilities" и давайте прочитаем его вопределение веб-службы:
PS: я не проверял это, но:
Теперь у вас есть запрос GetCapabilities:
<!-- REQUEST -->
<xsd:element name="GetCapabilities" type="wfs:GetCapabilitiesType"/>
<xsd:complexType name="GetCapabilitiesType">
<xsd:annotation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ows:GetCapabilitiesType">
<xsd:attribute name="service" type="ows:ServiceType" use="optional" default="WFS"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
GetCapabilities имеет сложный тип типа: GetCapabilitiesType, который вы найдете в одной из ссылок xsd на этой странице, точно "owsGetCapabilities.xsd"
-> после его открытия, т. Е.: http://schemas.opengis.net/ows/1.0.0/owsGetCapabilities.xsd
Вы найдете это определение сложного типа:
<complexType name="GetCapabilitiesType">
<annotation>
<documentation>
XML encoded GetCapabilities operation request. This operation
allows clients to retrieve service metadata about a specific service instance.
In this XML encoding, no "request" parameter is included, since the element name
specifies the specific operation. This base type shall be extended by each specific
OWS to include the additional required "service" attribute, with the correct value for that OWS.
</documentation>
</annotation>
<sequence>
<element name="AcceptVersions" type="ows:AcceptVersionsType" minOccurs="0">
<annotation>
<documentation>When omitted, server shall return latest supported version.
</documentation>
</annotation>
</element>
<element name="Sections" type="ows:SectionsType" minOccurs="0">
<annotation>
<documentation>
When omitted or not supported by server,
server shall return complete service metadata (Capabilities) document.
</documentation>
</annotation>
</element>
<element name="AcceptFormats" type="ows:AcceptFormatsType" minOccurs="0">
<annotation>
<documentation>
When omitted or not supported by server, server shall return service metadata
document using the MIME type "text/xml".
</documentation>
</annotation>
</element>
</sequence>
<attribute name="updateSequence" type="ows:UpdateSequenceType" use="optional">
<annotation>
<documentation>
When omitted or not supported by server,
server shall return latest complete service
metadata document.
</documentation>
</annotation>
</attribute>
</complexType>
Теперь этот GetCapabilitiesType имеет элементы / атрибуты:
name = "AcceptVersions" типа = "ows: AcceptVersionsType "и minOccurs =" 0 ", т. Е. Могут иметь значение null name =" Sections "типа =" ows: SectionsType "и minOccurs = "0", т. е. может иметь значение null name = "AcceptFormats" типа = "ows: AcceptFormatsType" и minOccurs = "0", т. е. может иметь значение null name = "updateSequence" типа = "ows: UpdateSequenceType", и это необязательно-> use = "необязательный"
Где найти определения этих атрибутов?
-> на этой же странице у вас есть: AcceptVersionsType is:
<complexType name="AcceptVersionsType">
<annotation>
<documentation>
Prioritized sequence of one or more specification versions accepted by client, with preferred versions listed first. See Version negotiation subclause for more information.
</documentation>
</annotation>
<sequence>
<element name="Version" type="ows:VersionType" maxOccurs="unbounded"/>
</sequence>
</complexType>
, поэтому AcceptVersionsType имеет элемент типа: VersionType можно найти по адресу xsd owsOperationsMetadata.xsd (который находится по той же ссылке на этой странице), и на нем у вас есть xsd: owsCommon.xsd thisэто где VersionType найден, то есть : http://schemas.opengis.net/ows/1.0.0/owsCommon.xsd
<simpleType name="VersionType">
<annotation>
<documentation>Specification version for OWS operation. The string value shall contain one x.y.z "version" value (e.g., "2.1.3"). A version number shall contain three non-negative integers separated by decimal points, in the form "x.y.z". The integers y and z shall not exceed 99. Each version shall be for the Implementation Specification (document) and the associated XML Schemas to which requested operations will conform. An Implementation Specification version normally specifies XML Schemas against which an XML encoded operation response must conform and should be validated. See Version negotiation subclause for more information. </documentation>
</annotation>
<restriction base="string"/>
</simpleType>
, а sectionType:
<complexType name="SectionsType">
<annotation>
<documentation>
Unordered list of zero or more names of requested sections in complete service metadata document. Each Section value shall contain an allowed section name as specified by each OWS specification. See Sections parameter subclause for more information.
</documentation>
</annotation>
<sequence>
<element name="Section" type="string" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
(SectionsType имеет элемент простого типа String)
И AcceptFormatsType:
<complexType name="AcceptFormatsType">
<annotation>
<documentation>
Prioritized sequence of zero or more GetCapabilities operation response formats desired by client, with preferred formats listed first. Each response format shall be identified by its MIME type. See AcceptFormats parameter use subclause for more information.
</documentation>
</annotation>
<sequence>
<element name="OutputFormat" type="ows:MimeType" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
(AcceptFormatsType имеет элемент типа MimeType, который находится в том же месте, что и VersionType, т. Е.: http://schemas.opengis.net/ows/1.0.0/owsCommon.xsd
<simpleType name="MimeType">
<annotation>
<documentation>XML encoded identifier of a standard MIME type, possibly a parameterized MIME type. </documentation>
</annotation>
<restriction base="string">
<pattern value="(application|audio|image|text|video|message|multipart|model)/.+(;s*.+=.+)*"/>
</restriction>
</simpleType>
и UpdateSequenceType (этопростой тип, не сложный тип):
<simpleType name="UpdateSequenceType">
<annotation>
<documentation>
Service metadata document version, having values that are "increased" whenever any change is made in service metadata document. Values are selected by each server, and are always opaque to clients. See updateSequence parameter use subclause for more information.
</documentation>
</annotation>
<restriction base="string"/>
</simpleType>
(UpdateSequenceType - простой тип)
Теперь я надеюсь, что стало понятнее, как читать схему.Теперь сложный тип означает объект в отличие от простого типа (например, int).Когда у вас есть сложные типы, и вы используете ksoap2, вы должны создать локальные представления в классах (объектах), которые реализуют kvmSerializable (интерфейс сериализации ksoap2).
Теперь вы можете прочитать мои ответы, чтобы узнать, каксделать это на: Link1 , link2 , link3 .Я написал некоторые детали, которые помогут вам понять, как начать кодирование.
Я не буду на моем компьютере в течение дня.Надеюсь, что это поможет, дайте мне знать, если что-нибудь из того, что я сказал, неоднозначно.