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,258 @@
|
|
1
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/TeamSoftware.WinTeam.Validator">
|
2
|
+
<xs:import schemaLocation="https://winteamservicestest.myteamsoftware.com/Services.svc?xsd=xsd3" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
3
|
+
<xs:complexType name="Employee">
|
4
|
+
<xs:sequence>
|
5
|
+
<xs:element minOccurs="0" name="AccrualTypeID" nillable="true" type="xs:short"/>
|
6
|
+
<xs:element minOccurs="0" name="Address1" nillable="true" type="xs:string"/>
|
7
|
+
<xs:element minOccurs="0" name="Address2" nillable="true" type="xs:string"/>
|
8
|
+
<xs:element minOccurs="0" name="BadgeID" nillable="true" type="xs:int"/>
|
9
|
+
<xs:element minOccurs="0" name="BenefitCategoryID" nillable="true" type="xs:short"/>
|
10
|
+
<xs:element minOccurs="0" name="BirthDate" nillable="true" type="xs:dateTime"/>
|
11
|
+
<xs:element minOccurs="0" name="City" nillable="true" type="xs:string"/>
|
12
|
+
<xs:element minOccurs="0" name="ClassificationID" nillable="true" type="xs:short"/>
|
13
|
+
<xs:element minOccurs="0" name="ClockGroupID" nillable="true" type="xs:short"/>
|
14
|
+
<xs:element minOccurs="0" name="CompanyNumber" nillable="true" type="xs:short"/>
|
15
|
+
<xs:element minOccurs="0" name="Deductions" nillable="true" type="tns:ArrayOfDeduction"/>
|
16
|
+
<xs:element minOccurs="0" name="EmailAddress" nillable="true" type="xs:string"/>
|
17
|
+
<xs:element minOccurs="0" name="EmployeeNumber" nillable="true" type="xs:int"/>
|
18
|
+
<xs:element minOccurs="0" name="FirstName" nillable="true" type="xs:string"/>
|
19
|
+
<xs:element minOccurs="0" name="Gender" nillable="true" type="xs:unsignedByte"/>
|
20
|
+
<xs:element minOccurs="0" name="HireDate" nillable="true" type="xs:dateTime"/>
|
21
|
+
<xs:element minOccurs="0" name="LastName" nillable="true" type="xs:string"/>
|
22
|
+
<xs:element minOccurs="0" name="LocationID" nillable="true" type="xs:short"/>
|
23
|
+
<xs:element minOccurs="0" name="MiddleName" nillable="true" type="xs:string"/>
|
24
|
+
<xs:element minOccurs="0" name="NationalOriginID" nillable="true" type="xs:unsignedByte"/>
|
25
|
+
<xs:element minOccurs="0" name="Notes" nillable="true" type="xs:string"/>
|
26
|
+
<xs:element minOccurs="0" name="OtherInfo401KAmount" nillable="true" type="xs:decimal"/>
|
27
|
+
<xs:element minOccurs="0" name="OtherInfo401KDateEligible" nillable="true" type="xs:dateTime"/>
|
28
|
+
<xs:element minOccurs="0" name="OtherInfo401KDeductionType" nillable="true" type="xs:unsignedByte"/>
|
29
|
+
<xs:element minOccurs="0" name="OtherInfo401KParticipate" nillable="true" type="xs:boolean"/>
|
30
|
+
<xs:element minOccurs="0" name="OtherInfoATM" nillable="true" type="xs:boolean"/>
|
31
|
+
<xs:element minOccurs="0" name="OtherInfoDateFullTime" nillable="true" type="xs:dateTime"/>
|
32
|
+
<xs:element minOccurs="0" name="OtherInfoDirectDeposit" nillable="true" type="xs:boolean"/>
|
33
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleDependentInsurance" nillable="true" type="xs:boolean"/>
|
34
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleDependentInsuranceDate" nillable="true" type="xs:dateTime"/>
|
35
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleHolidays" nillable="true" type="xs:boolean"/>
|
36
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleInsurance1" nillable="true" type="xs:boolean"/>
|
37
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleInsurance2" nillable="true" type="xs:boolean"/>
|
38
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleInsurance3" nillable="true" type="xs:boolean"/>
|
39
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleSick" nillable="true" type="xs:boolean"/>
|
40
|
+
<xs:element minOccurs="0" name="OtherInfoEligibleVacation" nillable="true" type="xs:boolean"/>
|
41
|
+
<xs:element minOccurs="0" name="OtherInfoI9ExpireDate" nillable="true" type="xs:dateTime"/>
|
42
|
+
<xs:element minOccurs="0" name="OtherInfoI9TypeID" nillable="true" type="xs:short"/>
|
43
|
+
<xs:element minOccurs="0" name="OtherInfoStaffEmployee" nillable="true" type="xs:boolean"/>
|
44
|
+
<xs:element minOccurs="0" name="OtherInfoWhenFri" nillable="true" type="xs:boolean"/>
|
45
|
+
<xs:element minOccurs="0" name="OtherInfoWhenFriFrom" nillable="true" type="xs:dateTime"/>
|
46
|
+
<xs:element minOccurs="0" name="OtherInfoWhenFriTo" nillable="true" type="xs:dateTime"/>
|
47
|
+
<xs:element minOccurs="0" name="OtherInfoWhenMon" nillable="true" type="xs:boolean"/>
|
48
|
+
<xs:element minOccurs="0" name="OtherInfoWhenMonFrom" nillable="true" type="xs:dateTime"/>
|
49
|
+
<xs:element minOccurs="0" name="OtherInfoWhenMonTo" nillable="true" type="xs:dateTime"/>
|
50
|
+
<xs:element minOccurs="0" name="OtherInfoWhenSat" nillable="true" type="xs:boolean"/>
|
51
|
+
<xs:element minOccurs="0" name="OtherInfoWhenSatFrom" nillable="true" type="xs:dateTime"/>
|
52
|
+
<xs:element minOccurs="0" name="OtherInfoWhenSatTo" nillable="true" type="xs:dateTime"/>
|
53
|
+
<xs:element minOccurs="0" name="OtherInfoWhenSun" nillable="true" type="xs:boolean"/>
|
54
|
+
<xs:element minOccurs="0" name="OtherInfoWhenSunFrom" nillable="true" type="xs:dateTime"/>
|
55
|
+
<xs:element minOccurs="0" name="OtherInfoWhenSunTo" nillable="true" type="xs:dateTime"/>
|
56
|
+
<xs:element minOccurs="0" name="OtherInfoWhenThu" nillable="true" type="xs:boolean"/>
|
57
|
+
<xs:element minOccurs="0" name="OtherInfoWhenThuFrom" nillable="true" type="xs:dateTime"/>
|
58
|
+
<xs:element minOccurs="0" name="OtherInfoWhenThuTo" nillable="true" type="xs:dateTime"/>
|
59
|
+
<xs:element minOccurs="0" name="OtherInfoWhenTue" nillable="true" type="xs:boolean"/>
|
60
|
+
<xs:element minOccurs="0" name="OtherInfoWhenTueFrom" nillable="true" type="xs:dateTime"/>
|
61
|
+
<xs:element minOccurs="0" name="OtherInfoWhenTueTo" nillable="true" type="xs:dateTime"/>
|
62
|
+
<xs:element minOccurs="0" name="OtherInfoWhenWed" nillable="true" type="xs:boolean"/>
|
63
|
+
<xs:element minOccurs="0" name="OtherInfoWhenWedFrom" nillable="true" type="xs:dateTime"/>
|
64
|
+
<xs:element minOccurs="0" name="OtherInfoWhenWedTo" nillable="true" type="xs:dateTime"/>
|
65
|
+
<xs:element minOccurs="0" name="PayCheckDistributionID" nillable="true" type="xs:short"/>
|
66
|
+
<xs:element minOccurs="0" name="PayCheckFrequencyID" nillable="true" type="xs:unsignedByte"/>
|
67
|
+
<xs:element minOccurs="0" name="PayInfoAcceptAltPayRates" nillable="true" type="xs:boolean"/>
|
68
|
+
<xs:element minOccurs="0" name="PayInfoDateNextReview" nillable="true" type="xs:dateTime"/>
|
69
|
+
<xs:element minOccurs="0" name="PayInfoFTPT_ID" nillable="true" type="xs:unsignedByte"/>
|
70
|
+
<xs:element minOccurs="0" name="PayInfoNotes" nillable="true" type="xs:string"/>
|
71
|
+
<xs:element minOccurs="0" name="PayInfoOTMethodID" nillable="true" type="xs:unsignedByte"/>
|
72
|
+
<xs:element minOccurs="0" name="PayInfoPayRate" nillable="true" type="xs:decimal"/>
|
73
|
+
<xs:element minOccurs="0" name="PayInfoPrimaryCatDetailID" nillable="true" type="xs:int"/>
|
74
|
+
<xs:element minOccurs="0" name="PayInfoPrimaryJob" nillable="true" type="xs:string"/>
|
75
|
+
<xs:element minOccurs="0" name="PayInfoReasonID" nillable="true" type="xs:short"/>
|
76
|
+
<xs:element minOccurs="0" name="PayInfoTitleID" nillable="true" type="xs:short"/>
|
77
|
+
<xs:element minOccurs="0" name="PayInfoType" nillable="true" type="xs:unsignedByte"/>
|
78
|
+
<xs:element minOccurs="0" name="Phone1" nillable="true" type="xs:string"/>
|
79
|
+
<xs:element minOccurs="0" name="Phone1DescriptionID" nillable="true" type="xs:short"/>
|
80
|
+
<xs:element minOccurs="0" name="Phone1Extension" nillable="true" type="xs:string"/>
|
81
|
+
<xs:element minOccurs="0" name="Phone2" nillable="true" type="xs:string"/>
|
82
|
+
<xs:element minOccurs="0" name="Phone2DescriptionID" nillable="true" type="xs:short"/>
|
83
|
+
<xs:element minOccurs="0" name="Phone2Extension" nillable="true" type="xs:string"/>
|
84
|
+
<xs:element minOccurs="0" name="Phone3" nillable="true" type="xs:string"/>
|
85
|
+
<xs:element minOccurs="0" name="Phone3DescriptionID" nillable="true" type="xs:short"/>
|
86
|
+
<xs:element minOccurs="0" name="Phone3Extension" nillable="true" type="xs:string"/>
|
87
|
+
<xs:element minOccurs="0" name="PictureFilePath" nillable="true" type="xs:string"/>
|
88
|
+
<xs:element minOccurs="0" name="PortalGroupID" nillable="true" type="xs:int"/>
|
89
|
+
<xs:element minOccurs="0" name="PortalUserLevelID" nillable="true" type="xs:int"/>
|
90
|
+
<xs:element minOccurs="0" name="PrimaryJob" nillable="true" type="xs:string"/>
|
91
|
+
<xs:element minOccurs="0" name="Salutation" nillable="true" type="xs:string"/>
|
92
|
+
<xs:element minOccurs="0" name="SecurityLevel" nillable="true" type="xs:unsignedByte"/>
|
93
|
+
<xs:element minOccurs="0" name="ServiceCreditDate" nillable="true" type="xs:dateTime"/>
|
94
|
+
<xs:element minOccurs="0" name="SocialSecurityNumber" nillable="true" type="xs:string"/>
|
95
|
+
<xs:element minOccurs="0" name="State" nillable="true" type="xs:string"/>
|
96
|
+
<xs:element minOccurs="0" name="StatusInfoReason" nillable="true" type="xs:short"/>
|
97
|
+
<xs:element minOccurs="0" name="SupervisorID" nillable="true" type="xs:short"/>
|
98
|
+
<xs:element minOccurs="0" name="TaxInfoEIC" nillable="true" type="xs:boolean"/>
|
99
|
+
<xs:element minOccurs="0" name="TaxInfoEICSpouse" nillable="true" type="xs:boolean"/>
|
100
|
+
<xs:element minOccurs="0" name="TaxInfoEICType" nillable="true" type="xs:unsignedByte"/>
|
101
|
+
<xs:element minOccurs="0" name="TaxInfoFICAExempt" nillable="true" type="xs:boolean"/>
|
102
|
+
<xs:element minOccurs="0" name="TaxInfoFederalAddWH" nillable="true" type="xs:decimal"/>
|
103
|
+
<xs:element minOccurs="0" name="TaxInfoFederalAllowances" nillable="true" type="xs:decimal"/>
|
104
|
+
<xs:element minOccurs="0" name="TaxInfoFederalStatusID" nillable="true" type="xs:unsignedByte"/>
|
105
|
+
<xs:element minOccurs="0" name="TaxInfoLocal1ADDWH" nillable="true" type="xs:decimal"/>
|
106
|
+
<xs:element minOccurs="0" name="TaxInfoLocal1Allowances" nillable="true" type="xs:decimal"/>
|
107
|
+
<xs:element minOccurs="0" name="TaxInfoLocal1ID" nillable="true" type="xs:short"/>
|
108
|
+
<xs:element minOccurs="0" name="TaxInfoLocal1StatusID" nillable="true" type="xs:unsignedByte"/>
|
109
|
+
<xs:element minOccurs="0" name="TaxInfoLocal2AddWH" nillable="true" type="xs:decimal"/>
|
110
|
+
<xs:element minOccurs="0" name="TaxInfoLocal2Allowances" nillable="true" type="xs:decimal"/>
|
111
|
+
<xs:element minOccurs="0" name="TaxInfoLocal2ID" nillable="true" type="xs:short"/>
|
112
|
+
<xs:element minOccurs="0" name="TaxInfoLocal2StatusID" nillable="true" type="xs:unsignedByte"/>
|
113
|
+
<xs:element minOccurs="0" name="TaxInfoLocal3AddWH" nillable="true" type="xs:decimal"/>
|
114
|
+
<xs:element minOccurs="0" name="TaxInfoLocal3Allowances" nillable="true" type="xs:decimal"/>
|
115
|
+
<xs:element minOccurs="0" name="TaxInfoLocal3ID" nillable="true" type="xs:short"/>
|
116
|
+
<xs:element minOccurs="0" name="TaxInfoLocal3StatusID" nillable="true" type="xs:unsignedByte"/>
|
117
|
+
<xs:element minOccurs="0" name="TaxInfoMediCareExempt" nillable="true" type="xs:boolean"/>
|
118
|
+
<xs:element minOccurs="0" name="TaxInfoStateAddWH" nillable="true" type="xs:decimal"/>
|
119
|
+
<xs:element minOccurs="0" name="TaxInfoStateAddWHStateID" nillable="true" type="xs:short"/>
|
120
|
+
<xs:element minOccurs="0" name="TaxInfoStateAllowances" nillable="true" type="xs:decimal"/>
|
121
|
+
<xs:element minOccurs="0" name="TaxInfoStateID" nillable="true" type="xs:short"/>
|
122
|
+
<xs:element minOccurs="0" name="TaxInfoStateStatusID" nillable="true" type="xs:unsignedByte"/>
|
123
|
+
<xs:element minOccurs="0" name="TaxInfoStateUCID" nillable="true" type="xs:short"/>
|
124
|
+
<xs:element minOccurs="0" name="TypeID" nillable="true" type="xs:short"/>
|
125
|
+
<xs:element minOccurs="0" name="UseJobLunchParameters" nillable="true" type="xs:boolean"/>
|
126
|
+
<xs:element minOccurs="0" name="UserCodeL_1" nillable="true" type="xs:short"/>
|
127
|
+
<xs:element minOccurs="0" name="UserCodeL_10" nillable="true" type="xs:short"/>
|
128
|
+
<xs:element minOccurs="0" name="UserCodeL_11" nillable="true" type="xs:short"/>
|
129
|
+
<xs:element minOccurs="0" name="UserCodeL_12" nillable="true" type="xs:short"/>
|
130
|
+
<xs:element minOccurs="0" name="UserCodeL_13" nillable="true" type="xs:short"/>
|
131
|
+
<xs:element minOccurs="0" name="UserCodeL_14" nillable="true" type="xs:short"/>
|
132
|
+
<xs:element minOccurs="0" name="UserCodeL_15" nillable="true" type="xs:short"/>
|
133
|
+
<xs:element minOccurs="0" name="UserCodeL_16" nillable="true" type="xs:short"/>
|
134
|
+
<xs:element minOccurs="0" name="UserCodeL_17" nillable="true" type="xs:short"/>
|
135
|
+
<xs:element minOccurs="0" name="UserCodeL_18" nillable="true" type="xs:short"/>
|
136
|
+
<xs:element minOccurs="0" name="UserCodeL_19" nillable="true" type="xs:short"/>
|
137
|
+
<xs:element minOccurs="0" name="UserCodeL_2" nillable="true" type="xs:short"/>
|
138
|
+
<xs:element minOccurs="0" name="UserCodeL_20" nillable="true" type="xs:short"/>
|
139
|
+
<xs:element minOccurs="0" name="UserCodeL_21" nillable="true" type="xs:short"/>
|
140
|
+
<xs:element minOccurs="0" name="UserCodeL_22" nillable="true" type="xs:short"/>
|
141
|
+
<xs:element minOccurs="0" name="UserCodeL_23" nillable="true" type="xs:short"/>
|
142
|
+
<xs:element minOccurs="0" name="UserCodeL_24" nillable="true" type="xs:short"/>
|
143
|
+
<xs:element minOccurs="0" name="UserCodeL_25" nillable="true" type="xs:short"/>
|
144
|
+
<xs:element minOccurs="0" name="UserCodeL_26" nillable="true" type="xs:short"/>
|
145
|
+
<xs:element minOccurs="0" name="UserCodeL_3" nillable="true" type="xs:short"/>
|
146
|
+
<xs:element minOccurs="0" name="UserCodeL_4" nillable="true" type="xs:short"/>
|
147
|
+
<xs:element minOccurs="0" name="UserCodeL_5" nillable="true" type="xs:short"/>
|
148
|
+
<xs:element minOccurs="0" name="UserCodeL_6" nillable="true" type="xs:short"/>
|
149
|
+
<xs:element minOccurs="0" name="UserCodeL_7" nillable="true" type="xs:short"/>
|
150
|
+
<xs:element minOccurs="0" name="UserCodeL_8" nillable="true" type="xs:short"/>
|
151
|
+
<xs:element minOccurs="0" name="UserCodeL_9" nillable="true" type="xs:short"/>
|
152
|
+
<xs:element minOccurs="0" name="UserCodeT_1" nillable="true" type="xs:string"/>
|
153
|
+
<xs:element minOccurs="0" name="UserCodeT_10" nillable="true" type="xs:string"/>
|
154
|
+
<xs:element minOccurs="0" name="UserCodeT_11" nillable="true" type="xs:string"/>
|
155
|
+
<xs:element minOccurs="0" name="UserCodeT_12" nillable="true" type="xs:string"/>
|
156
|
+
<xs:element minOccurs="0" name="UserCodeT_13" nillable="true" type="xs:string"/>
|
157
|
+
<xs:element minOccurs="0" name="UserCodeT_14" nillable="true" type="xs:string"/>
|
158
|
+
<xs:element minOccurs="0" name="UserCodeT_15" nillable="true" type="xs:string"/>
|
159
|
+
<xs:element minOccurs="0" name="UserCodeT_16" nillable="true" type="xs:string"/>
|
160
|
+
<xs:element minOccurs="0" name="UserCodeT_17" nillable="true" type="xs:string"/>
|
161
|
+
<xs:element minOccurs="0" name="UserCodeT_18" nillable="true" type="xs:string"/>
|
162
|
+
<xs:element minOccurs="0" name="UserCodeT_19" nillable="true" type="xs:string"/>
|
163
|
+
<xs:element minOccurs="0" name="UserCodeT_2" nillable="true" type="xs:string"/>
|
164
|
+
<xs:element minOccurs="0" name="UserCodeT_20" nillable="true" type="xs:string"/>
|
165
|
+
<xs:element minOccurs="0" name="UserCodeT_21" nillable="true" type="xs:string"/>
|
166
|
+
<xs:element minOccurs="0" name="UserCodeT_22" nillable="true" type="xs:string"/>
|
167
|
+
<xs:element minOccurs="0" name="UserCodeT_23" nillable="true" type="xs:string"/>
|
168
|
+
<xs:element minOccurs="0" name="UserCodeT_24" nillable="true" type="xs:string"/>
|
169
|
+
<xs:element minOccurs="0" name="UserCodeT_25" nillable="true" type="xs:string"/>
|
170
|
+
<xs:element minOccurs="0" name="UserCodeT_26" nillable="true" type="xs:string"/>
|
171
|
+
<xs:element minOccurs="0" name="UserCodeT_3" nillable="true" type="xs:string"/>
|
172
|
+
<xs:element minOccurs="0" name="UserCodeT_4" nillable="true" type="xs:string"/>
|
173
|
+
<xs:element minOccurs="0" name="UserCodeT_5" nillable="true" type="xs:string"/>
|
174
|
+
<xs:element minOccurs="0" name="UserCodeT_6" nillable="true" type="xs:string"/>
|
175
|
+
<xs:element minOccurs="0" name="UserCodeT_7" nillable="true" type="xs:string"/>
|
176
|
+
<xs:element minOccurs="0" name="UserCodeT_8" nillable="true" type="xs:string"/>
|
177
|
+
<xs:element minOccurs="0" name="UserCodeT_9" nillable="true" type="xs:string"/>
|
178
|
+
<xs:element minOccurs="0" name="VacationDateFirstEligible" nillable="true" type="xs:dateTime"/>
|
179
|
+
<xs:element minOccurs="0" name="VetDisabled" nillable="true" type="xs:boolean"/>
|
180
|
+
<xs:element minOccurs="0" name="VetOther" nillable="true" type="xs:boolean"/>
|
181
|
+
<xs:element minOccurs="0" name="VetSeparationDate" nillable="true" type="xs:dateTime"/>
|
182
|
+
<xs:element minOccurs="0" name="VetVietnam" nillable="true" type="xs:boolean"/>
|
183
|
+
<xs:element minOccurs="0" name="W2ReceiveElectronic" nillable="true" type="xs:boolean"/>
|
184
|
+
<xs:element minOccurs="0" name="Zip" nillable="true" type="xs:string"/>
|
185
|
+
</xs:sequence>
|
186
|
+
</xs:complexType>
|
187
|
+
<xs:element name="Employee" nillable="true" type="tns:Employee"/>
|
188
|
+
<xs:complexType name="ArrayOfDeduction">
|
189
|
+
<xs:sequence>
|
190
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="Deduction" nillable="true" type="tns:Deduction"/>
|
191
|
+
</xs:sequence>
|
192
|
+
</xs:complexType>
|
193
|
+
<xs:element name="ArrayOfDeduction" nillable="true" type="tns:ArrayOfDeduction"/>
|
194
|
+
<xs:complexType name="Deduction">
|
195
|
+
<xs:sequence>
|
196
|
+
<xs:element minOccurs="0" name="APMemoLine" nillable="true" type="xs:string"/>
|
197
|
+
<xs:element minOccurs="0" name="Amount" nillable="true" type="xs:decimal"/>
|
198
|
+
<xs:element minOccurs="0" name="Basis" nillable="true" type="xs:unsignedByte"/>
|
199
|
+
<xs:element minOccurs="0" name="Cumulative" nillable="true" type="xs:decimal"/>
|
200
|
+
<xs:element minOccurs="0" name="DeductionID" nillable="true" type="xs:int"/>
|
201
|
+
<xs:element minOccurs="0" name="DeductionTypeID" nillable="true" type="xs:short"/>
|
202
|
+
<xs:element minOccurs="0" name="EndDate" nillable="true" type="xs:dateTime"/>
|
203
|
+
<xs:element minOccurs="0" name="FIPSCode" nillable="true" type="xs:string"/>
|
204
|
+
<xs:element minOccurs="0" name="GLNumber" nillable="true" type="xs:int"/>
|
205
|
+
<xs:element minOccurs="0" name="JobNumber" nillable="true" type="xs:string"/>
|
206
|
+
<xs:element minOccurs="0" name="PayCheckDescription" nillable="true" type="xs:string"/>
|
207
|
+
<xs:element minOccurs="0" name="PendingAdjustments" nillable="true" type="xs:decimal"/>
|
208
|
+
<xs:element minOccurs="0" name="PrintOrder" nillable="true" type="xs:unsignedByte"/>
|
209
|
+
<xs:element minOccurs="0" name="RecurringLimit" nillable="true" type="xs:decimal"/>
|
210
|
+
<xs:element minOccurs="0" name="StartDate" nillable="true" type="xs:dateTime"/>
|
211
|
+
<xs:element minOccurs="0" name="VendorNumber" nillable="true" type="xs:int"/>
|
212
|
+
</xs:sequence>
|
213
|
+
</xs:complexType>
|
214
|
+
<xs:element name="Deduction" nillable="true" type="tns:Deduction"/>
|
215
|
+
<xs:complexType name="ValidationResult">
|
216
|
+
<xs:sequence>
|
217
|
+
<xs:element minOccurs="0" name="Errors" nillable="true" type="q1:ArrayOfstring" xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
218
|
+
<xs:element minOccurs="0" name="Success" type="xs:boolean"/>
|
219
|
+
</xs:sequence>
|
220
|
+
</xs:complexType>
|
221
|
+
<xs:element name="ValidationResult" nillable="true" type="tns:ValidationResult"/>
|
222
|
+
<xs:complexType name="ArrayOfHoursRecord">
|
223
|
+
<xs:sequence>
|
224
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="HoursRecord" nillable="true" type="tns:HoursRecord"/>
|
225
|
+
</xs:sequence>
|
226
|
+
</xs:complexType>
|
227
|
+
<xs:element name="ArrayOfHoursRecord" nillable="true" type="tns:ArrayOfHoursRecord"/>
|
228
|
+
<xs:complexType name="HoursRecord">
|
229
|
+
<xs:sequence>
|
230
|
+
<xs:element minOccurs="0" name="CategoriesDetailID" nillable="true" type="xs:int"/>
|
231
|
+
<xs:element minOccurs="0" name="CyCopID" nillable="true" type="xs:string"/>
|
232
|
+
<xs:element minOccurs="0" name="EmployeeNumber" type="xs:int"/>
|
233
|
+
<xs:element minOccurs="0" name="Hours" type="xs:decimal"/>
|
234
|
+
<xs:element minOccurs="0" name="HoursTypeID" nillable="true" type="xs:short"/>
|
235
|
+
<xs:element minOccurs="0" name="InTime" nillable="true" type="xs:dateTime"/>
|
236
|
+
<xs:element minOccurs="0" name="JobNumber" nillable="true" type="xs:string"/>
|
237
|
+
<xs:element minOccurs="0" name="JobPostDetailID" nillable="true" type="xs:int"/>
|
238
|
+
<xs:element minOccurs="0" name="Lunch" nillable="true" type="xs:decimal"/>
|
239
|
+
<xs:element minOccurs="0" name="OutTime" nillable="true" type="xs:dateTime"/>
|
240
|
+
<xs:element minOccurs="0" name="WorkDate" type="xs:dateTime"/>
|
241
|
+
<xs:element minOccurs="0" name="WorkTicketNumber" nillable="true" type="xs:int"/>
|
242
|
+
</xs:sequence>
|
243
|
+
</xs:complexType>
|
244
|
+
<xs:element name="HoursRecord" nillable="true" type="tns:HoursRecord"/>
|
245
|
+
<xs:complexType name="ArrayOfValidationFailure">
|
246
|
+
<xs:sequence>
|
247
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="ValidationFailure" nillable="true" type="tns:ValidationFailure"/>
|
248
|
+
</xs:sequence>
|
249
|
+
</xs:complexType>
|
250
|
+
<xs:element name="ArrayOfValidationFailure" nillable="true" type="tns:ArrayOfValidationFailure"/>
|
251
|
+
<xs:complexType name="ValidationFailure">
|
252
|
+
<xs:sequence>
|
253
|
+
<xs:element minOccurs="0" name="Errors" nillable="true" type="q2:ArrayOfstring" xmlns:q2="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
|
254
|
+
<xs:element minOccurs="0" name="ID" nillable="true" type="xs:string"/>
|
255
|
+
</xs:sequence>
|
256
|
+
</xs:complexType>
|
257
|
+
<xs:element name="ValidationFailure" nillable="true" type="tns:ValidationFailure"/>
|
258
|
+
</xs:schema>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
|
2
|
+
<xs:complexType name="ArrayOfstring">
|
3
|
+
<xs:sequence>
|
4
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="xs:string"/>
|
5
|
+
</xs:sequence>
|
6
|
+
</xs:complexType>
|
7
|
+
<xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring"/>
|
8
|
+
<xs:complexType name="ArrayOfint">
|
9
|
+
<xs:sequence>
|
10
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" name="int" type="xs:int"/>
|
11
|
+
</xs:sequence>
|
12
|
+
</xs:complexType>
|
13
|
+
<xs:element name="ArrayOfint" nillable="true" type="tns:ArrayOfint"/>
|
14
|
+
</xs:schema>
|
@@ -0,0 +1,45 @@
|
|
1
|
+
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
2
|
+
<!-- http://bedrift.telefonkatalogen.no/tk/websvcsendsms.php?wsdl -->
|
3
|
+
<definitions name="SendSMS" targetNamespace="http://bedrift.telefonkatalogen.no" xmlns:tns="http://bedrift.telefonkatalogen.no" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
|
4
|
+
<types>
|
5
|
+
<xsd:schema elementFormDefault="qualified" targetNamespace="http://bedrift.telefonkatalogen.no" xmlns="http://www.w3.org/2001/XMLSchema"></xsd:schema>
|
6
|
+
</types>
|
7
|
+
<message name="sendsmsRequest">
|
8
|
+
<part name="sender" type="xsd:string"/>
|
9
|
+
<part name="cellular" type="xsd:string"/>
|
10
|
+
<part name="msg" type="xsd:string"/>
|
11
|
+
<part name="smsnumgroup" type="xsd:string"/>
|
12
|
+
<part name="emailaddr" type="xsd:string"/>
|
13
|
+
<part name="udh" type="xsd:string"/>
|
14
|
+
<part name="datetime" type="xsd:string"/>
|
15
|
+
<part name="format" type="xsd:string"/>
|
16
|
+
<part name="dlrurl" type="xsd:string"/>
|
17
|
+
</message>
|
18
|
+
<message name="sendsmsResponse">
|
19
|
+
<part name="body" type="xsd:string"/>
|
20
|
+
</message>
|
21
|
+
<portType name="SendSmsPortType">
|
22
|
+
<operation name="sendsms">
|
23
|
+
<input message="tns:sendsmsRequest"/>
|
24
|
+
<output message="tns:sendsmsResponse"/>
|
25
|
+
</operation>
|
26
|
+
</portType>
|
27
|
+
<binding name="SendSmsBinding" type="tns:SendSmsPortType">
|
28
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
29
|
+
<operation name="sendsms">
|
30
|
+
<soap:operation soapAction="sendsms"/>
|
31
|
+
<input>
|
32
|
+
<soap:body use="literal"/>
|
33
|
+
</input>
|
34
|
+
<output>
|
35
|
+
<soap:body use="literal"/>
|
36
|
+
</output>
|
37
|
+
</operation>
|
38
|
+
</binding>
|
39
|
+
<service name="SendSms">
|
40
|
+
<documentation>Interfaces to telephone directory services, using rpc/literal</documentation>
|
41
|
+
<port name="SendSmsPort" binding="tns:SendSmsBinding">
|
42
|
+
<soap:address location="http://bedrift.telefonkatalogen.no/tk/websvcsendsms.php"/>
|
43
|
+
</port>
|
44
|
+
</service>
|
45
|
+
</definitions>
|
@@ -0,0 +1,136 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- http://www.webservicex.net/ConvertTemperature.asmx?WSDL -->
|
3
|
+
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://www.webserviceX.NET/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://www.webserviceX.NET/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
4
|
+
<wsdl:types>
|
5
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://www.webserviceX.NET/">
|
6
|
+
<s:element name="ConvertTemp">
|
7
|
+
<s:complexType>
|
8
|
+
<s:sequence>
|
9
|
+
<s:element minOccurs="1" maxOccurs="1" name="Temperature" type="s:double" />
|
10
|
+
<s:element minOccurs="1" maxOccurs="1" name="FromUnit" type="tns:TemperatureUnit" />
|
11
|
+
<s:element minOccurs="1" maxOccurs="1" name="ToUnit" type="tns:TemperatureUnit" />
|
12
|
+
</s:sequence>
|
13
|
+
</s:complexType>
|
14
|
+
</s:element>
|
15
|
+
<s:simpleType name="TemperatureUnit">
|
16
|
+
<s:restriction base="s:string">
|
17
|
+
<s:enumeration value="degreeCelsius" />
|
18
|
+
<s:enumeration value="degreeFahrenheit" />
|
19
|
+
<s:enumeration value="degreeRankine" />
|
20
|
+
<s:enumeration value="degreeReaumur" />
|
21
|
+
<s:enumeration value="kelvin" />
|
22
|
+
</s:restriction>
|
23
|
+
</s:simpleType>
|
24
|
+
<s:element name="ConvertTempResponse">
|
25
|
+
<s:complexType>
|
26
|
+
<s:sequence>
|
27
|
+
<s:element minOccurs="1" maxOccurs="1" name="ConvertTempResult" type="s:double" />
|
28
|
+
</s:sequence>
|
29
|
+
</s:complexType>
|
30
|
+
</s:element>
|
31
|
+
<s:element name="double" type="s:double" />
|
32
|
+
</s:schema>
|
33
|
+
</wsdl:types>
|
34
|
+
<wsdl:message name="ConvertTempSoapIn">
|
35
|
+
<wsdl:part name="parameters" element="tns:ConvertTemp" />
|
36
|
+
</wsdl:message>
|
37
|
+
<wsdl:message name="ConvertTempSoapOut">
|
38
|
+
<wsdl:part name="parameters" element="tns:ConvertTempResponse" />
|
39
|
+
</wsdl:message>
|
40
|
+
<wsdl:message name="ConvertTempHttpGetIn">
|
41
|
+
<wsdl:part name="Temperature" type="s:string" />
|
42
|
+
<wsdl:part name="FromUnit" type="s:string" />
|
43
|
+
<wsdl:part name="ToUnit" type="s:string" />
|
44
|
+
</wsdl:message>
|
45
|
+
<wsdl:message name="ConvertTempHttpGetOut">
|
46
|
+
<wsdl:part name="Body" element="tns:double" />
|
47
|
+
</wsdl:message>
|
48
|
+
<wsdl:message name="ConvertTempHttpPostIn">
|
49
|
+
<wsdl:part name="Temperature" type="s:string" />
|
50
|
+
<wsdl:part name="FromUnit" type="s:string" />
|
51
|
+
<wsdl:part name="ToUnit" type="s:string" />
|
52
|
+
</wsdl:message>
|
53
|
+
<wsdl:message name="ConvertTempHttpPostOut">
|
54
|
+
<wsdl:part name="Body" element="tns:double" />
|
55
|
+
</wsdl:message>
|
56
|
+
<wsdl:portType name="ConvertTemperatureSoap">
|
57
|
+
<wsdl:operation name="ConvertTemp">
|
58
|
+
<wsdl:input message="tns:ConvertTempSoapIn" />
|
59
|
+
<wsdl:output message="tns:ConvertTempSoapOut" />
|
60
|
+
</wsdl:operation>
|
61
|
+
</wsdl:portType>
|
62
|
+
<wsdl:portType name="ConvertTemperatureHttpGet">
|
63
|
+
<wsdl:operation name="ConvertTemp">
|
64
|
+
<wsdl:input message="tns:ConvertTempHttpGetIn" />
|
65
|
+
<wsdl:output message="tns:ConvertTempHttpGetOut" />
|
66
|
+
</wsdl:operation>
|
67
|
+
</wsdl:portType>
|
68
|
+
<wsdl:portType name="ConvertTemperatureHttpPost">
|
69
|
+
<wsdl:operation name="ConvertTemp">
|
70
|
+
<wsdl:input message="tns:ConvertTempHttpPostIn" />
|
71
|
+
<wsdl:output message="tns:ConvertTempHttpPostOut" />
|
72
|
+
</wsdl:operation>
|
73
|
+
</wsdl:portType>
|
74
|
+
<wsdl:binding name="ConvertTemperatureSoap" type="tns:ConvertTemperatureSoap">
|
75
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
76
|
+
<wsdl:operation name="ConvertTemp">
|
77
|
+
<soap:operation soapAction="http://www.webserviceX.NET/ConvertTemp" style="document" />
|
78
|
+
<wsdl:input>
|
79
|
+
<soap:body use="literal" />
|
80
|
+
</wsdl:input>
|
81
|
+
<wsdl:output>
|
82
|
+
<soap:body use="literal" />
|
83
|
+
</wsdl:output>
|
84
|
+
</wsdl:operation>
|
85
|
+
</wsdl:binding>
|
86
|
+
<wsdl:binding name="ConvertTemperatureSoap12" type="tns:ConvertTemperatureSoap">
|
87
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
88
|
+
<wsdl:operation name="ConvertTemp">
|
89
|
+
<soap12:operation soapAction="http://www.webserviceX.NET/ConvertTemp" style="document" />
|
90
|
+
<wsdl:input>
|
91
|
+
<soap12:body use="literal" />
|
92
|
+
</wsdl:input>
|
93
|
+
<wsdl:output>
|
94
|
+
<soap12:body use="literal" />
|
95
|
+
</wsdl:output>
|
96
|
+
</wsdl:operation>
|
97
|
+
</wsdl:binding>
|
98
|
+
<wsdl:binding name="ConvertTemperatureHttpGet" type="tns:ConvertTemperatureHttpGet">
|
99
|
+
<http:binding verb="GET" />
|
100
|
+
<wsdl:operation name="ConvertTemp">
|
101
|
+
<http:operation location="/ConvertTemp" />
|
102
|
+
<wsdl:input>
|
103
|
+
<http:urlEncoded />
|
104
|
+
</wsdl:input>
|
105
|
+
<wsdl:output>
|
106
|
+
<mime:mimeXml part="Body" />
|
107
|
+
</wsdl:output>
|
108
|
+
</wsdl:operation>
|
109
|
+
</wsdl:binding>
|
110
|
+
<wsdl:binding name="ConvertTemperatureHttpPost" type="tns:ConvertTemperatureHttpPost">
|
111
|
+
<http:binding verb="POST" />
|
112
|
+
<wsdl:operation name="ConvertTemp">
|
113
|
+
<http:operation location="/ConvertTemp" />
|
114
|
+
<wsdl:input>
|
115
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
116
|
+
</wsdl:input>
|
117
|
+
<wsdl:output>
|
118
|
+
<mime:mimeXml part="Body" />
|
119
|
+
</wsdl:output>
|
120
|
+
</wsdl:operation>
|
121
|
+
</wsdl:binding>
|
122
|
+
<wsdl:service name="ConvertTemperature">
|
123
|
+
<wsdl:port name="ConvertTemperatureSoap" binding="tns:ConvertTemperatureSoap">
|
124
|
+
<soap:address location="http://www.webservicex.net/ConvertTemperature.asmx" />
|
125
|
+
</wsdl:port>
|
126
|
+
<wsdl:port name="ConvertTemperatureSoap12" binding="tns:ConvertTemperatureSoap12">
|
127
|
+
<soap12:address location="http://www.webservicex.net/ConvertTemperature.asmx" />
|
128
|
+
</wsdl:port>
|
129
|
+
<wsdl:port name="ConvertTemperatureHttpGet" binding="tns:ConvertTemperatureHttpGet">
|
130
|
+
<http:address location="http://www.webservicex.net/ConvertTemperature.asmx" />
|
131
|
+
</wsdl:port>
|
132
|
+
<wsdl:port name="ConvertTemperatureHttpPost" binding="tns:ConvertTemperatureHttpPost">
|
133
|
+
<http:address location="http://www.webservicex.net/ConvertTemperature.asmx" />
|
134
|
+
</wsdl:port>
|
135
|
+
</wsdl:service>
|
136
|
+
</wsdl:definitions>
|