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,542 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- https://winteamservicestest.myteamsoftware.com/Services.svc?wsdl -->
|
3
|
+
<wsdl:definitions name="ServiceManager" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:tns="http://tempuri.org/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
|
4
|
+
<wsp:Policy wsu:Id="BasicHttpBinding_IWinTeamServiceManager_policy">
|
5
|
+
<wsp:ExactlyOne>
|
6
|
+
<wsp:All>
|
7
|
+
<sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
|
8
|
+
<wsp:Policy>
|
9
|
+
<sp:TransportToken>
|
10
|
+
<wsp:Policy>
|
11
|
+
<sp:HttpsToken RequireClientCertificate="false"/>
|
12
|
+
</wsp:Policy>
|
13
|
+
</sp:TransportToken>
|
14
|
+
<sp:AlgorithmSuite>
|
15
|
+
<wsp:Policy>
|
16
|
+
<sp:Basic256/>
|
17
|
+
</wsp:Policy>
|
18
|
+
</sp:AlgorithmSuite>
|
19
|
+
<sp:Layout>
|
20
|
+
<wsp:Policy>
|
21
|
+
<sp:Strict/>
|
22
|
+
</wsp:Policy>
|
23
|
+
</sp:Layout>
|
24
|
+
</wsp:Policy>
|
25
|
+
</sp:TransportBinding>
|
26
|
+
</wsp:All>
|
27
|
+
</wsp:ExactlyOne>
|
28
|
+
</wsp:Policy>
|
29
|
+
<wsdl:types>
|
30
|
+
<xsd:schema targetNamespace="http://tempuri.org/Imports">
|
31
|
+
<xsd:import schemaLocation="https://winteamservicestest.myteamsoftware.com/Services.svc?xsd=xsd0" namespace="http://tempuri.org/"/>
|
32
|
+
<xsd:import schemaLocation="https://winteamservicestest.myteamsoftware.com/Services.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/"/>
|
33
|
+
<xsd:import schemaLocation="https://winteamservicestest.myteamsoftware.com/Services.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator"/>
|
34
|
+
<xsd:import schemaLocation="https://winteamservicestest.myteamsoftware.com/Services.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
35
|
+
</xsd:schema>
|
36
|
+
</wsdl:types>
|
37
|
+
<wsdl:message name="IWinTeamServiceManager_Login_InputMessage">
|
38
|
+
<wsdl:part name="parameters" element="tns:Login"/>
|
39
|
+
</wsdl:message>
|
40
|
+
<wsdl:message name="IWinTeamServiceManager_Login_OutputMessage">
|
41
|
+
<wsdl:part name="parameters" element="tns:LoginResponse"/>
|
42
|
+
</wsdl:message>
|
43
|
+
<wsdl:message name="IWinTeamServiceManager_SaveEmployee_InputMessage">
|
44
|
+
<wsdl:part name="parameters" element="tns:SaveEmployee"/>
|
45
|
+
</wsdl:message>
|
46
|
+
<wsdl:message name="IWinTeamServiceManager_SaveEmployee_OutputMessage">
|
47
|
+
<wsdl:part name="parameters" element="tns:SaveEmployeeResponse"/>
|
48
|
+
</wsdl:message>
|
49
|
+
<wsdl:message name="IWinTeamServiceManager_SavePartialEmployee_InputMessage">
|
50
|
+
<wsdl:part name="parameters" element="tns:SavePartialEmployee"/>
|
51
|
+
</wsdl:message>
|
52
|
+
<wsdl:message name="IWinTeamServiceManager_SavePartialEmployee_OutputMessage">
|
53
|
+
<wsdl:part name="parameters" element="tns:SavePartialEmployeeResponse"/>
|
54
|
+
</wsdl:message>
|
55
|
+
<wsdl:message name="IWinTeamServiceManager_GetEmployeeComboListXML_InputMessage">
|
56
|
+
<wsdl:part name="parameters" element="tns:GetEmployeeComboListXML"/>
|
57
|
+
</wsdl:message>
|
58
|
+
<wsdl:message name="IWinTeamServiceManager_GetEmployeeComboListXML_OutputMessage">
|
59
|
+
<wsdl:part name="parameters" element="tns:GetEmployeeComboListXMLResponse"/>
|
60
|
+
</wsdl:message>
|
61
|
+
<wsdl:message name="IWinTeamServiceManager_eHubValidEmployee_InputMessage">
|
62
|
+
<wsdl:part name="parameters" element="tns:eHubValidEmployee"/>
|
63
|
+
</wsdl:message>
|
64
|
+
<wsdl:message name="IWinTeamServiceManager_eHubValidEmployee_OutputMessage">
|
65
|
+
<wsdl:part name="parameters" element="tns:eHubValidEmployeeResponse"/>
|
66
|
+
</wsdl:message>
|
67
|
+
<wsdl:message name="IWinTeamServiceManager_eHubValidCustomer_InputMessage">
|
68
|
+
<wsdl:part name="parameters" element="tns:eHubValidCustomer"/>
|
69
|
+
</wsdl:message>
|
70
|
+
<wsdl:message name="IWinTeamServiceManager_eHubValidCustomer_OutputMessage">
|
71
|
+
<wsdl:part name="parameters" element="tns:eHubValidCustomerResponse"/>
|
72
|
+
</wsdl:message>
|
73
|
+
<wsdl:message name="IWinTeamServiceManager_ValidEmployee_InputMessage">
|
74
|
+
<wsdl:part name="parameters" element="tns:ValidEmployee"/>
|
75
|
+
</wsdl:message>
|
76
|
+
<wsdl:message name="IWinTeamServiceManager_ValidEmployee_OutputMessage">
|
77
|
+
<wsdl:part name="parameters" element="tns:ValidEmployeeResponse"/>
|
78
|
+
</wsdl:message>
|
79
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeProfile_InputMessage">
|
80
|
+
<wsdl:part name="parameters" element="tns:EmployeeProfile"/>
|
81
|
+
</wsdl:message>
|
82
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeProfile_OutputMessage">
|
83
|
+
<wsdl:part name="parameters" element="tns:EmployeeProfileResponse"/>
|
84
|
+
</wsdl:message>
|
85
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeComplianceCodeImport_InputMessage">
|
86
|
+
<wsdl:part name="parameters" element="tns:EmployeeComplianceCodeImport"/>
|
87
|
+
</wsdl:message>
|
88
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeComplianceCodeImport_OutputMessage">
|
89
|
+
<wsdl:part name="parameters" element="tns:EmployeeComplianceCodeImportResponse"/>
|
90
|
+
</wsdl:message>
|
91
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeComplianceCodesCompletedExport_InputMessage">
|
92
|
+
<wsdl:part name="parameters" element="tns:EmployeeComplianceCodesCompletedExport"/>
|
93
|
+
</wsdl:message>
|
94
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeComplianceCodesCompletedExport_OutputMessage">
|
95
|
+
<wsdl:part name="parameters" element="tns:EmployeeComplianceCodesCompletedExportResponse"/>
|
96
|
+
</wsdl:message>
|
97
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeComplianceCodesNotCompletedExport_InputMessage">
|
98
|
+
<wsdl:part name="parameters" element="tns:EmployeeComplianceCodesNotCompletedExport"/>
|
99
|
+
</wsdl:message>
|
100
|
+
<wsdl:message name="IWinTeamServiceManager_EmployeeComplianceCodesNotCompletedExport_OutputMessage">
|
101
|
+
<wsdl:part name="parameters" element="tns:EmployeeComplianceCodesNotCompletedExportResponse"/>
|
102
|
+
</wsdl:message>
|
103
|
+
<wsdl:message name="IWinTeamServiceManager_PS_TT_TK_Hours_Import_InputMessage">
|
104
|
+
<wsdl:part name="parameters" element="tns:PS_TT_TK_Hours_Import"/>
|
105
|
+
</wsdl:message>
|
106
|
+
<wsdl:message name="IWinTeamServiceManager_PS_TT_TK_Hours_Import_OutputMessage">
|
107
|
+
<wsdl:part name="parameters" element="tns:PS_TT_TK_Hours_ImportResponse"/>
|
108
|
+
</wsdl:message>
|
109
|
+
<wsdl:message name="IWinTeamServiceManager_PS_TT_TK_Hours_BatchImport_InputMessage">
|
110
|
+
<wsdl:part name="parameters" element="tns:PS_TT_TK_Hours_BatchImport"/>
|
111
|
+
</wsdl:message>
|
112
|
+
<wsdl:message name="IWinTeamServiceManager_PS_TT_TK_Hours_BatchImport_OutputMessage">
|
113
|
+
<wsdl:part name="parameters" element="tns:PS_TT_TK_Hours_BatchImportResponse"/>
|
114
|
+
</wsdl:message>
|
115
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_JobExport_InputMessage">
|
116
|
+
<wsdl:part name="parameters" element="tns:CyCop_JobExport"/>
|
117
|
+
</wsdl:message>
|
118
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_JobExport_OutputMessage">
|
119
|
+
<wsdl:part name="parameters" element="tns:CyCop_JobExportResponse"/>
|
120
|
+
</wsdl:message>
|
121
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_EmployeeExport_InputMessage">
|
122
|
+
<wsdl:part name="parameters" element="tns:CyCop_EmployeeExport"/>
|
123
|
+
</wsdl:message>
|
124
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_EmployeeExport_OutputMessage">
|
125
|
+
<wsdl:part name="parameters" element="tns:CyCop_EmployeeExportResponse"/>
|
126
|
+
</wsdl:message>
|
127
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_SingleEmployeeExport_InputMessage">
|
128
|
+
<wsdl:part name="parameters" element="tns:CyCop_SingleEmployeeExport"/>
|
129
|
+
</wsdl:message>
|
130
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_SingleEmployeeExport_OutputMessage">
|
131
|
+
<wsdl:part name="parameters" element="tns:CyCop_SingleEmployeeExportResponse"/>
|
132
|
+
</wsdl:message>
|
133
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_PostExport_InputMessage">
|
134
|
+
<wsdl:part name="parameters" element="tns:CyCop_PostExport"/>
|
135
|
+
</wsdl:message>
|
136
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_PostExport_OutputMessage">
|
137
|
+
<wsdl:part name="parameters" element="tns:CyCop_PostExportResponse"/>
|
138
|
+
</wsdl:message>
|
139
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_JobContactExport_InputMessage">
|
140
|
+
<wsdl:part name="parameters" element="tns:CyCop_JobContactExport"/>
|
141
|
+
</wsdl:message>
|
142
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_JobContactExport_OutputMessage">
|
143
|
+
<wsdl:part name="parameters" element="tns:CyCop_JobContactExportResponse"/>
|
144
|
+
</wsdl:message>
|
145
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_SchedulingExport_InputMessage">
|
146
|
+
<wsdl:part name="parameters" element="tns:CyCop_SchedulingExport"/>
|
147
|
+
</wsdl:message>
|
148
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_SchedulingExport_OutputMessage">
|
149
|
+
<wsdl:part name="parameters" element="tns:CyCop_SchedulingExportResponse"/>
|
150
|
+
</wsdl:message>
|
151
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_JobHolidayExport_InputMessage">
|
152
|
+
<wsdl:part name="parameters" element="tns:CyCop_JobHolidayExport"/>
|
153
|
+
</wsdl:message>
|
154
|
+
<wsdl:message name="IWinTeamServiceManager_CyCop_JobHolidayExport_OutputMessage">
|
155
|
+
<wsdl:part name="parameters" element="tns:CyCop_JobHolidayExportResponse"/>
|
156
|
+
</wsdl:message>
|
157
|
+
<wsdl:message name="IWinTeamServiceManager_GetActiveDirectoryEmployees_InputMessage">
|
158
|
+
<wsdl:part name="parameters" element="tns:GetActiveDirectoryEmployees"/>
|
159
|
+
</wsdl:message>
|
160
|
+
<wsdl:message name="IWinTeamServiceManager_GetActiveDirectoryEmployees_OutputMessage">
|
161
|
+
<wsdl:part name="parameters" element="tns:GetActiveDirectoryEmployeesResponse"/>
|
162
|
+
</wsdl:message>
|
163
|
+
<wsdl:message name="IWinTeamServiceManager_UploadNewHireDocuments_InputMessage">
|
164
|
+
<wsdl:part name="parameters" element="tns:UploadNewHireDocuments"/>
|
165
|
+
</wsdl:message>
|
166
|
+
<wsdl:message name="IWinTeamServiceManager_UploadNewHireDocuments_OutputMessage">
|
167
|
+
<wsdl:part name="parameters" element="tns:UploadNewHireDocumentsResponse"/>
|
168
|
+
</wsdl:message>
|
169
|
+
<wsdl:message name="IWinTeamServiceManager_LMS_GetActiveEmployees_InputMessage">
|
170
|
+
<wsdl:part name="parameters" element="tns:LMS_GetActiveEmployees"/>
|
171
|
+
</wsdl:message>
|
172
|
+
<wsdl:message name="IWinTeamServiceManager_LMS_GetActiveEmployees_OutputMessage">
|
173
|
+
<wsdl:part name="parameters" element="tns:LMS_GetActiveEmployeesResponse"/>
|
174
|
+
</wsdl:message>
|
175
|
+
<wsdl:message name="IWinTeamServiceManager_LMS_ProcessFile_InputMessage">
|
176
|
+
<wsdl:part name="parameters" element="tns:LMS_ProcessFile"/>
|
177
|
+
</wsdl:message>
|
178
|
+
<wsdl:message name="IWinTeamServiceManager_LMS_ProcessFile_OutputMessage">
|
179
|
+
<wsdl:part name="parameters" element="tns:LMS_ProcessFileResponse"/>
|
180
|
+
</wsdl:message>
|
181
|
+
<wsdl:message name="IWinTeamServiceManager_UpdateComplianceCode_InputMessage">
|
182
|
+
<wsdl:part name="parameters" element="tns:UpdateComplianceCode"/>
|
183
|
+
</wsdl:message>
|
184
|
+
<wsdl:message name="IWinTeamServiceManager_UpdateComplianceCode_OutputMessage">
|
185
|
+
<wsdl:part name="parameters" element="tns:UpdateComplianceCodeResponse"/>
|
186
|
+
</wsdl:message>
|
187
|
+
<wsdl:message name="IWinTeamServiceManager_DeleteComplianceCode_InputMessage">
|
188
|
+
<wsdl:part name="parameters" element="tns:DeleteComplianceCode"/>
|
189
|
+
</wsdl:message>
|
190
|
+
<wsdl:message name="IWinTeamServiceManager_DeleteComplianceCode_OutputMessage">
|
191
|
+
<wsdl:part name="parameters" element="tns:DeleteComplianceCodeResponse"/>
|
192
|
+
</wsdl:message>
|
193
|
+
<wsdl:portType name="IWinTeamServiceManager">
|
194
|
+
<wsdl:operation name="Login">
|
195
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/Login" message="tns:IWinTeamServiceManager_Login_InputMessage"/>
|
196
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/LoginResponse" message="tns:IWinTeamServiceManager_Login_OutputMessage"/>
|
197
|
+
</wsdl:operation>
|
198
|
+
<wsdl:operation name="SaveEmployee">
|
199
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/SaveEmployee" message="tns:IWinTeamServiceManager_SaveEmployee_InputMessage"/>
|
200
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/SaveEmployeeResponse" message="tns:IWinTeamServiceManager_SaveEmployee_OutputMessage"/>
|
201
|
+
</wsdl:operation>
|
202
|
+
<wsdl:operation name="SavePartialEmployee">
|
203
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/SavePartialEmployee" message="tns:IWinTeamServiceManager_SavePartialEmployee_InputMessage"/>
|
204
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/SavePartialEmployeeResponse" message="tns:IWinTeamServiceManager_SavePartialEmployee_OutputMessage"/>
|
205
|
+
</wsdl:operation>
|
206
|
+
<wsdl:operation name="GetEmployeeComboListXML">
|
207
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/GetEmployeeComboListXML" message="tns:IWinTeamServiceManager_GetEmployeeComboListXML_InputMessage"/>
|
208
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/GetEmployeeComboListXMLResponse" message="tns:IWinTeamServiceManager_GetEmployeeComboListXML_OutputMessage"/>
|
209
|
+
</wsdl:operation>
|
210
|
+
<wsdl:operation name="eHubValidEmployee">
|
211
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/eHubValidEmployee" message="tns:IWinTeamServiceManager_eHubValidEmployee_InputMessage"/>
|
212
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/eHubValidEmployeeResponse" message="tns:IWinTeamServiceManager_eHubValidEmployee_OutputMessage"/>
|
213
|
+
</wsdl:operation>
|
214
|
+
<wsdl:operation name="eHubValidCustomer">
|
215
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/eHubValidCustomer" message="tns:IWinTeamServiceManager_eHubValidCustomer_InputMessage"/>
|
216
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/eHubValidCustomerResponse" message="tns:IWinTeamServiceManager_eHubValidCustomer_OutputMessage"/>
|
217
|
+
</wsdl:operation>
|
218
|
+
<wsdl:operation name="ValidEmployee">
|
219
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/ValidEmployee" message="tns:IWinTeamServiceManager_ValidEmployee_InputMessage"/>
|
220
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/ValidEmployeeResponse" message="tns:IWinTeamServiceManager_ValidEmployee_OutputMessage"/>
|
221
|
+
</wsdl:operation>
|
222
|
+
<wsdl:operation name="EmployeeProfile">
|
223
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeProfile" message="tns:IWinTeamServiceManager_EmployeeProfile_InputMessage"/>
|
224
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeProfileResponse" message="tns:IWinTeamServiceManager_EmployeeProfile_OutputMessage"/>
|
225
|
+
</wsdl:operation>
|
226
|
+
<wsdl:operation name="EmployeeComplianceCodeImport">
|
227
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodeImport" message="tns:IWinTeamServiceManager_EmployeeComplianceCodeImport_InputMessage"/>
|
228
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodeImportResponse" message="tns:IWinTeamServiceManager_EmployeeComplianceCodeImport_OutputMessage"/>
|
229
|
+
</wsdl:operation>
|
230
|
+
<wsdl:operation name="EmployeeComplianceCodesCompletedExport">
|
231
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodesCompletedExport" message="tns:IWinTeamServiceManager_EmployeeComplianceCodesCompletedExport_InputMessage"/>
|
232
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodesCompletedExportResponse" message="tns:IWinTeamServiceManager_EmployeeComplianceCodesCompletedExport_OutputMessage"/>
|
233
|
+
</wsdl:operation>
|
234
|
+
<wsdl:operation name="EmployeeComplianceCodesNotCompletedExport">
|
235
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodesNotCompletedExport" message="tns:IWinTeamServiceManager_EmployeeComplianceCodesNotCompletedExport_InputMessage"/>
|
236
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodesNotCompletedExportResponse" message="tns:IWinTeamServiceManager_EmployeeComplianceCodesNotCompletedExport_OutputMessage"/>
|
237
|
+
</wsdl:operation>
|
238
|
+
<wsdl:operation name="PS_TT_TK_Hours_Import">
|
239
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/PS_TT_TK_Hours_Import" message="tns:IWinTeamServiceManager_PS_TT_TK_Hours_Import_InputMessage"/>
|
240
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/PS_TT_TK_Hours_ImportResponse" message="tns:IWinTeamServiceManager_PS_TT_TK_Hours_Import_OutputMessage"/>
|
241
|
+
</wsdl:operation>
|
242
|
+
<wsdl:operation name="PS_TT_TK_Hours_BatchImport">
|
243
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/PS_TT_TK_Hours_BatchImport" message="tns:IWinTeamServiceManager_PS_TT_TK_Hours_BatchImport_InputMessage"/>
|
244
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/PS_TT_TK_Hours_BatchImportResponse" message="tns:IWinTeamServiceManager_PS_TT_TK_Hours_BatchImport_OutputMessage"/>
|
245
|
+
</wsdl:operation>
|
246
|
+
<wsdl:operation name="CyCop_JobExport">
|
247
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_JobExport" message="tns:IWinTeamServiceManager_CyCop_JobExport_InputMessage"/>
|
248
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_JobExportResponse" message="tns:IWinTeamServiceManager_CyCop_JobExport_OutputMessage"/>
|
249
|
+
</wsdl:operation>
|
250
|
+
<wsdl:operation name="CyCop_EmployeeExport">
|
251
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_EmployeeExport" message="tns:IWinTeamServiceManager_CyCop_EmployeeExport_InputMessage"/>
|
252
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_EmployeeExportResponse" message="tns:IWinTeamServiceManager_CyCop_EmployeeExport_OutputMessage"/>
|
253
|
+
</wsdl:operation>
|
254
|
+
<wsdl:operation name="CyCop_SingleEmployeeExport">
|
255
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_SingleEmployeeExport" message="tns:IWinTeamServiceManager_CyCop_SingleEmployeeExport_InputMessage"/>
|
256
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_SingleEmployeeExportResponse" message="tns:IWinTeamServiceManager_CyCop_SingleEmployeeExport_OutputMessage"/>
|
257
|
+
</wsdl:operation>
|
258
|
+
<wsdl:operation name="CyCop_PostExport">
|
259
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_PostExport" message="tns:IWinTeamServiceManager_CyCop_PostExport_InputMessage"/>
|
260
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_PostExportResponse" message="tns:IWinTeamServiceManager_CyCop_PostExport_OutputMessage"/>
|
261
|
+
</wsdl:operation>
|
262
|
+
<wsdl:operation name="CyCop_JobContactExport">
|
263
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_JobContactExport" message="tns:IWinTeamServiceManager_CyCop_JobContactExport_InputMessage"/>
|
264
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_JobContactExportResponse" message="tns:IWinTeamServiceManager_CyCop_JobContactExport_OutputMessage"/>
|
265
|
+
</wsdl:operation>
|
266
|
+
<wsdl:operation name="CyCop_SchedulingExport">
|
267
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_SchedulingExport" message="tns:IWinTeamServiceManager_CyCop_SchedulingExport_InputMessage"/>
|
268
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_SchedulingExportResponse" message="tns:IWinTeamServiceManager_CyCop_SchedulingExport_OutputMessage"/>
|
269
|
+
</wsdl:operation>
|
270
|
+
<wsdl:operation name="CyCop_JobHolidayExport">
|
271
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_JobHolidayExport" message="tns:IWinTeamServiceManager_CyCop_JobHolidayExport_InputMessage"/>
|
272
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/CyCop_JobHolidayExportResponse" message="tns:IWinTeamServiceManager_CyCop_JobHolidayExport_OutputMessage"/>
|
273
|
+
</wsdl:operation>
|
274
|
+
<wsdl:operation name="GetActiveDirectoryEmployees">
|
275
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/GetActiveDirectoryEmployees" message="tns:IWinTeamServiceManager_GetActiveDirectoryEmployees_InputMessage"/>
|
276
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/GetActiveDirectoryEmployeesResponse" message="tns:IWinTeamServiceManager_GetActiveDirectoryEmployees_OutputMessage"/>
|
277
|
+
</wsdl:operation>
|
278
|
+
<wsdl:operation name="UploadNewHireDocuments">
|
279
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/UploadNewHireDocuments" message="tns:IWinTeamServiceManager_UploadNewHireDocuments_InputMessage"/>
|
280
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/UploadNewHireDocumentsResponse" message="tns:IWinTeamServiceManager_UploadNewHireDocuments_OutputMessage"/>
|
281
|
+
</wsdl:operation>
|
282
|
+
<wsdl:operation name="LMS_GetActiveEmployees">
|
283
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/LMS_GetActiveEmployees" message="tns:IWinTeamServiceManager_LMS_GetActiveEmployees_InputMessage"/>
|
284
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/LMS_GetActiveEmployeesResponse" message="tns:IWinTeamServiceManager_LMS_GetActiveEmployees_OutputMessage"/>
|
285
|
+
</wsdl:operation>
|
286
|
+
<wsdl:operation name="LMS_ProcessFile">
|
287
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/LMS_ProcessFile" message="tns:IWinTeamServiceManager_LMS_ProcessFile_InputMessage"/>
|
288
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/LMS_ProcessFileResponse" message="tns:IWinTeamServiceManager_LMS_ProcessFile_OutputMessage"/>
|
289
|
+
</wsdl:operation>
|
290
|
+
<wsdl:operation name="UpdateComplianceCode">
|
291
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/UpdateComplianceCode" message="tns:IWinTeamServiceManager_UpdateComplianceCode_InputMessage"/>
|
292
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/UpdateComplianceCodeResponse" message="tns:IWinTeamServiceManager_UpdateComplianceCode_OutputMessage"/>
|
293
|
+
</wsdl:operation>
|
294
|
+
<wsdl:operation name="DeleteComplianceCode">
|
295
|
+
<wsdl:input wsaw:Action="http://tempuri.org/IWinTeamServiceManager/DeleteComplianceCode" message="tns:IWinTeamServiceManager_DeleteComplianceCode_InputMessage"/>
|
296
|
+
<wsdl:output wsaw:Action="http://tempuri.org/IWinTeamServiceManager/DeleteComplianceCodeResponse" message="tns:IWinTeamServiceManager_DeleteComplianceCode_OutputMessage"/>
|
297
|
+
</wsdl:operation>
|
298
|
+
</wsdl:portType>
|
299
|
+
<wsdl:binding name="BasicHttpBinding_IWinTeamServiceManager" type="tns:IWinTeamServiceManager">
|
300
|
+
<wsp:PolicyReference URI="#BasicHttpBinding_IWinTeamServiceManager_policy"/>
|
301
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
302
|
+
<wsdl:operation name="Login">
|
303
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/Login" style="document"/>
|
304
|
+
<wsdl:input>
|
305
|
+
<soap:body use="literal"/>
|
306
|
+
</wsdl:input>
|
307
|
+
<wsdl:output>
|
308
|
+
<soap:body use="literal"/>
|
309
|
+
</wsdl:output>
|
310
|
+
</wsdl:operation>
|
311
|
+
<wsdl:operation name="SaveEmployee">
|
312
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/SaveEmployee" style="document"/>
|
313
|
+
<wsdl:input>
|
314
|
+
<soap:body use="literal"/>
|
315
|
+
</wsdl:input>
|
316
|
+
<wsdl:output>
|
317
|
+
<soap:body use="literal"/>
|
318
|
+
</wsdl:output>
|
319
|
+
</wsdl:operation>
|
320
|
+
<wsdl:operation name="SavePartialEmployee">
|
321
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/SavePartialEmployee" style="document"/>
|
322
|
+
<wsdl:input>
|
323
|
+
<soap:body use="literal"/>
|
324
|
+
</wsdl:input>
|
325
|
+
<wsdl:output>
|
326
|
+
<soap:body use="literal"/>
|
327
|
+
</wsdl:output>
|
328
|
+
</wsdl:operation>
|
329
|
+
<wsdl:operation name="GetEmployeeComboListXML">
|
330
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/GetEmployeeComboListXML" style="document"/>
|
331
|
+
<wsdl:input>
|
332
|
+
<soap:body use="literal"/>
|
333
|
+
</wsdl:input>
|
334
|
+
<wsdl:output>
|
335
|
+
<soap:body use="literal"/>
|
336
|
+
</wsdl:output>
|
337
|
+
</wsdl:operation>
|
338
|
+
<wsdl:operation name="eHubValidEmployee">
|
339
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/eHubValidEmployee" style="document"/>
|
340
|
+
<wsdl:input>
|
341
|
+
<soap:body use="literal"/>
|
342
|
+
</wsdl:input>
|
343
|
+
<wsdl:output>
|
344
|
+
<soap:body use="literal"/>
|
345
|
+
</wsdl:output>
|
346
|
+
</wsdl:operation>
|
347
|
+
<wsdl:operation name="eHubValidCustomer">
|
348
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/eHubValidCustomer" style="document"/>
|
349
|
+
<wsdl:input>
|
350
|
+
<soap:body use="literal"/>
|
351
|
+
</wsdl:input>
|
352
|
+
<wsdl:output>
|
353
|
+
<soap:body use="literal"/>
|
354
|
+
</wsdl:output>
|
355
|
+
</wsdl:operation>
|
356
|
+
<wsdl:operation name="ValidEmployee">
|
357
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/ValidEmployee" style="document"/>
|
358
|
+
<wsdl:input>
|
359
|
+
<soap:body use="literal"/>
|
360
|
+
</wsdl:input>
|
361
|
+
<wsdl:output>
|
362
|
+
<soap:body use="literal"/>
|
363
|
+
</wsdl:output>
|
364
|
+
</wsdl:operation>
|
365
|
+
<wsdl:operation name="EmployeeProfile">
|
366
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/EmployeeProfile" style="document"/>
|
367
|
+
<wsdl:input>
|
368
|
+
<soap:body use="literal"/>
|
369
|
+
</wsdl:input>
|
370
|
+
<wsdl:output>
|
371
|
+
<soap:body use="literal"/>
|
372
|
+
</wsdl:output>
|
373
|
+
</wsdl:operation>
|
374
|
+
<wsdl:operation name="EmployeeComplianceCodeImport">
|
375
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodeImport" style="document"/>
|
376
|
+
<wsdl:input>
|
377
|
+
<soap:body use="literal"/>
|
378
|
+
</wsdl:input>
|
379
|
+
<wsdl:output>
|
380
|
+
<soap:body use="literal"/>
|
381
|
+
</wsdl:output>
|
382
|
+
</wsdl:operation>
|
383
|
+
<wsdl:operation name="EmployeeComplianceCodesCompletedExport">
|
384
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodesCompletedExport" style="document"/>
|
385
|
+
<wsdl:input>
|
386
|
+
<soap:body use="literal"/>
|
387
|
+
</wsdl:input>
|
388
|
+
<wsdl:output>
|
389
|
+
<soap:body use="literal"/>
|
390
|
+
</wsdl:output>
|
391
|
+
</wsdl:operation>
|
392
|
+
<wsdl:operation name="EmployeeComplianceCodesNotCompletedExport">
|
393
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/EmployeeComplianceCodesNotCompletedExport" style="document"/>
|
394
|
+
<wsdl:input>
|
395
|
+
<soap:body use="literal"/>
|
396
|
+
</wsdl:input>
|
397
|
+
<wsdl:output>
|
398
|
+
<soap:body use="literal"/>
|
399
|
+
</wsdl:output>
|
400
|
+
</wsdl:operation>
|
401
|
+
<wsdl:operation name="PS_TT_TK_Hours_Import">
|
402
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/PS_TT_TK_Hours_Import" style="document"/>
|
403
|
+
<wsdl:input>
|
404
|
+
<soap:body use="literal"/>
|
405
|
+
</wsdl:input>
|
406
|
+
<wsdl:output>
|
407
|
+
<soap:body use="literal"/>
|
408
|
+
</wsdl:output>
|
409
|
+
</wsdl:operation>
|
410
|
+
<wsdl:operation name="PS_TT_TK_Hours_BatchImport">
|
411
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/PS_TT_TK_Hours_BatchImport" style="document"/>
|
412
|
+
<wsdl:input>
|
413
|
+
<soap:body use="literal"/>
|
414
|
+
</wsdl:input>
|
415
|
+
<wsdl:output>
|
416
|
+
<soap:body use="literal"/>
|
417
|
+
</wsdl:output>
|
418
|
+
</wsdl:operation>
|
419
|
+
<wsdl:operation name="CyCop_JobExport">
|
420
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/CyCop_JobExport" style="document"/>
|
421
|
+
<wsdl:input>
|
422
|
+
<soap:body use="literal"/>
|
423
|
+
</wsdl:input>
|
424
|
+
<wsdl:output>
|
425
|
+
<soap:body use="literal"/>
|
426
|
+
</wsdl:output>
|
427
|
+
</wsdl:operation>
|
428
|
+
<wsdl:operation name="CyCop_EmployeeExport">
|
429
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/CyCop_EmployeeExport" style="document"/>
|
430
|
+
<wsdl:input>
|
431
|
+
<soap:body use="literal"/>
|
432
|
+
</wsdl:input>
|
433
|
+
<wsdl:output>
|
434
|
+
<soap:body use="literal"/>
|
435
|
+
</wsdl:output>
|
436
|
+
</wsdl:operation>
|
437
|
+
<wsdl:operation name="CyCop_SingleEmployeeExport">
|
438
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/CyCop_SingleEmployeeExport" style="document"/>
|
439
|
+
<wsdl:input>
|
440
|
+
<soap:body use="literal"/>
|
441
|
+
</wsdl:input>
|
442
|
+
<wsdl:output>
|
443
|
+
<soap:body use="literal"/>
|
444
|
+
</wsdl:output>
|
445
|
+
</wsdl:operation>
|
446
|
+
<wsdl:operation name="CyCop_PostExport">
|
447
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/CyCop_PostExport" style="document"/>
|
448
|
+
<wsdl:input>
|
449
|
+
<soap:body use="literal"/>
|
450
|
+
</wsdl:input>
|
451
|
+
<wsdl:output>
|
452
|
+
<soap:body use="literal"/>
|
453
|
+
</wsdl:output>
|
454
|
+
</wsdl:operation>
|
455
|
+
<wsdl:operation name="CyCop_JobContactExport">
|
456
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/CyCop_JobContactExport" style="document"/>
|
457
|
+
<wsdl:input>
|
458
|
+
<soap:body use="literal"/>
|
459
|
+
</wsdl:input>
|
460
|
+
<wsdl:output>
|
461
|
+
<soap:body use="literal"/>
|
462
|
+
</wsdl:output>
|
463
|
+
</wsdl:operation>
|
464
|
+
<wsdl:operation name="CyCop_SchedulingExport">
|
465
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/CyCop_SchedulingExport" style="document"/>
|
466
|
+
<wsdl:input>
|
467
|
+
<soap:body use="literal"/>
|
468
|
+
</wsdl:input>
|
469
|
+
<wsdl:output>
|
470
|
+
<soap:body use="literal"/>
|
471
|
+
</wsdl:output>
|
472
|
+
</wsdl:operation>
|
473
|
+
<wsdl:operation name="CyCop_JobHolidayExport">
|
474
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/CyCop_JobHolidayExport" style="document"/>
|
475
|
+
<wsdl:input>
|
476
|
+
<soap:body use="literal"/>
|
477
|
+
</wsdl:input>
|
478
|
+
<wsdl:output>
|
479
|
+
<soap:body use="literal"/>
|
480
|
+
</wsdl:output>
|
481
|
+
</wsdl:operation>
|
482
|
+
<wsdl:operation name="GetActiveDirectoryEmployees">
|
483
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/GetActiveDirectoryEmployees" style="document"/>
|
484
|
+
<wsdl:input>
|
485
|
+
<soap:body use="literal"/>
|
486
|
+
</wsdl:input>
|
487
|
+
<wsdl:output>
|
488
|
+
<soap:body use="literal"/>
|
489
|
+
</wsdl:output>
|
490
|
+
</wsdl:operation>
|
491
|
+
<wsdl:operation name="UploadNewHireDocuments">
|
492
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/UploadNewHireDocuments" style="document"/>
|
493
|
+
<wsdl:input>
|
494
|
+
<soap:body use="literal"/>
|
495
|
+
</wsdl:input>
|
496
|
+
<wsdl:output>
|
497
|
+
<soap:body use="literal"/>
|
498
|
+
</wsdl:output>
|
499
|
+
</wsdl:operation>
|
500
|
+
<wsdl:operation name="LMS_GetActiveEmployees">
|
501
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/LMS_GetActiveEmployees" style="document"/>
|
502
|
+
<wsdl:input>
|
503
|
+
<soap:body use="literal"/>
|
504
|
+
</wsdl:input>
|
505
|
+
<wsdl:output>
|
506
|
+
<soap:body use="literal"/>
|
507
|
+
</wsdl:output>
|
508
|
+
</wsdl:operation>
|
509
|
+
<wsdl:operation name="LMS_ProcessFile">
|
510
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/LMS_ProcessFile" style="document"/>
|
511
|
+
<wsdl:input>
|
512
|
+
<soap:body use="literal"/>
|
513
|
+
</wsdl:input>
|
514
|
+
<wsdl:output>
|
515
|
+
<soap:body use="literal"/>
|
516
|
+
</wsdl:output>
|
517
|
+
</wsdl:operation>
|
518
|
+
<wsdl:operation name="UpdateComplianceCode">
|
519
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/UpdateComplianceCode" style="document"/>
|
520
|
+
<wsdl:input>
|
521
|
+
<soap:body use="literal"/>
|
522
|
+
</wsdl:input>
|
523
|
+
<wsdl:output>
|
524
|
+
<soap:body use="literal"/>
|
525
|
+
</wsdl:output>
|
526
|
+
</wsdl:operation>
|
527
|
+
<wsdl:operation name="DeleteComplianceCode">
|
528
|
+
<soap:operation soapAction="http://tempuri.org/IWinTeamServiceManager/DeleteComplianceCode" style="document"/>
|
529
|
+
<wsdl:input>
|
530
|
+
<soap:body use="literal"/>
|
531
|
+
</wsdl:input>
|
532
|
+
<wsdl:output>
|
533
|
+
<soap:body use="literal"/>
|
534
|
+
</wsdl:output>
|
535
|
+
</wsdl:operation>
|
536
|
+
</wsdl:binding>
|
537
|
+
<wsdl:service name="ServiceManager">
|
538
|
+
<wsdl:port name="BasicHttpBinding_IWinTeamServiceManager" binding="tns:BasicHttpBinding_IWinTeamServiceManager">
|
539
|
+
<soap:address location="https://winteamservicestest.myteamsoftware.com/Services.svc"/>
|
540
|
+
</wsdl:port>
|
541
|
+
</wsdl:service>
|
542
|
+
</wsdl:definitions>
|