sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
@@ -0,0 +1,448 @@
|
|
1
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://tempuri.org/">
|
2
|
+
<xs:import schemaLocation="https://winteamservicestest.myteamsoftware.com/Services.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
3
|
+
<xs:import schemaLocation="https://winteamservicestest.myteamsoftware.com/Services.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
4
|
+
<xs:element name="Login">
|
5
|
+
<xs:complexType>
|
6
|
+
<xs:sequence>
|
7
|
+
<xs:element minOccurs="0" name="MappingKey" nillable="true" type="xs:string"/>
|
8
|
+
</xs:sequence>
|
9
|
+
</xs:complexType>
|
10
|
+
</xs:element>
|
11
|
+
<xs:element name="LoginResponse">
|
12
|
+
<xs:complexType>
|
13
|
+
<xs:sequence>
|
14
|
+
<xs:element minOccurs="0" name="LoginResult" nillable="true" type="xs:string"/>
|
15
|
+
</xs:sequence>
|
16
|
+
</xs:complexType>
|
17
|
+
</xs:element>
|
18
|
+
<xs:element name="SaveEmployee">
|
19
|
+
<xs:complexType>
|
20
|
+
<xs:sequence>
|
21
|
+
<xs:element minOccurs="0" name="employee" nillable="true" type="q1:Employee" xmlns:q1="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
22
|
+
<xs:element minOccurs="0" name="validateOnly" type="xs:boolean"/>
|
23
|
+
</xs:sequence>
|
24
|
+
</xs:complexType>
|
25
|
+
</xs:element>
|
26
|
+
<xs:element name="SaveEmployeeResponse">
|
27
|
+
<xs:complexType>
|
28
|
+
<xs:sequence>
|
29
|
+
<xs:element minOccurs="0" name="SaveEmployeeResult" nillable="true" type="q2:ValidationResult" xmlns:q2="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
30
|
+
<xs:element minOccurs="0" name="employee" nillable="true" type="q3:Employee" xmlns:q3="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
31
|
+
</xs:sequence>
|
32
|
+
</xs:complexType>
|
33
|
+
</xs:element>
|
34
|
+
<xs:element name="SavePartialEmployee">
|
35
|
+
<xs:complexType>
|
36
|
+
<xs:sequence>
|
37
|
+
<xs:element minOccurs="0" name="employee" nillable="true" type="q4:Employee" xmlns:q4="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
38
|
+
</xs:sequence>
|
39
|
+
</xs:complexType>
|
40
|
+
</xs:element>
|
41
|
+
<xs:element name="SavePartialEmployeeResponse">
|
42
|
+
<xs:complexType>
|
43
|
+
<xs:sequence>
|
44
|
+
<xs:element minOccurs="0" name="SavePartialEmployeeResult" nillable="true" type="q5:ValidationResult" xmlns:q5="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
45
|
+
</xs:sequence>
|
46
|
+
</xs:complexType>
|
47
|
+
</xs:element>
|
48
|
+
<xs:element name="GetEmployeeComboListXML">
|
49
|
+
<xs:complexType>
|
50
|
+
<xs:sequence>
|
51
|
+
<xs:element minOccurs="0" name="EmployeeDataMember" nillable="true" type="xs:string"/>
|
52
|
+
<xs:element minOccurs="0" name="Parameter" nillable="true" type="xs:string"/>
|
53
|
+
</xs:sequence>
|
54
|
+
</xs:complexType>
|
55
|
+
</xs:element>
|
56
|
+
<xs:element name="GetEmployeeComboListXMLResponse">
|
57
|
+
<xs:complexType>
|
58
|
+
<xs:sequence>
|
59
|
+
<xs:element minOccurs="0" name="GetEmployeeComboListXMLResult" nillable="true" type="xs:string"/>
|
60
|
+
</xs:sequence>
|
61
|
+
</xs:complexType>
|
62
|
+
</xs:element>
|
63
|
+
<xs:element name="eHubValidEmployee">
|
64
|
+
<xs:complexType>
|
65
|
+
<xs:sequence>
|
66
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
67
|
+
<xs:element minOccurs="0" name="eHubPassword" nillable="true" type="xs:string"/>
|
68
|
+
</xs:sequence>
|
69
|
+
</xs:complexType>
|
70
|
+
</xs:element>
|
71
|
+
<xs:element name="eHubValidEmployeeResponse">
|
72
|
+
<xs:complexType>
|
73
|
+
<xs:sequence>
|
74
|
+
<xs:element minOccurs="0" name="eHubValidEmployeeResult" type="xs:boolean"/>
|
75
|
+
</xs:sequence>
|
76
|
+
</xs:complexType>
|
77
|
+
</xs:element>
|
78
|
+
<xs:element name="eHubValidCustomer">
|
79
|
+
<xs:complexType>
|
80
|
+
<xs:sequence>
|
81
|
+
<xs:element minOccurs="0" name="ContactLogin" nillable="true" type="xs:string"/>
|
82
|
+
<xs:element minOccurs="0" name="ContactPassword" nillable="true" type="xs:string"/>
|
83
|
+
</xs:sequence>
|
84
|
+
</xs:complexType>
|
85
|
+
</xs:element>
|
86
|
+
<xs:element name="eHubValidCustomerResponse">
|
87
|
+
<xs:complexType>
|
88
|
+
<xs:sequence>
|
89
|
+
<xs:element minOccurs="0" name="eHubValidCustomerResult" type="xs:boolean"/>
|
90
|
+
</xs:sequence>
|
91
|
+
</xs:complexType>
|
92
|
+
</xs:element>
|
93
|
+
<xs:element name="ValidEmployee">
|
94
|
+
<xs:complexType>
|
95
|
+
<xs:sequence>
|
96
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
97
|
+
<xs:element minOccurs="0" name="Last4SSN" nillable="true" type="xs:string"/>
|
98
|
+
</xs:sequence>
|
99
|
+
</xs:complexType>
|
100
|
+
</xs:element>
|
101
|
+
<xs:element name="ValidEmployeeResponse">
|
102
|
+
<xs:complexType>
|
103
|
+
<xs:sequence>
|
104
|
+
<xs:element minOccurs="0" name="ValidEmployeeResult" type="xs:boolean"/>
|
105
|
+
</xs:sequence>
|
106
|
+
</xs:complexType>
|
107
|
+
</xs:element>
|
108
|
+
<xs:element name="EmployeeProfile">
|
109
|
+
<xs:complexType>
|
110
|
+
<xs:sequence>
|
111
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
112
|
+
</xs:sequence>
|
113
|
+
</xs:complexType>
|
114
|
+
</xs:element>
|
115
|
+
<xs:element name="EmployeeProfileResponse">
|
116
|
+
<xs:complexType>
|
117
|
+
<xs:sequence>
|
118
|
+
<xs:element minOccurs="0" name="EmployeeProfileResult" nillable="true" type="xs:string"/>
|
119
|
+
</xs:sequence>
|
120
|
+
</xs:complexType>
|
121
|
+
</xs:element>
|
122
|
+
<xs:element name="EmployeeComplianceCodeImport">
|
123
|
+
<xs:complexType>
|
124
|
+
<xs:sequence>
|
125
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
126
|
+
<xs:element minOccurs="0" name="ComplianceID" type="xs:int"/>
|
127
|
+
<xs:element minOccurs="0" name="DueDate" type="xs:dateTime"/>
|
128
|
+
<xs:element minOccurs="0" name="DateCompleted" type="xs:dateTime"/>
|
129
|
+
<xs:element minOccurs="0" name="Notes" nillable="true" type="xs:string"/>
|
130
|
+
<xs:element minOccurs="0" name="Score" nillable="true" type="xs:int"/>
|
131
|
+
<xs:element minOccurs="0" name="UserName" nillable="true" type="xs:string"/>
|
132
|
+
<xs:element minOccurs="0" name="ExternalID" nillable="true" type="xs:int"/>
|
133
|
+
</xs:sequence>
|
134
|
+
</xs:complexType>
|
135
|
+
</xs:element>
|
136
|
+
<xs:element name="EmployeeComplianceCodeImportResponse">
|
137
|
+
<xs:complexType>
|
138
|
+
<xs:sequence>
|
139
|
+
<xs:element minOccurs="0" name="EmployeeComplianceCodeImportResult" type="xs:boolean"/>
|
140
|
+
</xs:sequence>
|
141
|
+
</xs:complexType>
|
142
|
+
</xs:element>
|
143
|
+
<xs:element name="EmployeeComplianceCodesCompletedExport">
|
144
|
+
<xs:complexType>
|
145
|
+
<xs:sequence>
|
146
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
147
|
+
<xs:element minOccurs="0" name="DateFrom" nillable="true" type="xs:dateTime"/>
|
148
|
+
<xs:element minOccurs="0" name="DateTo" nillable="true" type="xs:dateTime"/>
|
149
|
+
<xs:element minOccurs="0" name="ShowOnlyMostRecentItemPerCode" type="xs:boolean"/>
|
150
|
+
</xs:sequence>
|
151
|
+
</xs:complexType>
|
152
|
+
</xs:element>
|
153
|
+
<xs:element name="EmployeeComplianceCodesCompletedExportResponse">
|
154
|
+
<xs:complexType>
|
155
|
+
<xs:sequence>
|
156
|
+
<xs:element minOccurs="0" name="EmployeeComplianceCodesCompletedExportResult" nillable="true" type="xs:string"/>
|
157
|
+
</xs:sequence>
|
158
|
+
</xs:complexType>
|
159
|
+
</xs:element>
|
160
|
+
<xs:element name="EmployeeComplianceCodesNotCompletedExport">
|
161
|
+
<xs:complexType>
|
162
|
+
<xs:sequence>
|
163
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
164
|
+
<xs:element minOccurs="0" name="DateFrom" nillable="true" type="xs:dateTime"/>
|
165
|
+
<xs:element minOccurs="0" name="DateTo" nillable="true" type="xs:dateTime"/>
|
166
|
+
<xs:element minOccurs="0" name="DefaultEmployeeClassification" type="xs:boolean"/>
|
167
|
+
<xs:element minOccurs="0" name="ClassifiactionID" nillable="true" type="xs:short"/>
|
168
|
+
<xs:element minOccurs="0" name="DefaultEmployeeType" type="xs:boolean"/>
|
169
|
+
<xs:element minOccurs="0" name="TypeID" nillable="true" type="xs:short"/>
|
170
|
+
<xs:element minOccurs="0" name="DefaultEmployeeJob" type="xs:boolean"/>
|
171
|
+
<xs:element minOccurs="0" name="JobNumber" nillable="true" type="xs:string"/>
|
172
|
+
<xs:element minOccurs="0" name="JobPostID" nillable="true" type="xs:int"/>
|
173
|
+
<xs:element minOccurs="0" name="IncludeTimekeepingJobs" type="xs:boolean"/>
|
174
|
+
<xs:element minOccurs="0" name="NumberOfTKWeeks" nillable="true" type="xs:unsignedByte"/>
|
175
|
+
<xs:element minOccurs="0" name="IncludePersonnelSchedulingJobs" type="xs:boolean"/>
|
176
|
+
<xs:element minOccurs="0" name="NumberOfPSWeeks" nillable="true" type="xs:unsignedByte"/>
|
177
|
+
<xs:element minOccurs="0" name="ComplianceGroupID" nillable="true" type="xs:short"/>
|
178
|
+
<xs:element minOccurs="0" name="ComplianceID" nillable="true" type="xs:short"/>
|
179
|
+
</xs:sequence>
|
180
|
+
</xs:complexType>
|
181
|
+
</xs:element>
|
182
|
+
<xs:element name="EmployeeComplianceCodesNotCompletedExportResponse">
|
183
|
+
<xs:complexType>
|
184
|
+
<xs:sequence>
|
185
|
+
<xs:element minOccurs="0" name="EmployeeComplianceCodesNotCompletedExportResult" nillable="true" type="xs:string"/>
|
186
|
+
</xs:sequence>
|
187
|
+
</xs:complexType>
|
188
|
+
</xs:element>
|
189
|
+
<xs:element name="PS_TT_TK_Hours_Import">
|
190
|
+
<xs:complexType>
|
191
|
+
<xs:sequence>
|
192
|
+
<xs:element minOccurs="0" name="JobNumber" nillable="true" type="xs:string"/>
|
193
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
194
|
+
<xs:element minOccurs="0" name="WorkDate" type="xs:dateTime"/>
|
195
|
+
<xs:element minOccurs="0" name="Hours" type="xs:decimal"/>
|
196
|
+
<xs:element minOccurs="0" name="InTime" nillable="true" type="xs:dateTime"/>
|
197
|
+
<xs:element minOccurs="0" name="OutTime" nillable="true" type="xs:dateTime"/>
|
198
|
+
<xs:element minOccurs="0" name="Lunch" nillable="true" type="xs:decimal"/>
|
199
|
+
<xs:element minOccurs="0" name="CategoriesDetailID" nillable="true" type="xs:int"/>
|
200
|
+
<xs:element minOccurs="0" name="HoursTypeID" nillable="true" type="xs:short"/>
|
201
|
+
<xs:element minOccurs="0" name="JobPostDetailID" nillable="true" type="xs:int"/>
|
202
|
+
<xs:element minOccurs="0" name="WorkTicketNumber" nillable="true" type="xs:int"/>
|
203
|
+
</xs:sequence>
|
204
|
+
</xs:complexType>
|
205
|
+
</xs:element>
|
206
|
+
<xs:element name="PS_TT_TK_Hours_ImportResponse">
|
207
|
+
<xs:complexType>
|
208
|
+
<xs:sequence>
|
209
|
+
<xs:element minOccurs="0" name="PS_TT_TK_Hours_ImportResult" nillable="true" type="q6:ValidationResult" xmlns:q6="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
210
|
+
</xs:sequence>
|
211
|
+
</xs:complexType>
|
212
|
+
</xs:element>
|
213
|
+
<xs:element name="PS_TT_TK_Hours_BatchImport">
|
214
|
+
<xs:complexType>
|
215
|
+
<xs:sequence>
|
216
|
+
<xs:element minOccurs="0" name="batchList" nillable="true" type="q7:ArrayOfHoursRecord" xmlns:q7="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
217
|
+
</xs:sequence>
|
218
|
+
</xs:complexType>
|
219
|
+
</xs:element>
|
220
|
+
<xs:element name="PS_TT_TK_Hours_BatchImportResponse">
|
221
|
+
<xs:complexType>
|
222
|
+
<xs:sequence>
|
223
|
+
<xs:element minOccurs="0" name="PS_TT_TK_Hours_BatchImportResult" nillable="true" type="q8:ArrayOfValidationFailure" xmlns:q8="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
224
|
+
</xs:sequence>
|
225
|
+
</xs:complexType>
|
226
|
+
</xs:element>
|
227
|
+
<xs:element name="CyCop_JobExport">
|
228
|
+
<xs:complexType>
|
229
|
+
<xs:sequence>
|
230
|
+
<xs:element minOccurs="0" name="FromDate" type="xs:dateTime"/>
|
231
|
+
<xs:element minOccurs="0" name="CyCopDBID" nillable="true" type="xs:short"/>
|
232
|
+
<xs:element minOccurs="0" name="FilterList" nillable="true" type="q9:ArrayOfstring" xmlns:q9="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
233
|
+
</xs:sequence>
|
234
|
+
</xs:complexType>
|
235
|
+
</xs:element>
|
236
|
+
<xs:element name="CyCop_JobExportResponse">
|
237
|
+
<xs:complexType>
|
238
|
+
<xs:sequence>
|
239
|
+
<xs:element minOccurs="0" name="CyCop_JobExportResult" nillable="true" type="xs:string"/>
|
240
|
+
</xs:sequence>
|
241
|
+
</xs:complexType>
|
242
|
+
</xs:element>
|
243
|
+
<xs:element name="CyCop_EmployeeExport">
|
244
|
+
<xs:complexType>
|
245
|
+
<xs:sequence>
|
246
|
+
<xs:element minOccurs="0" name="FromDate" type="xs:dateTime"/>
|
247
|
+
<xs:element minOccurs="0" name="CyCopDBID" nillable="true" type="xs:short"/>
|
248
|
+
</xs:sequence>
|
249
|
+
</xs:complexType>
|
250
|
+
</xs:element>
|
251
|
+
<xs:element name="CyCop_EmployeeExportResponse">
|
252
|
+
<xs:complexType>
|
253
|
+
<xs:sequence>
|
254
|
+
<xs:element minOccurs="0" name="CyCop_EmployeeExportResult" nillable="true" type="xs:string"/>
|
255
|
+
</xs:sequence>
|
256
|
+
</xs:complexType>
|
257
|
+
</xs:element>
|
258
|
+
<xs:element name="CyCop_SingleEmployeeExport">
|
259
|
+
<xs:complexType>
|
260
|
+
<xs:sequence>
|
261
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
262
|
+
<xs:element minOccurs="0" name="JobNumber" nillable="true" type="xs:string"/>
|
263
|
+
</xs:sequence>
|
264
|
+
</xs:complexType>
|
265
|
+
</xs:element>
|
266
|
+
<xs:element name="CyCop_SingleEmployeeExportResponse">
|
267
|
+
<xs:complexType>
|
268
|
+
<xs:sequence>
|
269
|
+
<xs:element minOccurs="0" name="CyCop_SingleEmployeeExportResult" nillable="true" type="xs:string"/>
|
270
|
+
</xs:sequence>
|
271
|
+
</xs:complexType>
|
272
|
+
</xs:element>
|
273
|
+
<xs:element name="CyCop_PostExport">
|
274
|
+
<xs:complexType>
|
275
|
+
<xs:sequence>
|
276
|
+
<xs:element minOccurs="0" name="CyCopDBID" nillable="true" type="xs:short"/>
|
277
|
+
<xs:element minOccurs="0" name="FilterList" nillable="true" type="q10:ArrayOfint" xmlns:q10="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
278
|
+
</xs:sequence>
|
279
|
+
</xs:complexType>
|
280
|
+
</xs:element>
|
281
|
+
<xs:element name="CyCop_PostExportResponse">
|
282
|
+
<xs:complexType>
|
283
|
+
<xs:sequence>
|
284
|
+
<xs:element minOccurs="0" name="CyCop_PostExportResult" nillable="true" type="xs:string"/>
|
285
|
+
</xs:sequence>
|
286
|
+
</xs:complexType>
|
287
|
+
</xs:element>
|
288
|
+
<xs:element name="CyCop_JobContactExport">
|
289
|
+
<xs:complexType>
|
290
|
+
<xs:sequence>
|
291
|
+
<xs:element minOccurs="0" name="CyCopDBID" nillable="true" type="xs:short"/>
|
292
|
+
<xs:element minOccurs="0" name="FilterList" nillable="true" type="q11:ArrayOfstring" xmlns:q11="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
293
|
+
</xs:sequence>
|
294
|
+
</xs:complexType>
|
295
|
+
</xs:element>
|
296
|
+
<xs:element name="CyCop_JobContactExportResponse">
|
297
|
+
<xs:complexType>
|
298
|
+
<xs:sequence>
|
299
|
+
<xs:element minOccurs="0" name="CyCop_JobContactExportResult" nillable="true" type="xs:string"/>
|
300
|
+
</xs:sequence>
|
301
|
+
</xs:complexType>
|
302
|
+
</xs:element>
|
303
|
+
<xs:element name="CyCop_SchedulingExport">
|
304
|
+
<xs:complexType>
|
305
|
+
<xs:sequence>
|
306
|
+
<xs:element minOccurs="0" name="FromDate" type="xs:dateTime"/>
|
307
|
+
<xs:element minOccurs="0" name="ToDate" nillable="true" type="xs:dateTime"/>
|
308
|
+
<xs:element minOccurs="0" name="ChangedOnly" type="xs:boolean"/>
|
309
|
+
<xs:element minOccurs="0" name="CyCopDBID" nillable="true" type="xs:short"/>
|
310
|
+
<xs:element minOccurs="0" name="FilterList" nillable="true" type="q12:ArrayOfint" xmlns:q12="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
311
|
+
<xs:element minOccurs="0" name="IDColumnOnly" type="xs:boolean"/>
|
312
|
+
</xs:sequence>
|
313
|
+
</xs:complexType>
|
314
|
+
</xs:element>
|
315
|
+
<xs:element name="CyCop_SchedulingExportResponse">
|
316
|
+
<xs:complexType>
|
317
|
+
<xs:sequence>
|
318
|
+
<xs:element minOccurs="0" name="CyCop_SchedulingExportResult" nillable="true" type="xs:string"/>
|
319
|
+
</xs:sequence>
|
320
|
+
</xs:complexType>
|
321
|
+
</xs:element>
|
322
|
+
<xs:element name="CyCop_JobHolidayExport">
|
323
|
+
<xs:complexType>
|
324
|
+
<xs:sequence>
|
325
|
+
<xs:element minOccurs="0" name="FromDate" type="xs:dateTime"/>
|
326
|
+
<xs:element minOccurs="0" name="CyCopDBID" nillable="true" type="xs:short"/>
|
327
|
+
<xs:element minOccurs="0" name="FilterList" nillable="true" type="q13:ArrayOfstring" xmlns:q13="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
328
|
+
</xs:sequence>
|
329
|
+
</xs:complexType>
|
330
|
+
</xs:element>
|
331
|
+
<xs:element name="CyCop_JobHolidayExportResponse">
|
332
|
+
<xs:complexType>
|
333
|
+
<xs:sequence>
|
334
|
+
<xs:element minOccurs="0" name="CyCop_JobHolidayExportResult" nillable="true" type="xs:string"/>
|
335
|
+
</xs:sequence>
|
336
|
+
</xs:complexType>
|
337
|
+
</xs:element>
|
338
|
+
<xs:element name="GetActiveDirectoryEmployees">
|
339
|
+
<xs:complexType>
|
340
|
+
<xs:sequence>
|
341
|
+
<xs:element minOccurs="0" name="LastUpdate" type="xs:dateTime"/>
|
342
|
+
<xs:element minOccurs="0" name="EmployeeList" nillable="true" type="xs:string"/>
|
343
|
+
</xs:sequence>
|
344
|
+
</xs:complexType>
|
345
|
+
</xs:element>
|
346
|
+
<xs:element name="GetActiveDirectoryEmployeesResponse">
|
347
|
+
<xs:complexType>
|
348
|
+
<xs:sequence>
|
349
|
+
<xs:element minOccurs="0" name="GetActiveDirectoryEmployeesResult" nillable="true" type="xs:string"/>
|
350
|
+
</xs:sequence>
|
351
|
+
</xs:complexType>
|
352
|
+
</xs:element>
|
353
|
+
<xs:element name="UploadNewHireDocuments">
|
354
|
+
<xs:complexType>
|
355
|
+
<xs:sequence>
|
356
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
357
|
+
<xs:element minOccurs="0" name="ZipDocument" nillable="true" type="xs:base64Binary"/>
|
358
|
+
</xs:sequence>
|
359
|
+
</xs:complexType>
|
360
|
+
</xs:element>
|
361
|
+
<xs:element name="UploadNewHireDocumentsResponse">
|
362
|
+
<xs:complexType>
|
363
|
+
<xs:sequence>
|
364
|
+
<xs:element minOccurs="0" name="UploadNewHireDocumentsResult" nillable="true" type="q14:ValidationResult" xmlns:q14="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
365
|
+
</xs:sequence>
|
366
|
+
</xs:complexType>
|
367
|
+
</xs:element>
|
368
|
+
<xs:element name="LMS_GetActiveEmployees">
|
369
|
+
<xs:complexType>
|
370
|
+
<xs:sequence>
|
371
|
+
<xs:element minOccurs="0" name="Columns" nillable="true" type="q15:ArrayOfstring" xmlns:q15="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
372
|
+
</xs:sequence>
|
373
|
+
</xs:complexType>
|
374
|
+
</xs:element>
|
375
|
+
<xs:element name="LMS_GetActiveEmployeesResponse">
|
376
|
+
<xs:complexType>
|
377
|
+
<xs:sequence>
|
378
|
+
<xs:element minOccurs="0" name="LMS_GetActiveEmployeesResult" nillable="true" type="xs:string"/>
|
379
|
+
</xs:sequence>
|
380
|
+
</xs:complexType>
|
381
|
+
</xs:element>
|
382
|
+
<xs:element name="LMS_ProcessFile">
|
383
|
+
<xs:complexType>
|
384
|
+
<xs:sequence>
|
385
|
+
<xs:element minOccurs="0" name="uploadFile" nillable="true" type="xs:string"/>
|
386
|
+
</xs:sequence>
|
387
|
+
</xs:complexType>
|
388
|
+
</xs:element>
|
389
|
+
<xs:element name="LMS_ProcessFileResponse">
|
390
|
+
<xs:complexType>
|
391
|
+
<xs:sequence>
|
392
|
+
<xs:element minOccurs="0" name="LMS_ProcessFileResult" nillable="true" type="xs:string"/>
|
393
|
+
</xs:sequence>
|
394
|
+
</xs:complexType>
|
395
|
+
</xs:element>
|
396
|
+
<xs:element name="UpdateComplianceCode">
|
397
|
+
<xs:complexType>
|
398
|
+
<xs:sequence>
|
399
|
+
<xs:element minOccurs="0" name="ID" type="xs:int"/>
|
400
|
+
<xs:element minOccurs="0" name="ComplianceID" type="xs:int"/>
|
401
|
+
<xs:element minOccurs="0" name="DueDate" type="xs:dateTime"/>
|
402
|
+
<xs:element minOccurs="0" name="DateCompleted" type="xs:dateTime"/>
|
403
|
+
<xs:element minOccurs="0" name="Notes" nillable="true" type="xs:string"/>
|
404
|
+
<xs:element minOccurs="0" name="Score" nillable="true" type="xs:int"/>
|
405
|
+
<xs:element minOccurs="0" name="UserName" nillable="true" type="xs:string"/>
|
406
|
+
<xs:element minOccurs="0" name="ExternalID" nillable="true" type="xs:int"/>
|
407
|
+
</xs:sequence>
|
408
|
+
</xs:complexType>
|
409
|
+
</xs:element>
|
410
|
+
<xs:element name="UpdateComplianceCodeResponse">
|
411
|
+
<xs:complexType>
|
412
|
+
<xs:sequence>
|
413
|
+
<xs:element minOccurs="0" name="UpdateComplianceCodeResult" type="xs:boolean"/>
|
414
|
+
</xs:sequence>
|
415
|
+
</xs:complexType>
|
416
|
+
</xs:element>
|
417
|
+
<xs:element name="DeleteComplianceCode">
|
418
|
+
<xs:complexType>
|
419
|
+
<xs:sequence>
|
420
|
+
<xs:element minOccurs="0" name="ID" type="xs:int"/>
|
421
|
+
</xs:sequence>
|
422
|
+
</xs:complexType>
|
423
|
+
</xs:element>
|
424
|
+
<xs:element name="DeleteComplianceCodeResponse">
|
425
|
+
<xs:complexType>
|
426
|
+
<xs:sequence>
|
427
|
+
<xs:element minOccurs="0" name="DeleteComplianceCodeResult" type="xs:boolean"/>
|
428
|
+
</xs:sequence>
|
429
|
+
</xs:complexType>
|
430
|
+
</xs:element>
|
431
|
+
<xs:element name="PS_ScheduleExport">
|
432
|
+
<xs:complexType>
|
433
|
+
<xs:sequence>
|
434
|
+
<xs:element minOccurs="0" name="FromDate" type="xs:dateTime"/>
|
435
|
+
<xs:element minOccurs="0" name="ToDate" type="xs:dateTime"/>
|
436
|
+
<xs:element minOccurs="0" name="JobNumber" nillable="true" type="xs:string"/>
|
437
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
438
|
+
</xs:sequence>
|
439
|
+
</xs:complexType>
|
440
|
+
</xs:element>
|
441
|
+
<xs:element name="PS_ScheduleExportResponse">
|
442
|
+
<xs:complexType>
|
443
|
+
<xs:sequence>
|
444
|
+
<xs:element minOccurs="0" name="PS_ScheduleExportResult" nillable="true" type="xs:string"/>
|
445
|
+
</xs:sequence>
|
446
|
+
</xs:complexType>
|
447
|
+
</xs:element>
|
448
|
+
</xs:schema>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/">
|
2
|
+
<xs:element name="anyType" nillable="true" type="xs:anyType"/>
|
3
|
+
<xs:element name="anyURI" nillable="true" type="xs:anyURI"/>
|
4
|
+
<xs:element name="base64Binary" nillable="true" type="xs:base64Binary"/>
|
5
|
+
<xs:element name="boolean" nillable="true" type="xs:boolean"/>
|
6
|
+
<xs:element name="byte" nillable="true" type="xs:byte"/>
|
7
|
+
<xs:element name="dateTime" nillable="true" type="xs:dateTime"/>
|
8
|
+
<xs:element name="decimal" nillable="true" type="xs:decimal"/>
|
9
|
+
<xs:element name="double" nillable="true" type="xs:double"/>
|
10
|
+
<xs:element name="float" nillable="true" type="xs:float"/>
|
11
|
+
<xs:element name="int" nillable="true" type="xs:int"/>
|
12
|
+
<xs:element name="long" nillable="true" type="xs:long"/>
|
13
|
+
<xs:element name="QName" nillable="true" type="xs:QName"/>
|
14
|
+
<xs:element name="short" nillable="true" type="xs:short"/>
|
15
|
+
<xs:element name="string" nillable="true" type="xs:string"/>
|
16
|
+
<xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte"/>
|
17
|
+
<xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt"/>
|
18
|
+
<xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong"/>
|
19
|
+
<xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort"/>
|
20
|
+
<xs:element name="char" nillable="true" type="tns:char"/>
|
21
|
+
<xs:simpleType name="char">
|
22
|
+
<xs:restriction base="xs:int"/>
|
23
|
+
</xs:simpleType>
|
24
|
+
<xs:element name="duration" nillable="true" type="tns:duration"/>
|
25
|
+
<xs:simpleType name="duration">
|
26
|
+
<xs:restriction base="xs:duration">
|
27
|
+
<xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?"/>
|
28
|
+
<xs:minInclusive value="-P10675199DT2H48M5.4775808S"/>
|
29
|
+
<xs:maxInclusive value="P10675199DT2H48M5.4775807S"/>
|
30
|
+
</xs:restriction>
|
31
|
+
</xs:simpleType>
|
32
|
+
<xs:element name="guid" nillable="true" type="tns:guid"/>
|
33
|
+
<xs:simpleType name="guid">
|
34
|
+
<xs:restriction base="xs:string">
|
35
|
+
<xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}"/>
|
36
|
+
</xs:restriction>
|
37
|
+
</xs:simpleType>
|
38
|
+
<xs:attribute name="FactoryType" type="xs:QName"/>
|
39
|
+
<xs:attribute name="Id" type="xs:ID"/>
|
40
|
+
<xs:attribute name="Ref" type="xs:IDREF"/>
|
41
|
+
</xs:schema>
|