67 |
brianR |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
<con:soapui-project name="DateService" resourceRoot="" soapui-version="3.6.1" abortOnError="false" runType="SEQUENTIAL" xmlns:con="http://eviware.com/soapui/config"><con:settings/><con:interface xsi:type="con:WsdlInterface" wsaVersion="NONE" name="DateServiceSoapBinding" type="wsdl" bindingName="{http://ws.xservices.brutex.net}DateServiceSoapBinding" soapVersion="1_1" anonymous="optional" definition="http://localhost:8080/XServices/DateService?wsdl" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:settings/><con:definitionCache type="TEXT" rootPart="http://localhost:8080/XServices/DateService?wsdl"><con:part><con:url>http://localhost:8080/XServices/DateService?wsdl</con:url><con:content><![CDATA[<wsdl:definitions name="DateService" targetNamespace="http://ws.xservices.brutex.net" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ws.xservices.brutex.net" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
|
3 |
<wsdl:documentation>/*
|
|
|
4 |
* Copyright 2010 Brian Rosenberger (Brutex Network)
|
|
|
5 |
*
|
|
|
6 |
* Licensed under the Apache License, Version 2.0 (the "License")
|
|
|
7 |
* you may not use this file except in compliance with the License.
|
|
|
8 |
* You may obtain a copy of the License at
|
|
|
9 |
*
|
|
|
10 |
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
11 |
*
|
|
|
12 |
* Unless required by applicable law or agreed to in writing, software
|
|
|
13 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
14 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
15 |
* See the License for the specific language governing permissions and
|
|
|
16 |
* limitations under the License.
|
|
|
17 |
*/</wsdl:documentation>
|
|
|
18 |
<wsdl:types>
|
|
|
19 |
<xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://ws.xservices.brutex.net" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
69 |
brianR |
20 |
<xs:element name="dateAdd" type="tns:dateAdd"/>
|
|
|
21 |
<xs:element name="dateAddResponse" type="tns:dateAddResponse"/>
|
|
|
22 |
<xs:element name="dateTimeDiff" type="tns:dateTimeDiff"/>
|
|
|
23 |
<xs:element name="dateTimeDiff2" type="tns:dateTimeDiff2"/>
|
|
|
24 |
<xs:element name="dateTimeDiff2Response" type="tns:dateTimeDiff2Response"/>
|
|
|
25 |
<xs:element name="dateTimeDiffResponse" type="tns:dateTimeDiffResponse"/>
|
67 |
brianR |
26 |
<xs:element name="formatDate" type="tns:formatDate"/>
|
|
|
27 |
<xs:element name="formatDateAdvanced" type="tns:formatDateAdvanced"/>
|
|
|
28 |
<xs:element name="formatDateAdvancedResponse" type="tns:formatDateAdvancedResponse"/>
|
|
|
29 |
<xs:element name="formatDateResponse" type="tns:formatDateResponse"/>
|
|
|
30 |
<xs:element name="getDate" type="tns:getDate"/>
|
|
|
31 |
<xs:element name="getDateResponse" type="tns:getDateResponse"/>
|
|
|
32 |
<xs:element name="getInTimezone" type="tns:getInTimezone"/>
|
|
|
33 |
<xs:element name="getInTimezoneResponse" type="tns:getInTimezoneResponse"/>
|
|
|
34 |
<xs:element name="getTimestamp" type="tns:getTimestamp"/>
|
|
|
35 |
<xs:element name="getTimestampResponse" type="tns:getTimestampResponse"/>
|
|
|
36 |
<xs:element name="parseDate" type="tns:parseDate"/>
|
|
|
37 |
<xs:element name="parseDateAdvanced" type="tns:parseDateAdvanced"/>
|
|
|
38 |
<xs:element name="parseDateAdvancedResponse" type="tns:parseDateAdvancedResponse"/>
|
|
|
39 |
<xs:element name="parseDateResponse" type="tns:parseDateResponse"/>
|
69 |
brianR |
40 |
<xs:complexType name="dateAdd">
|
|
|
41 |
<xs:sequence>
|
|
|
42 |
<xs:element name="datetime" type="xs:dateTime"/>
|
|
|
43 |
<xs:element name="value" type="xs:integer"/>
|
|
|
44 |
<xs:element name="unit" type="tns:dateTimeUnits"/>
|
|
|
45 |
</xs:sequence>
|
|
|
46 |
</xs:complexType>
|
|
|
47 |
<xs:complexType name="dateAddResponse">
|
|
|
48 |
<xs:sequence>
|
|
|
49 |
<xs:element minOccurs="0" name="return" type="xs:dateTime"/>
|
|
|
50 |
</xs:sequence>
|
|
|
51 |
</xs:complexType>
|
67 |
brianR |
52 |
<xs:complexType name="getDate">
|
|
|
53 |
<xs:sequence>
|
|
|
54 |
<xs:element minOccurs="0" name="timezone" type="xs:string"/>
|
|
|
55 |
</xs:sequence>
|
|
|
56 |
</xs:complexType>
|
|
|
57 |
<xs:complexType name="getDateResponse">
|
|
|
58 |
<xs:sequence>
|
|
|
59 |
<xs:element minOccurs="0" name="return" type="xs:dateTime"/>
|
|
|
60 |
</xs:sequence>
|
|
|
61 |
</xs:complexType>
|
|
|
62 |
<xs:complexType name="getInTimezone">
|
|
|
63 |
<xs:sequence>
|
|
|
64 |
<xs:element name="datetime" type="xs:dateTime"/>
|
|
|
65 |
<xs:element name="timezone" type="xs:string"/>
|
|
|
66 |
</xs:sequence>
|
|
|
67 |
</xs:complexType>
|
|
|
68 |
<xs:complexType name="getInTimezoneResponse">
|
|
|
69 |
<xs:sequence>
|
|
|
70 |
<xs:element minOccurs="0" name="return" type="xs:dateTime"/>
|
|
|
71 |
</xs:sequence>
|
|
|
72 |
</xs:complexType>
|
|
|
73 |
<xs:complexType name="formatDate">
|
|
|
74 |
<xs:sequence>
|
|
|
75 |
<xs:element name="datetime" type="xs:dateTime"/>
|
|
|
76 |
<xs:element name="format" type="tns:dateFormatType"/>
|
|
|
77 |
</xs:sequence>
|
|
|
78 |
</xs:complexType>
|
|
|
79 |
<xs:complexType name="formatDateResponse">
|
|
|
80 |
<xs:sequence>
|
|
|
81 |
<xs:element minOccurs="0" name="return" type="xs:string"/>
|
|
|
82 |
</xs:sequence>
|
|
|
83 |
</xs:complexType>
|
69 |
brianR |
84 |
<xs:complexType name="dateTimeDiff2">
|
|
|
85 |
<xs:sequence>
|
|
|
86 |
<xs:element name="fromDateTime" type="xs:dateTime"/>
|
|
|
87 |
<xs:element name="toDateTime" type="xs:dateTime"/>
|
|
|
88 |
<xs:element minOccurs="0" name="PARAM_UNIT" type="tns:dateTimeUnits"/>
|
|
|
89 |
</xs:sequence>
|
|
|
90 |
</xs:complexType>
|
|
|
91 |
<xs:complexType name="dateTimeDiff2Response">
|
|
|
92 |
<xs:sequence>
|
|
|
93 |
<xs:element minOccurs="0" name="return" type="xs:integer"/>
|
|
|
94 |
</xs:sequence>
|
|
|
95 |
</xs:complexType>
|
67 |
brianR |
96 |
<xs:complexType name="formatDateAdvanced">
|
|
|
97 |
<xs:sequence>
|
|
|
98 |
<xs:element name="datetime" type="xs:dateTime"/>
|
|
|
99 |
<xs:element name="format" type="xs:string"/>
|
|
|
100 |
</xs:sequence>
|
|
|
101 |
</xs:complexType>
|
|
|
102 |
<xs:complexType name="formatDateAdvancedResponse">
|
|
|
103 |
<xs:sequence>
|
|
|
104 |
<xs:element minOccurs="0" name="return" type="xs:string"/>
|
|
|
105 |
</xs:sequence>
|
|
|
106 |
</xs:complexType>
|
|
|
107 |
<xs:complexType name="parseDate">
|
|
|
108 |
<xs:sequence>
|
|
|
109 |
<xs:element name="datetime" type="xs:string"/>
|
|
|
110 |
<xs:element name="format" type="tns:dateFormatType"/>
|
69 |
brianR |
111 |
<xs:element minOccurs="0" name="timezone" type="xs:string"/>
|
67 |
brianR |
112 |
</xs:sequence>
|
|
|
113 |
</xs:complexType>
|
|
|
114 |
<xs:complexType name="parseDateResponse">
|
|
|
115 |
<xs:sequence>
|
|
|
116 |
<xs:element minOccurs="0" name="return" type="xs:dateTime"/>
|
|
|
117 |
</xs:sequence>
|
|
|
118 |
</xs:complexType>
|
|
|
119 |
<xs:complexType name="parseDateAdvanced">
|
|
|
120 |
<xs:sequence>
|
|
|
121 |
<xs:element name="datetime" type="xs:string"/>
|
|
|
122 |
<xs:element name="format" type="xs:string"/>
|
69 |
brianR |
123 |
<xs:element minOccurs="0" name="timezone" type="xs:string"/>
|
67 |
brianR |
124 |
</xs:sequence>
|
|
|
125 |
</xs:complexType>
|
|
|
126 |
<xs:complexType name="parseDateAdvancedResponse">
|
|
|
127 |
<xs:sequence>
|
|
|
128 |
<xs:element minOccurs="0" name="return" type="xs:dateTime"/>
|
|
|
129 |
</xs:sequence>
|
|
|
130 |
</xs:complexType>
|
|
|
131 |
<xs:complexType name="getTimestamp">
|
|
|
132 |
<xs:sequence/>
|
|
|
133 |
</xs:complexType>
|
|
|
134 |
<xs:complexType name="getTimestampResponse">
|
|
|
135 |
<xs:sequence>
|
|
|
136 |
<xs:element minOccurs="0" name="return" type="xs:integer"/>
|
|
|
137 |
</xs:sequence>
|
|
|
138 |
</xs:complexType>
|
69 |
brianR |
139 |
<xs:complexType name="dateTimeDiff">
|
|
|
140 |
<xs:sequence>
|
|
|
141 |
<xs:element name="fromDateTime" type="xs:dateTime"/>
|
|
|
142 |
<xs:element name="toDateTime" type="xs:dateTime"/>
|
|
|
143 |
</xs:sequence>
|
|
|
144 |
</xs:complexType>
|
|
|
145 |
<xs:complexType name="dateTimeDiffResponse">
|
|
|
146 |
<xs:sequence>
|
|
|
147 |
<xs:element minOccurs="0" name="return" type="xs:integer"/>
|
|
|
148 |
</xs:sequence>
|
|
|
149 |
</xs:complexType>
|
|
|
150 |
<xs:simpleType name="dateTimeUnits">
|
|
|
151 |
<xs:restriction base="xs:string">
|
|
|
152 |
<xs:enumeration value="milliseconds"/>
|
|
|
153 |
<xs:enumeration value="seconds"/>
|
|
|
154 |
<xs:enumeration value="minutes"/>
|
|
|
155 |
<xs:enumeration value="hours"/>
|
|
|
156 |
<xs:enumeration value="days"/>
|
|
|
157 |
</xs:restriction>
|
|
|
158 |
</xs:simpleType>
|
67 |
brianR |
159 |
<xs:simpleType name="dateFormatType">
|
|
|
160 |
<xs:restriction base="xs:string">
|
|
|
161 |
<xs:enumeration value="ISO 8601"/>
|
|
|
162 |
<xs:enumeration value="yyyy/mm/dd"/>
|
|
|
163 |
<xs:enumeration value="dd.mm.yyyy"/>
|
|
|
164 |
</xs:restriction>
|
|
|
165 |
</xs:simpleType>
|
|
|
166 |
<xs:complexType name="XServicesFault">
|
|
|
167 |
<xs:sequence>
|
|
|
168 |
<xs:element name="faultstring" nillable="true" type="xs:string"/>
|
|
|
169 |
<xs:element name="username" nillable="true" type="xs:string"/>
|
|
|
170 |
<xs:element name="homedir" nillable="true" type="xs:string"/>
|
|
|
171 |
<xs:element name="timestamp" nillable="true" type="xs:anySimpleType"/>
|
|
|
172 |
<xs:element name="jvmruntime" nillable="true" type="xs:string"/>
|
|
|
173 |
</xs:sequence>
|
|
|
174 |
</xs:complexType>
|
|
|
175 |
<xs:element name="XServicesFault" type="tns:XServicesFault"/>
|
|
|
176 |
</xs:schema>
|
|
|
177 |
</wsdl:types>
|
69 |
brianR |
178 |
<wsdl:message name="dateAdd">
|
|
|
179 |
<wsdl:part element="tns:dateAdd" name="parameters"></wsdl:part>
|
|
|
180 |
</wsdl:message>
|
67 |
brianR |
181 |
<wsdl:message name="getDate">
|
|
|
182 |
<wsdl:part element="tns:getDate" name="parameters"></wsdl:part>
|
|
|
183 |
</wsdl:message>
|
|
|
184 |
<wsdl:message name="getTimestamp">
|
|
|
185 |
<wsdl:part element="tns:getTimestamp" name="parameters"></wsdl:part>
|
|
|
186 |
</wsdl:message>
|
69 |
brianR |
187 |
<wsdl:message name="parseDateAdvancedResponse">
|
|
|
188 |
<wsdl:part element="tns:parseDateAdvancedResponse" name="parameters"></wsdl:part>
|
|
|
189 |
</wsdl:message>
|
67 |
brianR |
190 |
<wsdl:message name="formatDateAdvanced">
|
|
|
191 |
<wsdl:part element="tns:formatDateAdvanced" name="parameters"></wsdl:part>
|
|
|
192 |
</wsdl:message>
|
69 |
brianR |
193 |
<wsdl:message name="parseDateResponse">
|
|
|
194 |
<wsdl:part element="tns:parseDateResponse" name="parameters"></wsdl:part>
|
67 |
brianR |
195 |
</wsdl:message>
|
|
|
196 |
<wsdl:message name="getDateResponse">
|
|
|
197 |
<wsdl:part element="tns:getDateResponse" name="parameters"></wsdl:part>
|
|
|
198 |
</wsdl:message>
|
|
|
199 |
<wsdl:message name="formatDateAdvancedResponse">
|
|
|
200 |
<wsdl:part element="tns:formatDateAdvancedResponse" name="parameters"></wsdl:part>
|
|
|
201 |
</wsdl:message>
|
|
|
202 |
<wsdl:message name="parseDate">
|
|
|
203 |
<wsdl:part element="tns:parseDate" name="parameters"></wsdl:part>
|
|
|
204 |
</wsdl:message>
|
|
|
205 |
<wsdl:message name="getInTimezoneResponse">
|
|
|
206 |
<wsdl:part element="tns:getInTimezoneResponse" name="parameters"></wsdl:part>
|
|
|
207 |
</wsdl:message>
|
69 |
brianR |
208 |
<wsdl:message name="dateTimeDiff2Response">
|
|
|
209 |
<wsdl:part element="tns:dateTimeDiff2Response" name="parameters"></wsdl:part>
|
|
|
210 |
</wsdl:message>
|
67 |
brianR |
211 |
<wsdl:message name="parseDateAdvanced">
|
|
|
212 |
<wsdl:part element="tns:parseDateAdvanced" name="parameters"></wsdl:part>
|
|
|
213 |
</wsdl:message>
|
|
|
214 |
<wsdl:message name="XServicesFault">
|
|
|
215 |
<wsdl:part element="tns:XServicesFault" name="XServicesFault"></wsdl:part>
|
|
|
216 |
</wsdl:message>
|
|
|
217 |
<wsdl:message name="formatDate">
|
|
|
218 |
<wsdl:part element="tns:formatDate" name="parameters"></wsdl:part>
|
|
|
219 |
</wsdl:message>
|
|
|
220 |
<wsdl:message name="formatDateResponse">
|
|
|
221 |
<wsdl:part element="tns:formatDateResponse" name="parameters"></wsdl:part>
|
|
|
222 |
</wsdl:message>
|
69 |
brianR |
223 |
<wsdl:message name="dateTimeDiff">
|
|
|
224 |
<wsdl:part element="tns:dateTimeDiff" name="parameters"></wsdl:part>
|
|
|
225 |
</wsdl:message>
|
67 |
brianR |
226 |
<wsdl:message name="getTimestampResponse">
|
|
|
227 |
<wsdl:part element="tns:getTimestampResponse" name="parameters"></wsdl:part>
|
|
|
228 |
</wsdl:message>
|
|
|
229 |
<wsdl:message name="getInTimezone">
|
|
|
230 |
<wsdl:part element="tns:getInTimezone" name="parameters"></wsdl:part>
|
|
|
231 |
</wsdl:message>
|
69 |
brianR |
232 |
<wsdl:message name="dateTimeDiff2">
|
|
|
233 |
<wsdl:part element="tns:dateTimeDiff2" name="parameters"></wsdl:part>
|
|
|
234 |
</wsdl:message>
|
|
|
235 |
<wsdl:message name="dateTimeDiffResponse">
|
|
|
236 |
<wsdl:part element="tns:dateTimeDiffResponse" name="parameters"></wsdl:part>
|
|
|
237 |
</wsdl:message>
|
|
|
238 |
<wsdl:message name="dateAddResponse">
|
|
|
239 |
<wsdl:part element="tns:dateAddResponse" name="parameters"></wsdl:part>
|
|
|
240 |
</wsdl:message>
|
67 |
brianR |
241 |
<wsdl:portType name="DateService">
|
69 |
brianR |
242 |
<wsdl:operation name="dateAdd">
|
|
|
243 |
<wsdl:documentation>Add or substract a time span from a date.</wsdl:documentation>
|
|
|
244 |
<wsdl:input message="tns:dateAdd" name="dateAdd"></wsdl:input>
|
|
|
245 |
<wsdl:output message="tns:dateAddResponse" name="dateAddResponse"></wsdl:output>
|
|
|
246 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
247 |
</wsdl:operation>
|
67 |
brianR |
248 |
<wsdl:operation name="getDate">
|
69 |
brianR |
249 |
<wsdl:documentation>Get current date and time.</wsdl:documentation>
|
67 |
brianR |
250 |
<wsdl:input message="tns:getDate" name="getDate"></wsdl:input>
|
|
|
251 |
<wsdl:output message="tns:getDateResponse" name="getDateResponse"></wsdl:output>
|
|
|
252 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
253 |
</wsdl:operation>
|
|
|
254 |
<wsdl:operation name="getInTimezone">
|
|
|
255 |
<wsdl:input message="tns:getInTimezone" name="getInTimezone"></wsdl:input>
|
|
|
256 |
<wsdl:output message="tns:getInTimezoneResponse" name="getInTimezoneResponse"></wsdl:output>
|
|
|
257 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
258 |
</wsdl:operation>
|
|
|
259 |
<wsdl:operation name="formatDate">
|
|
|
260 |
<wsdl:input message="tns:formatDate" name="formatDate"></wsdl:input>
|
|
|
261 |
<wsdl:output message="tns:formatDateResponse" name="formatDateResponse"></wsdl:output>
|
|
|
262 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
263 |
</wsdl:operation>
|
69 |
brianR |
264 |
<wsdl:operation name="dateTimeDiff2">
|
|
|
265 |
<wsdl:documentation>Get elapsed time between to dates.</wsdl:documentation>
|
|
|
266 |
<wsdl:input message="tns:dateTimeDiff2" name="dateTimeDiff2"></wsdl:input>
|
|
|
267 |
<wsdl:output message="tns:dateTimeDiff2Response" name="dateTimeDiff2Response"></wsdl:output>
|
|
|
268 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
269 |
</wsdl:operation>
|
67 |
brianR |
270 |
<wsdl:operation name="formatDateAdvanced">
|
|
|
271 |
<wsdl:input message="tns:formatDateAdvanced" name="formatDateAdvanced"></wsdl:input>
|
|
|
272 |
<wsdl:output message="tns:formatDateAdvancedResponse" name="formatDateAdvancedResponse"></wsdl:output>
|
|
|
273 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
274 |
</wsdl:operation>
|
|
|
275 |
<wsdl:operation name="parseDate">
|
|
|
276 |
<wsdl:input message="tns:parseDate" name="parseDate"></wsdl:input>
|
|
|
277 |
<wsdl:output message="tns:parseDateResponse" name="parseDateResponse"></wsdl:output>
|
|
|
278 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
279 |
</wsdl:operation>
|
|
|
280 |
<wsdl:operation name="parseDateAdvanced">
|
|
|
281 |
<wsdl:input message="tns:parseDateAdvanced" name="parseDateAdvanced"></wsdl:input>
|
|
|
282 |
<wsdl:output message="tns:parseDateAdvancedResponse" name="parseDateAdvancedResponse"></wsdl:output>
|
|
|
283 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
284 |
</wsdl:operation>
|
|
|
285 |
<wsdl:operation name="getTimestamp">
|
69 |
brianR |
286 |
<wsdl:documentation>Get milliseconds since 01.01.1970 (Unix timestap).</wsdl:documentation>
|
67 |
brianR |
287 |
<wsdl:input message="tns:getTimestamp" name="getTimestamp"></wsdl:input>
|
|
|
288 |
<wsdl:output message="tns:getTimestampResponse" name="getTimestampResponse"></wsdl:output>
|
|
|
289 |
</wsdl:operation>
|
69 |
brianR |
290 |
<wsdl:operation name="dateTimeDiff">
|
|
|
291 |
<wsdl:input message="tns:dateTimeDiff" name="dateTimeDiff"></wsdl:input>
|
|
|
292 |
<wsdl:output message="tns:dateTimeDiffResponse" name="dateTimeDiffResponse"></wsdl:output>
|
|
|
293 |
<wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
|
|
|
294 |
</wsdl:operation>
|
67 |
brianR |
295 |
</wsdl:portType>
|
|
|
296 |
<wsdl:binding name="DateServiceSoapBinding" type="tns:DateService">
|
|
|
297 |
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
69 |
brianR |
298 |
<wsdl:operation name="dateAdd">
|
|
|
299 |
<soap:operation soapAction="" style="document"/>
|
|
|
300 |
<wsdl:input name="dateAdd">
|
|
|
301 |
<soap:body use="literal"/>
|
|
|
302 |
</wsdl:input>
|
|
|
303 |
<wsdl:output name="dateAddResponse">
|
|
|
304 |
<soap:body use="literal"/>
|
|
|
305 |
</wsdl:output>
|
|
|
306 |
<wsdl:fault name="XServicesFault">
|
|
|
307 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
308 |
</wsdl:fault>
|
|
|
309 |
</wsdl:operation>
|
67 |
brianR |
310 |
<wsdl:operation name="getDate">
|
|
|
311 |
<soap:operation soapAction="" style="document"/>
|
|
|
312 |
<wsdl:input name="getDate">
|
|
|
313 |
<soap:body use="literal"/>
|
|
|
314 |
</wsdl:input>
|
|
|
315 |
<wsdl:output name="getDateResponse">
|
|
|
316 |
<soap:body use="literal"/>
|
|
|
317 |
</wsdl:output>
|
|
|
318 |
<wsdl:fault name="XServicesFault">
|
|
|
319 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
320 |
</wsdl:fault>
|
|
|
321 |
</wsdl:operation>
|
|
|
322 |
<wsdl:operation name="getInTimezone">
|
|
|
323 |
<soap:operation soapAction="" style="document"/>
|
|
|
324 |
<wsdl:input name="getInTimezone">
|
|
|
325 |
<soap:body use="literal"/>
|
|
|
326 |
</wsdl:input>
|
|
|
327 |
<wsdl:output name="getInTimezoneResponse">
|
|
|
328 |
<soap:body use="literal"/>
|
|
|
329 |
</wsdl:output>
|
|
|
330 |
<wsdl:fault name="XServicesFault">
|
|
|
331 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
332 |
</wsdl:fault>
|
|
|
333 |
</wsdl:operation>
|
|
|
334 |
<wsdl:operation name="formatDate">
|
|
|
335 |
<soap:operation soapAction="" style="document"/>
|
|
|
336 |
<wsdl:input name="formatDate">
|
|
|
337 |
<soap:body use="literal"/>
|
|
|
338 |
</wsdl:input>
|
|
|
339 |
<wsdl:output name="formatDateResponse">
|
|
|
340 |
<soap:body use="literal"/>
|
|
|
341 |
</wsdl:output>
|
|
|
342 |
<wsdl:fault name="XServicesFault">
|
|
|
343 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
344 |
</wsdl:fault>
|
|
|
345 |
</wsdl:operation>
|
69 |
brianR |
346 |
<wsdl:operation name="dateTimeDiff2">
|
|
|
347 |
<soap:operation soapAction="" style="document"/>
|
|
|
348 |
<wsdl:input name="dateTimeDiff2">
|
|
|
349 |
<soap:body use="literal"/>
|
|
|
350 |
</wsdl:input>
|
|
|
351 |
<wsdl:output name="dateTimeDiff2Response">
|
|
|
352 |
<soap:body use="literal"/>
|
|
|
353 |
</wsdl:output>
|
|
|
354 |
<wsdl:fault name="XServicesFault">
|
|
|
355 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
356 |
</wsdl:fault>
|
|
|
357 |
</wsdl:operation>
|
67 |
brianR |
358 |
<wsdl:operation name="formatDateAdvanced">
|
|
|
359 |
<soap:operation soapAction="" style="document"/>
|
|
|
360 |
<wsdl:input name="formatDateAdvanced">
|
|
|
361 |
<soap:body use="literal"/>
|
|
|
362 |
</wsdl:input>
|
|
|
363 |
<wsdl:output name="formatDateAdvancedResponse">
|
|
|
364 |
<soap:body use="literal"/>
|
|
|
365 |
</wsdl:output>
|
|
|
366 |
<wsdl:fault name="XServicesFault">
|
|
|
367 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
368 |
</wsdl:fault>
|
|
|
369 |
</wsdl:operation>
|
|
|
370 |
<wsdl:operation name="parseDate">
|
|
|
371 |
<soap:operation soapAction="" style="document"/>
|
|
|
372 |
<wsdl:input name="parseDate">
|
|
|
373 |
<soap:body use="literal"/>
|
|
|
374 |
</wsdl:input>
|
|
|
375 |
<wsdl:output name="parseDateResponse">
|
|
|
376 |
<soap:body use="literal"/>
|
|
|
377 |
</wsdl:output>
|
|
|
378 |
<wsdl:fault name="XServicesFault">
|
|
|
379 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
380 |
</wsdl:fault>
|
|
|
381 |
</wsdl:operation>
|
|
|
382 |
<wsdl:operation name="parseDateAdvanced">
|
|
|
383 |
<soap:operation soapAction="" style="document"/>
|
|
|
384 |
<wsdl:input name="parseDateAdvanced">
|
|
|
385 |
<soap:body use="literal"/>
|
|
|
386 |
</wsdl:input>
|
|
|
387 |
<wsdl:output name="parseDateAdvancedResponse">
|
|
|
388 |
<soap:body use="literal"/>
|
|
|
389 |
</wsdl:output>
|
|
|
390 |
<wsdl:fault name="XServicesFault">
|
|
|
391 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
392 |
</wsdl:fault>
|
|
|
393 |
</wsdl:operation>
|
69 |
brianR |
394 |
<wsdl:operation name="dateTimeDiff">
|
|
|
395 |
<soap:operation soapAction="" style="document"/>
|
|
|
396 |
<wsdl:input name="dateTimeDiff">
|
|
|
397 |
<soap:body use="literal"/>
|
|
|
398 |
</wsdl:input>
|
|
|
399 |
<wsdl:output name="dateTimeDiffResponse">
|
|
|
400 |
<soap:body use="literal"/>
|
|
|
401 |
</wsdl:output>
|
|
|
402 |
<wsdl:fault name="XServicesFault">
|
|
|
403 |
<soap:fault name="XServicesFault" use="literal"/>
|
|
|
404 |
</wsdl:fault>
|
|
|
405 |
</wsdl:operation>
|
67 |
brianR |
406 |
<wsdl:operation name="getTimestamp">
|
|
|
407 |
<soap:operation soapAction="" style="document"/>
|
|
|
408 |
<wsdl:input name="getTimestamp">
|
|
|
409 |
<soap:body use="literal"/>
|
|
|
410 |
</wsdl:input>
|
|
|
411 |
<wsdl:output name="getTimestampResponse">
|
|
|
412 |
<soap:body use="literal"/>
|
|
|
413 |
</wsdl:output>
|
|
|
414 |
</wsdl:operation>
|
|
|
415 |
</wsdl:binding>
|
|
|
416 |
<wsdl:service name="DateService">
|
|
|
417 |
<wsdl:port binding="tns:DateServiceSoapBinding" name="DateServiceImplPort">
|
|
|
418 |
<soap:address location="http://localhost:8080/XServices/DateService"/>
|
|
|
419 |
</wsdl:port>
|
|
|
420 |
</wsdl:service>
|
|
|
421 |
</wsdl:definitions>]]></con:content><con:type>http://schemas.xmlsoap.org/wsdl/</con:type></con:part></con:definitionCache><con:endpoints><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint></con:endpoints><con:operation isOneWay="false" action="" name="getDate" bindingOperationName="getDate" type="Request-Response" outputName="getDateResponse" inputName="getDate" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
422 |
<soapenv:Header/>
|
|
|
423 |
<soapenv:Body>
|
|
|
424 |
<ws:getDate>
|
|
|
425 |
</ws:getDate>
|
|
|
426 |
</soapenv:Body>
|
|
|
427 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/getDate"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="getTimestamp" bindingOperationName="getTimestamp" type="Request-Response" outputName="getTimestampResponse" inputName="getTimestamp" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
428 |
<soapenv:Header/>
|
|
|
429 |
<soapenv:Body>
|
|
|
430 |
<ws:getTimestamp/>
|
|
|
431 |
</soapenv:Body>
|
|
|
432 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/getTimestamp"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="getInTimezone" bindingOperationName="getInTimezone" type="Request-Response" outputName="getInTimezoneResponse" inputName="getInTimezone" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
433 |
<soapenv:Header/>
|
|
|
434 |
<soapenv:Body>
|
|
|
435 |
<ws:getInTimezone>
|
|
|
436 |
<datetime>2011-05-30T16:05:36-11:00</datetime>
|
|
|
437 |
<timezone>Europe/Amsterdam</timezone>
|
|
|
438 |
</ws:getInTimezone>
|
|
|
439 |
</soapenv:Body>
|
|
|
440 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/getInTimezone"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="formatDate" bindingOperationName="formatDate" type="Request-Response" outputName="formatDateResponse" inputName="formatDate" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
441 |
<soapenv:Header/>
|
|
|
442 |
<soapenv:Body>
|
|
|
443 |
<ws:formatDate>
|
|
|
444 |
<datetime>2010-06-15Z</datetime>
|
|
|
445 |
<format>ISO 8601</format>
|
|
|
446 |
</ws:formatDate>
|
|
|
447 |
</soapenv:Body>
|
|
|
448 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/formatDate"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="formatDateAdvanced" bindingOperationName="formatDateAdvanced" type="Request-Response" outputName="formatDateAdvancedResponse" inputName="formatDateAdvanced" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
449 |
<soapenv:Header/>
|
|
|
450 |
<soapenv:Body>
|
|
|
451 |
<ws:formatDateAdvanced>
|
|
|
452 |
<datetime>2011-05-24T17:22:42+02:00</datetime>
|
|
|
453 |
<format>mmddyyyy-WW</format>
|
|
|
454 |
</ws:formatDateAdvanced>
|
|
|
455 |
</soapenv:Body>
|
69 |
brianR |
456 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/formatDateAdvanced"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="parseDate" bindingOperationName="parseDate" type="Request-Response" outputName="parseDateResponse" inputName="parseDate" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
457 |
<soapenv:Header/>
|
|
|
458 |
<soapenv:Body>
|
|
|
459 |
<ws:parseDate>
|
|
|
460 |
<datetime>30.05..2011</datetime>
|
|
|
461 |
<format>dd.mm.yyyy</format>
|
|
|
462 |
</ws:parseDate>
|
|
|
463 |
</soapenv:Body>
|
|
|
464 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/parseDate"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="parseDateAdvanced" bindingOperationName="parseDateAdvanced" type="Request-Response" outputName="parseDateAdvancedResponse" inputName="parseDateAdvanced" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings/><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
67 |
brianR |
465 |
<soapenv:Header/>
|
|
|
466 |
<soapenv:Body>
|
69 |
brianR |
467 |
<ws:parseDateAdvanced>
|
67 |
brianR |
468 |
<datetime>?</datetime>
|
|
|
469 |
<format>?</format>
|
69 |
brianR |
470 |
</ws:parseDateAdvanced>
|
67 |
brianR |
471 |
</soapenv:Body>
|
69 |
brianR |
472 |
</soapenv:Envelope>]]></con:request><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/parseDateAdvanced"/></con:call></con:operation><con:operation isOneWay="false" action="" name="dateTimeDiff" bindingOperationName="dateTimeDiff" type="Request-Response" outputName="dateTimeDiffResponse" inputName="dateTimeDiff" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
67 |
brianR |
473 |
<soapenv:Header/>
|
|
|
474 |
<soapenv:Body>
|
69 |
brianR |
475 |
<ws:dateTimeDiff>
|
|
|
476 |
<fromDateTime>2011-05-24T19:59:29.233+02:00</fromDateTime>
|
|
|
477 |
<toDateTime>2011-05-24T19:59:34.233+03:00</toDateTime>
|
|
|
478 |
</ws:dateTimeDiff>
|
67 |
brianR |
479 |
</soapenv:Body>
|
69 |
brianR |
480 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/dateTimeDiff"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="dateTimeDiff2" bindingOperationName="dateTimeDiff2" type="Request-Response" outputName="dateTimeDiff2Response" inputName="dateTimeDiff2" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
481 |
<soapenv:Header/>
|
|
|
482 |
<soapenv:Body>
|
|
|
483 |
<ws:dateTimeDiff2>
|
|
|
484 |
<fromDateTime>2012-05-24T19:59:29.233+02:00</fromDateTime>
|
|
|
485 |
<toDateTime>2011-06-24T21:01:59.234+02:00</toDateTime>
|
|
|
486 |
</ws:dateTimeDiff2>
|
|
|
487 |
</soapenv:Body>
|
|
|
488 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/dateTimeDiff2"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="dateAdd" bindingOperationName="dateAdd" type="Request-Response" outputName="dateAddResponse" inputName="dateAdd" receivesAttachments="false" sendsAttachments="false" anonymous="optional"><con:settings/><con:call name="Request 1"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers"><xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/DateService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
|
|
|
489 |
<soapenv:Header/>
|
|
|
490 |
<soapenv:Body>
|
|
|
491 |
<ws:dateAdd>
|
|
|
492 |
<datetime>2012-05-24T19:59:29.233+02:00</datetime>
|
|
|
493 |
<value>365</value>
|
|
|
494 |
<unit>hours</unit>
|
|
|
495 |
</ws:dateAdd>
|
|
|
496 |
</soapenv:Body>
|
|
|
497 |
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/DateService/dateAdd"/><con:wsrmConfig version="1.2"/></con:call></con:operation></con:interface><con:properties/><con:wssContainer/></con:soapui-project>
|