ezags-xsd 2.2.0.2 → 2.2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Gemfile CHANGED
@@ -3,4 +3,4 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in ezags-xsd.gemspec
4
4
  gemspec
5
5
 
6
- gem 'xml_schema_mapper', path: '../xml_schema_mapper'
6
+ gem 'xml_schema_mapper'
@@ -2,39 +2,14 @@
2
2
 
3
3
  class GetActRecordsRequestMapper
4
4
  include XmlSchemaMapper
5
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
5
+ schema File.expand_path('../../vendor/ezags-protocols/retro/GetResultsService.xsd', File.dirname(__FILE__))
6
6
  type 'GetActRecordsRequest'
7
7
 
8
- # Служебный блок атрибутов СМЭВ
9
- # @return [MessageTypeMapper]
8
+ # @return [String]
10
9
  # minOccurs: 1, maxOccurs: 1
11
- attr_accessor :message
12
- # @return [MessageDataMapper]
10
+ attr_accessor :task_id
11
+ # @return [SignatureTypeMapper]
13
12
  # minOccurs: 1, maxOccurs: 1
14
- attr_accessor :message_data
15
-
16
- class MessageData
17
- include XmlSchemaMapper
18
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
19
- annonymus_type 'GetActRecordsRequest::MessageData'
20
-
21
- # @return [AppDataMapper]
22
- # minOccurs: 1, maxOccurs: 1
23
- attr_accessor :app_data
24
- # Блок вложений
25
- # @return [AppDocumentTypeMapper]
26
- # minOccurs: 0, maxOccurs: 1
27
- attr_accessor :app_document
28
- end
29
-
30
- class MessageData::AppData
31
- include XmlSchemaMapper
32
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
33
- annonymus_type 'GetActRecordsRequest::MessageData::AppData'
34
-
35
- # @return [GetActRecordsRequestObjMapper]
36
- # minOccurs: 1, maxOccurs: 1
37
- attr_accessor :get_act_records_request_obj
38
- end
13
+ attr_accessor :signature
39
14
 
40
15
  end
@@ -2,39 +2,39 @@
2
2
 
3
3
  class GetActRecordsResponseMapper
4
4
  include XmlSchemaMapper
5
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
5
+ schema File.expand_path('../../vendor/ezags-protocols/retro/GetResultsService.xsd', File.dirname(__FILE__))
6
6
  type 'GetActRecordsResponse'
7
7
 
8
- # Служебный блок атрибутов СМЭВ
9
- # @return [MessageTypeMapper]
10
- # minOccurs: 1, maxOccurs: 1
11
- attr_accessor :message
12
- # @return [MessageDataMapper]
13
- # minOccurs: 1, maxOccurs: 1
14
- attr_accessor :message_data
15
-
16
- class MessageData
17
- include XmlSchemaMapper
18
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
19
- annonymus_type 'GetActRecordsResponse::MessageData'
20
-
21
- # @return [AppDataMapper]
22
- # minOccurs: 1, maxOccurs: 1
23
- attr_accessor :app_data
24
- # Блок вложений
25
- # @return [AppDocumentTypeMapper]
26
- # minOccurs: 0, maxOccurs: 1
27
- attr_accessor :app_document
28
- end
29
-
30
- class MessageData::AppData
31
- include XmlSchemaMapper
32
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
33
- annonymus_type 'GetActRecordsResponse::MessageData::AppData'
34
-
35
- # @return [GetActRecordsResponseObjMapper]
36
- # minOccurs: 1, maxOccurs: 1
37
- attr_accessor :get_act_records_response_obj
38
- end
8
+ # Запись акта о рождении с ЭП
9
+ # @return [SignedActRecordBirthMapper]
10
+ # minOccurs: 0, maxOccurs: Infinity
11
+ attr_accessor :signed_act_record_birth
12
+ # Запись акта о заключении брака с ЭП
13
+ # @return [SignedActRecordMarriageMapper]
14
+ # minOccurs: 0, maxOccurs: Infinity
15
+ attr_accessor :signed_act_record_marriage
16
+ # Запись акта о расторжении брака с ЭП
17
+ # @return [SignedActRecordDivorceMapper]
18
+ # minOccurs: 0, maxOccurs: Infinity
19
+ attr_accessor :signed_act_record_divorce
20
+ # Запись акта об усыновлении (удочерении) с ЭП
21
+ # @return [SignedActRecordAdoptionMapper]
22
+ # minOccurs: 0, maxOccurs: Infinity
23
+ attr_accessor :signed_act_record_adoption
24
+ # Запись акта об устанновлении отцовства с ЭП
25
+ # @return [SignedActRecordFiliationMapper]
26
+ # minOccurs: 0, maxOccurs: Infinity
27
+ attr_accessor :signed_act_record_filiation
28
+ # Запись акта о перемене имени с ЭП
29
+ # @return [SignedActRecordNameChangeMapper]
30
+ # minOccurs: 0, maxOccurs: Infinity
31
+ attr_accessor :signed_act_record_name_change
32
+ # Запись акта о смерти с ЭП
33
+ # @return [SignedActRecordDeathMapper]
34
+ # minOccurs: 0, maxOccurs: Infinity
35
+ attr_accessor :signed_act_record_death
36
+ # @return [String]
37
+ # minOccurs: 0, maxOccurs: 1
38
+ attr_accessor :fault_message
39
39
 
40
40
  end
data/bin/ezags-xsd CHANGED
@@ -33,7 +33,7 @@ class CLI < Thor
33
33
  end
34
34
 
35
35
  def update_retro
36
- @script.generate(xsd_path 'retro/public/GetResultsService.xsd')
36
+ @script.generate(xsd_path 'retro/GetResultsService.xsd')
37
37
  end
38
38
 
39
39
  def update_upload
@@ -1,5 +1,5 @@
1
1
  module Ezags
2
2
  module Xsd
3
- VERSION = '2.2.0.2'
3
+ VERSION = '2.2.0.3'
4
4
  end
5
5
  end
@@ -1,8 +1,8 @@
1
1
  require 'spec_helper'
2
2
  require "xml_schema_mapper/test_builder"
3
3
 
4
- # @attr Message [MessageType]
5
- # @attr MessageData []
4
+ # @attr taskId [string]
5
+ # @attr Signature [SignatureType]
6
6
 
7
7
 
8
8
  describe GetActRecordsRequestMapper do
@@ -1,8 +1,14 @@
1
1
  require 'spec_helper'
2
2
  require "xml_schema_mapper/test_builder"
3
3
 
4
- # @attr Message [MessageType]
5
- # @attr MessageData []
4
+ # @attr signedActRecordBirth [SignedActRecordBirth]
5
+ # @attr signedActRecordMarriage [SignedActRecordMarriage]
6
+ # @attr signedActRecordDivorce [SignedActRecordDivorce]
7
+ # @attr signedActRecordAdoption [SignedActRecordAdoption]
8
+ # @attr signedActRecordFiliation [SignedActRecordFiliation]
9
+ # @attr signedActRecordNameChange [SignedActRecordNameChange]
10
+ # @attr signedActRecordDeath [SignedActRecordDeath]
11
+ # @attr faultMessage [string]
6
12
 
7
13
 
8
14
  describe GetActRecordsResponseMapper do
@@ -0,0 +1,54 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <definitions name="GetResultsService"
3
+ targetNamespace="http://ezags.rt.ru/fzags/GetResultsService/"
4
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
5
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
6
+ xmlns:tns="http://ezags.rt.ru/fzags/GetResultsService/"
7
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
8
+ <types>
9
+ <xsd:schema>
10
+ <xsd:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="../common.xsd"/>
11
+ </xsd:schema>
12
+ <xsd:schema>
13
+ <xsd:import namespace="http://ezags.rt.ru/type/actor/" schemaLocation="../actor.xsd"/>
14
+ </xsd:schema>
15
+ <xsd:schema>
16
+ <xsd:import namespace="http://ezags.rt.ru/type/document/" schemaLocation="../documents.xsd"/>
17
+ </xsd:schema>
18
+ <xsd:schema>
19
+ <xsd:import namespace="http://ezags.rt.ru/type/externaldocuments/" schemaLocation="../externaldocuments.xsd"/>
20
+ </xsd:schema>
21
+ <xsd:schema>
22
+ <xsd:import namespace="http://ezags.rt.ru/fzags/GetResultsService/" schemaLocation="GetResultsService.xsd"/>
23
+ </xsd:schema>
24
+ </types>
25
+ <message name="GetActRecordsRequest">
26
+ <part name="body" element="tns:getActRecordsRequest"/>
27
+ </message>
28
+ <message name="GetActRecordsResponse">
29
+ <part name="body" element="tns:getActRecordsResponse"/>
30
+ </message>
31
+ <portType name="GetResultsPortType">
32
+ <operation name="getActRecords">
33
+ <input message="tns:GetActRecordsRequest"/>
34
+ <output message="tns:GetActRecordsResponse"/>
35
+ </operation>
36
+ </portType>
37
+ <binding name="GetResultsBinding" type="tns:GetResultsPortType">
38
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
39
+ <operation name="getActRecords">
40
+ <soap:operation soapAction=""/>
41
+ <input>
42
+ <soap:body use="literal"/>
43
+ </input>
44
+ <output>
45
+ <soap:body use="literal"/>
46
+ </output>
47
+ </operation>
48
+ </binding>
49
+ <service name="GetResultsService">
50
+ <port name="GetResultsServicePort" binding="tns:GetResultsBinding">
51
+ <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
52
+ </port>
53
+ </service>
54
+ </definitions>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <xs:schema targetNamespace="http://ezags.rt.ru/fzags/GetResultsService/"
3
+ xmlns:tns="http://ezags.rt.ru/fzags/GetResultsService/"
4
+ xmlns:doc="http://ezags.rt.ru/type/document/"
5
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
6
+ xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
7
+ elementFormDefault="qualified" attributeFormDefault="unqualified">
8
+ <xs:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="../common.xsd"/>
9
+ <xs:import namespace="http://ezags.rt.ru/type/document/" schemaLocation="../documents.xsd"/>
10
+ <xs:import namespace="http://ezags.rt.ru/type/externaldocuments/" schemaLocation="../externaldocuments.xsd"/>
11
+ <xs:import namespace="http://ezags.rt.ru/type/actor/" schemaLocation="../actor.xsd"/>
12
+ <xs:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="../xmldsig-core-schema.xsd"/>
13
+ <xs:complexType name="GetActRecordsRequest">
14
+ <xs:sequence minOccurs="1">
15
+ <xs:element name="taskId" type="xs:string" minOccurs="1"/>
16
+ <xs:element ref="ds:Signature"/>
17
+ </xs:sequence>
18
+ </xs:complexType>
19
+ <xs:complexType name="GetActRecordsResponse">
20
+ <xs:choice minOccurs="1">
21
+ <xs:element ref="doc:signedActRecordBirth" minOccurs="0" maxOccurs="unbounded"/>
22
+ <xs:element ref="doc:signedActRecordMarriage" minOccurs="0" maxOccurs="unbounded"/>
23
+ <xs:element ref="doc:signedActRecordDivorce" minOccurs="0" maxOccurs="unbounded"/>
24
+ <xs:element ref="doc:signedActRecordAdoption" minOccurs="0" maxOccurs="unbounded"/>
25
+ <xs:element ref="doc:signedActRecordFiliation" minOccurs="0" maxOccurs="unbounded"/>
26
+ <xs:element ref="doc:signedActRecordNameChange" minOccurs="0" maxOccurs="unbounded"/>
27
+ <xs:element ref="doc:signedActRecordDeath" minOccurs="0" maxOccurs="unbounded"/>
28
+ <xs:element name="faultMessage" type="xs:string" minOccurs="0"/>
29
+ </xs:choice>
30
+ </xs:complexType>
31
+ <xs:element name="getActRecordsRequest" type="tns:GetActRecordsRequest"/>
32
+ <xs:element name="getActRecordsResponse" type="tns:GetActRecordsResponse"/>
33
+ </xs:schema>
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: ezags-xsd
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.2.0.2
5
+ version: 2.2.0.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Anton Sozontov
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-13 00:00:00.000000000 Z
12
+ date: 2013-04-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  version_requirements: !ruby/object:Gem::Requirement
@@ -180,9 +180,7 @@ files:
180
180
  - app/mappers/full_person_mapper.rb
181
181
  - app/mappers/genders_mapper.rb
182
182
  - app/mappers/get_act_records_request_mapper.rb
183
- - app/mappers/get_act_records_request_obj_mapper.rb
184
183
  - app/mappers/get_act_records_response_mapper.rb
185
- - app/mappers/get_act_records_response_obj_mapper.rb
186
184
  - app/mappers/get_free_time_request_mapper.rb
187
185
  - app/mappers/get_free_time_request_obj_mapper.rb
188
186
  - app/mappers/get_free_time_response_mapper.rb
@@ -531,9 +529,7 @@ files:
531
529
  - spec/mappers/full_person_mapper_spec.rb
532
530
  - spec/mappers/genders_mapper_spec.rb
533
531
  - spec/mappers/get_act_records_request_mapper_spec.rb
534
- - spec/mappers/get_act_records_request_obj_mapper_spec.rb
535
532
  - spec/mappers/get_act_records_response_mapper_spec.rb
536
- - spec/mappers/get_act_records_response_obj_mapper_spec.rb
537
533
  - spec/mappers/get_free_time_request_mapper_spec.rb
538
534
  - spec/mappers/get_free_time_request_obj_mapper_spec.rb
539
535
  - spec/mappers/get_free_time_response_mapper_spec.rb
@@ -834,10 +830,8 @@ files:
834
830
  - vendor/ezags-protocols/pfr/dataService.xsd
835
831
  - vendor/ezags-protocols/pfr/xmldsig.xsd
836
832
  - vendor/ezags-protocols/pfr/xop-include.xsd
837
- - vendor/ezags-protocols/retro/LocalGetResultsService.wsdl
838
- - vendor/ezags-protocols/retro/LocalGetResultsService.xsd
839
- - vendor/ezags-protocols/retro/public/GetResultsService.wsdl
840
- - vendor/ezags-protocols/retro/public/GetResultsService.xsd
833
+ - vendor/ezags-protocols/retro/GetResultsService.wsdl
834
+ - vendor/ezags-protocols/retro/GetResultsService.xsd
841
835
  - vendor/ezags-protocols/smev/smev.gosuslugi.ru.rev111111.xsd
842
836
  - vendor/ezags-protocols/smev/smev.gosuslugi.ru.rev120315.xsd
843
837
  - vendor/ezags-protocols/smev/xmldsig-core-schema.xsd
@@ -978,9 +972,7 @@ test_files:
978
972
  - spec/mappers/full_person_mapper_spec.rb
979
973
  - spec/mappers/genders_mapper_spec.rb
980
974
  - spec/mappers/get_act_records_request_mapper_spec.rb
981
- - spec/mappers/get_act_records_request_obj_mapper_spec.rb
982
975
  - spec/mappers/get_act_records_response_mapper_spec.rb
983
- - spec/mappers/get_act_records_response_obj_mapper_spec.rb
984
976
  - spec/mappers/get_free_time_request_mapper_spec.rb
985
977
  - spec/mappers/get_free_time_request_obj_mapper_spec.rb
986
978
  - spec/mappers/get_free_time_response_mapper_spec.rb
@@ -1,12 +0,0 @@
1
- # encoding: utf-8
2
-
3
- class GetActRecordsRequestObjMapper
4
- include XmlSchemaMapper
5
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
6
- type 'GetActRecordsRequestObj'
7
-
8
- # @return [String]
9
- # minOccurs: 1, maxOccurs: 1
10
- attr_accessor :task_id
11
-
12
- end
@@ -1,33 +0,0 @@
1
- # encoding: utf-8
2
-
3
- class GetActRecordsResponseObjMapper
4
- include XmlSchemaMapper
5
- schema File.expand_path('../../vendor/ezags-protocols/retro/public/GetResultsService.xsd', File.dirname(__FILE__))
6
- type 'GetActRecordsResponseObj'
7
-
8
- # @return [SignedActRecordBirthMapper]
9
- # minOccurs: 0, maxOccurs: Infinity
10
- attr_accessor :signed_act_record_birth
11
- # @return [SignedActRecordMarriageMapper]
12
- # minOccurs: 0, maxOccurs: Infinity
13
- attr_accessor :signed_act_record_marriage
14
- # @return [SignedActRecordDivorceMapper]
15
- # minOccurs: 0, maxOccurs: Infinity
16
- attr_accessor :signed_act_record_divorce
17
- # @return [SignedActRecordAdoptionMapper]
18
- # minOccurs: 0, maxOccurs: Infinity
19
- attr_accessor :signed_act_record_adoption
20
- # @return [SignedActRecordFiliationMapper]
21
- # minOccurs: 0, maxOccurs: Infinity
22
- attr_accessor :signed_act_record_filiation
23
- # @return [SignedActRecordNameChangeMapper]
24
- # minOccurs: 0, maxOccurs: Infinity
25
- attr_accessor :signed_act_record_name_change
26
- # @return [SignedActRecordDeathMapper]
27
- # minOccurs: 0, maxOccurs: Infinity
28
- attr_accessor :signed_act_record_death
29
- # @return [String]
30
- # minOccurs: 0, maxOccurs: 1
31
- attr_accessor :fault_message
32
-
33
- end
@@ -1,17 +0,0 @@
1
- require 'spec_helper'
2
- require "xml_schema_mapper/test_builder"
3
-
4
- # @attr taskId [string]
5
-
6
-
7
- describe GetActRecordsRequestObjMapper do
8
-
9
- include XmlSchemaMapper::TestBuilder::Helper
10
-
11
- subject { build_described_mapper }
12
-
13
- it "should be self-compatible xml <-> object" do
14
- described_class.parse(subject.to_xml).to_xml.should eql subject.to_xml
15
- end
16
-
17
- end
@@ -1,24 +0,0 @@
1
- require 'spec_helper'
2
- require "xml_schema_mapper/test_builder"
3
-
4
- # @attr signedActRecordBirth [SignedActRecordBirth]
5
- # @attr signedActRecordMarriage [SignedActRecordMarriage]
6
- # @attr signedActRecordDivorce [SignedActRecordDivorce]
7
- # @attr signedActRecordAdoption [SignedActRecordAdoption]
8
- # @attr signedActRecordFiliation [SignedActRecordFiliation]
9
- # @attr signedActRecordNameChange [SignedActRecordNameChange]
10
- # @attr signedActRecordDeath [SignedActRecordDeath]
11
- # @attr faultMessage [string]
12
-
13
-
14
- describe GetActRecordsResponseObjMapper do
15
-
16
- include XmlSchemaMapper::TestBuilder::Helper
17
-
18
- subject { build_described_mapper }
19
-
20
- it "should be self-compatible xml <-> object" do
21
- described_class.parse(subject.to_xml).to_xml.should eql subject.to_xml
22
- end
23
-
24
- end
@@ -1,49 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ezags.rt.ru/fzags/LocalGetResultsService/" xmlns:t="http://ezags.rt.ru/fzags/GetResultsService/type/local/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="LocalGetResultsServiceService" targetNamespace="http://ezags.rt.ru/fzags/LocalGetResultsService/">
3
- <types>
4
- <xsd:schema>
5
- <xsd:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="../common.xsd"/>
6
- </xsd:schema>
7
- <xsd:schema>
8
- <xsd:import namespace="http://ezags.rt.ru/type/actor/" schemaLocation="../actor.xsd"/>
9
- </xsd:schema>
10
- <xsd:schema>
11
- <xsd:import namespace="http://ezags.rt.ru/type/document/" schemaLocation="../documents.xsd"/>
12
- </xsd:schema>
13
- <xsd:schema>
14
- <xsd:import namespace="http://ezags.rt.ru/type/externaldocuments/" schemaLocation="../externaldocuments.xsd"/>
15
- </xsd:schema>
16
- <xsd:schema>
17
- <xsd:import namespace="http://ezags.rt.ru/fzags/GetResultsService/type/local/" schemaLocation="LocalGetResultsService.xsd"/>
18
- </xsd:schema>
19
- </types>
20
- <message name="GetActRecords">
21
- <part name="parameters" element="t:getActRecordsRequestObj"/>
22
- </message>
23
- <message name="GetActRecordsResponse">
24
- <part name="parameters" element="t:getActRecordsResponseObj"/>
25
- </message>
26
- <portType name="LocalGetResultsService">
27
- <operation name="getActRecords">
28
- <input message="tns:GetActRecords"/>
29
- <output message="tns:GetActRecordsResponse"/>
30
- </operation>
31
- </portType>
32
- <binding name="LocalGetResultsServicePortBinding" type="tns:LocalGetResultsService">
33
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
34
- <operation name="getActRecords">
35
- <soap:operation soapAction=""/>
36
- <input>
37
- <soap:body use="literal"/>
38
- </input>
39
- <output>
40
- <soap:body use="literal"/>
41
- </output>
42
- </operation>
43
- </binding>
44
- <service name="LocalGetResultsService">
45
- <port name="LocalGetResultsServicePort" binding="tns:LocalGetResultsServicePortBinding">
46
- <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
47
- </port>
48
- </service>
49
- </definitions>
@@ -1,32 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <xs:schema xmlns:tns="http://ezags.rt.ru/fzags/GetResultsService/type/local/"
3
- xmlns:cm="http://ezags.rt.ru/type/common/" xmlns:ac="http://ezags.rt.ru/type/actor/"
4
- xmlns:doc="http://ezags.rt.ru/type/document/"
5
- xmlns:exdoc="http://ezags.rt.ru/type/externaldocuments/"
6
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
7
- targetNamespace="http://ezags.rt.ru/fzags/GetResultsService/type/local/"
8
- elementFormDefault="qualified" attributeFormDefault="unqualified">
9
- <xs:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="../common.xsd"/>
10
- <xs:import namespace="http://ezags.rt.ru/type/document/" schemaLocation="../documents.xsd"/>
11
- <xs:import namespace="http://ezags.rt.ru/type/externaldocuments/" schemaLocation="../externaldocuments.xsd"/>
12
- <xs:import namespace="http://ezags.rt.ru/type/actor/" schemaLocation="../actor.xsd"/>
13
- <xs:complexType name="GetActRecordsRequestObj">
14
- <xs:sequence minOccurs="1">
15
- <xs:element name="taskId" type="xs:string" minOccurs="1"/>
16
- </xs:sequence>
17
- </xs:complexType>
18
- <xs:complexType name="GetActRecordsResponseObj">
19
- <xs:choice minOccurs="1">
20
- <xs:element name="signedActRecordBirth" type="doc:SignedActRecordBirth" minOccurs="0" maxOccurs="unbounded"/>
21
- <xs:element name="signedActRecordMarriage" type="doc:SignedActRecordMarriage" minOccurs="0" maxOccurs="unbounded"/>
22
- <xs:element name="signedActRecordDivorce" type="doc:SignedActRecordDivorce" minOccurs="0" maxOccurs="unbounded"/>
23
- <xs:element name="signedActRecordAdoption" type="doc:SignedActRecordAdoption" minOccurs="0" maxOccurs="unbounded"/>
24
- <xs:element name="signedActRecordFiliation" type="doc:SignedActRecordFiliation" minOccurs="0" maxOccurs="unbounded"/>
25
- <xs:element name="signedActRecordNameChange" type="doc:SignedActRecordNameChange" minOccurs="0" maxOccurs="unbounded"/>
26
- <xs:element name="signedActRecordDeath" type="doc:SignedActRecordDeath" minOccurs="0" maxOccurs="unbounded"/>
27
- <xs:element name="faultMessage" type="xs:string" minOccurs="0"/>
28
- </xs:choice>
29
- </xs:complexType>
30
- <xs:element name="getActRecordsRequestObj" type="tns:GetActRecordsRequestObj"/>
31
- <xs:element name="getActRecordsResponseObj" type="tns:GetActRecordsResponseObj"/>
32
- </xs:schema>
@@ -1,45 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
3
- xmlns:tns="http://ezags.rt.ru/fzags/GetResultsService/" xmlns:t="http://smev.gosuslugi.ru/rev120315"
4
- xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="GetResultsService"
5
- targetNamespace="http://ezags.rt.ru/fzags/GetResultsService/">
6
- <types>
7
- <xsd:schema>
8
- <xsd:import namespace="http://smev.gosuslugi.ru/rev120315" schemaLocation="GetResultsService.xsd"/>
9
- </xsd:schema>
10
- </types>
11
- <message name="GetActRecords">
12
- <part name="parameters" element="t:getActRecordsRequest"/>
13
- </message>
14
- <message name="GetActRecordsResponse">
15
- <part name="parameters" element="t:getActRecordsResponse"/>
16
- </message>
17
-
18
- <portType name="GetResultsService">
19
- <operation name="GetActRecords">
20
- <input message="tns:GetActRecords"/>
21
- <output message="tns:GetActRecordsResponse"/>
22
- <fault name="requestFault" message="tns:requestFault"/>
23
- </operation>
24
- </portType>
25
- <binding name="GetResultsServiceImplPortBinding" type="tns:GetResultsService">
26
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
27
- <operation name="GetActRecords">
28
- <soap:operation soapAction=""/>
29
- <input>
30
- <soap:body use="literal"/>
31
- </input>
32
- <output>
33
- <soap:body use="literal"/>
34
- </output>
35
- <fault name="requestFault">
36
- <soap:fault name="requestFault" use="literal"/>
37
- </fault>
38
- </operation>
39
- </binding>
40
- <service name="GetResultsService">
41
- <port name="GetResultsServiceImplPort" binding="tns:GetResultsServiceImplPortBinding">
42
- <soap:address location="http://localhost:8001/GetResultsServiceImpl/GetResultsService"/>
43
- </port>
44
- </service>
45
- </definitions>
@@ -1,51 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- edited with XMLSpy v2011 rel. 2 (http://www.altova.com) by TeaM DJiNN (TeaM DJiNN) -->
3
- <xs:schema xmlns:t="http://ezags.rt.ru/fzags/GetResultsService/type/local/" xmlns:cm="http://ezags.rt.ru/type/common/" xmlns:pgu="http://idecs.atc.ru/privateoffice/ws/changeorderinfo" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:smev="http://smev.gosuslugi.ru/rev120315" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" targetNamespace="http://smev.gosuslugi.ru/rev120315" elementFormDefault="qualified" attributeFormDefault="qualified">
4
- <xs:import namespace="http://ezags.rt.ru/fzags/GetResultsService/type/local/" schemaLocation="../LocalGetResultsService.xsd"/>
5
- <xs:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="../../common.xsd"/>
6
- <xs:import namespace="http://idecs.atc.ru/privateoffice/ws/changeorderinfo" schemaLocation="../../ePGU/order-info.xsd"/>
7
- <xs:include schemaLocation="../../smev/smev.gosuslugi.ru.rev120315.xsd"/>
8
- <xs:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="../../xmldsig-core-schema.xsd"/>
9
- <xs:complexType name="GetActRecordsRequest">
10
- <xs:sequence minOccurs="1">
11
- <xs:element ref="smev:Message"/>
12
- <xs:element name="MessageData">
13
- <xs:complexType>
14
- <xs:sequence minOccurs="1">
15
- <xs:element name="AppData">
16
- <xs:complexType>
17
- <xs:sequence minOccurs="1">
18
- <xs:element ref="t:getActRecordsRequestObj"/>
19
- </xs:sequence>
20
- <xs:attribute name="id" type="xs:string" fixed="AppData"/>
21
- </xs:complexType>
22
- </xs:element>
23
- <xs:element ref="smev:AppDocument" minOccurs="0"/>
24
- </xs:sequence>
25
- </xs:complexType>
26
- </xs:element>
27
- </xs:sequence>
28
- </xs:complexType>
29
- <xs:complexType name="GetActRecordsResponse">
30
- <xs:sequence minOccurs="1">
31
- <xs:element ref="smev:Message"/>
32
- <xs:element name="MessageData">
33
- <xs:complexType>
34
- <xs:sequence minOccurs="1">
35
- <xs:element name="AppData">
36
- <xs:complexType>
37
- <xs:sequence minOccurs="1">
38
- <xs:element ref="t:getActRecordsResponseObj"/>
39
- </xs:sequence>
40
- <xs:attribute name="id" type="xs:string" fixed="AppData"/>
41
- </xs:complexType>
42
- </xs:element>
43
- <xs:element ref="smev:AppDocument" minOccurs="0"/>
44
- </xs:sequence>
45
- </xs:complexType>
46
- </xs:element>
47
- </xs:sequence>
48
- </xs:complexType>
49
- <xs:element name="getActRecordsRequest" type="smev:GetActRecordsRequest"/>
50
- <xs:element name="getActRecordsResponse" type="smev:GetActRecordsResponse"/>
51
- </xs:schema>