Subversion Repositories XServices

Rev

Rev 164 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
64 brianR 1
<?xml version="1.0" encoding="UTF-8"?>
177 brianR 2
<con:soapui-project name="ExecuteService" soapui-version="5.0.0" abortOnError="false" runType="SEQUENTIAL" resourceRoot="" activeEnvironment="Default" xmlns:con="http://eviware.com/soapui/config"><con:settings/><con:interface xsi:type="con:WsdlInterface" wsaVersion="NONE" name="ExecuteServiceSoapBinding" type="wsdl" bindingName="{http://ws.xservices.brutex.net}ExecuteServiceSoapBinding" soapVersion="1_1" anonymous="optional" definition="http://localhost:8080/XServices/ExecuteService?wsdl" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:settings/><con:definitionCache type="TEXT" rootPart="http://localhost:8080/XServices/ExecuteService?wsdl"><con:part><con:url>http://localhost:8080/XServices/ExecuteService?wsdl</con:url><con:content><![CDATA[<wsdl:definitions name="ExecuteService" targetNamespace="http://ws.xservices.brutex.net" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://ws.xservices.brutex.net" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http">
164 brianR 3
  <wsdl:types>
4
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://ws.xservices.brutex.net" xmlns:xs="http://www.w3.org/2001/XMLSchema">
5
      <xs:element name="antProperty" type="tns:antProperty"/>
6
      <xs:element name="rExec" type="tns:rExec"/>
7
      <xs:element name="rExecResponse" type="tns:rExecResponse"/>
8
      <xs:element name="runCommand" type="tns:runCommand"/>
9
      <xs:element name="runCommandAsync" type="tns:runCommandAsync"/>
10
      <xs:element name="runCommandAsyncResponse" type="tns:runCommandAsyncResponse"/>
11
      <xs:element name="runCommandAsyncWithArgs" type="tns:runCommandAsyncWithArgs"/>
12
      <xs:element name="runCommandAsyncWithArgsResponse" type="tns:runCommandAsyncWithArgsResponse"/>
13
      <xs:element name="runCommandResponse" type="tns:runCommandResponse"/>
14
      <xs:element name="runCommandWithArgs" type="tns:runCommandWithArgs"/>
15
      <xs:element name="runCommandWithArgsResponse" type="tns:runCommandWithArgsResponse"/>
16
      <xs:element name="runCommandWithSSH" type="tns:runCommandWithSSH"/>
17
      <xs:element name="runCommandWithSSHKeyAuth" type="tns:runCommandWithSSHKeyAuth"/>
18
      <xs:element name="runCommandWithSSHKeyAuthResponse" type="tns:runCommandWithSSHKeyAuthResponse"/>
19
      <xs:element name="runCommandWithSSHResponse" type="tns:runCommandWithSSHResponse"/>
20
      <xs:element name="runJavaScript" type="tns:runJavaScript"/>
21
      <xs:element name="runJavaScriptResponse" type="tns:runJavaScriptResponse"/>
22
      <xs:element name="telnet" type="tns:telnet"/>
23
      <xs:element name="telnetResponse" type="tns:telnetResponse"/>
24
      <xs:complexType name="runCommandWithSSH">
25
        <xs:sequence>
26
          <xs:element minOccurs="0" name="host" type="tns:connection"/>
27
          <xs:element minOccurs="0" name="command" type="xs:string"/>
28
          <xs:element name="timeout" type="xs:long"/>
29
        </xs:sequence>
30
      </xs:complexType>
31
      <xs:complexType name="connection">
32
        <xs:sequence>
33
          <xs:element name="hostname" type="xs:string"/>
34
          <xs:element name="port" type="xs:int"/>
35
          <xs:element minOccurs="0" name="user" type="xs:string"/>
36
          <xs:element minOccurs="0" name="password" type="xs:string"/>
37
        </xs:sequence>
38
      </xs:complexType>
39
      <xs:complexType name="runCommandWithSSHResponse">
40
        <xs:sequence>
41
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
42
        </xs:sequence>
43
      </xs:complexType>
44
      <xs:complexType name="ReturnCodeType">
45
        <xs:sequence>
46
          <xs:element name="returnCode" type="xs:int"/>
47
          <xs:element minOccurs="0" name="stdOut" type="xs:string"/>
48
          <xs:element minOccurs="0" name="stdErr" type="xs:string"/>
49
          <xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="tns:antProperty"/>
50
        </xs:sequence>
51
      </xs:complexType>
52
      <xs:complexType name="antProperty">
53
        <xs:sequence>
54
          <xs:element name="name" type="xs:string"/>
55
          <xs:element name="value" type="xs:string"/>
56
        </xs:sequence>
57
      </xs:complexType>
58
      <xs:complexType name="runJavaScript">
59
        <xs:sequence>
60
          <xs:element name="script" type="xs:string"/>
61
        </xs:sequence>
62
      </xs:complexType>
63
      <xs:complexType name="runJavaScriptResponse">
64
        <xs:sequence/>
65
      </xs:complexType>
66
      <xs:complexType name="runCommandWithSSHKeyAuth">
67
        <xs:sequence>
68
          <xs:element minOccurs="0" name="host" type="tns:connection"/>
69
          <xs:element minOccurs="0" name="keyfile" type="xs:string"/>
70
          <xs:element minOccurs="0" name="command" type="xs:string"/>
71
          <xs:element name="timeout" type="xs:long"/>
72
        </xs:sequence>
73
      </xs:complexType>
74
      <xs:complexType name="runCommandWithSSHKeyAuthResponse">
75
        <xs:sequence>
76
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
77
        </xs:sequence>
78
      </xs:complexType>
79
      <xs:complexType name="telnet">
80
        <xs:sequence>
81
          <xs:element minOccurs="0" name="host" type="tns:connection"/>
82
          <xs:element minOccurs="0" name="prompt" type="xs:string"/>
83
          <xs:element minOccurs="0" name="command" type="xs:string"/>
84
          <xs:element minOccurs="0" name="expect" type="xs:string"/>
85
          <xs:element name="timeout" type="xs:long"/>
86
        </xs:sequence>
87
      </xs:complexType>
88
      <xs:complexType name="telnetResponse">
89
        <xs:sequence>
90
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
91
        </xs:sequence>
92
      </xs:complexType>
93
      <xs:complexType name="runCommand">
94
        <xs:sequence>
95
          <xs:element minOccurs="0" name="executable" type="xs:string"/>
96
          <xs:element minOccurs="0" name="argline" type="xs:string"/>
97
          <xs:element name="timeout" type="xs:long"/>
98
        </xs:sequence>
99
      </xs:complexType>
100
      <xs:complexType name="runCommandResponse">
101
        <xs:sequence>
102
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
103
        </xs:sequence>
104
      </xs:complexType>
105
      <xs:complexType name="runCommandAsync">
106
        <xs:sequence>
107
          <xs:element minOccurs="0" name="executable" type="xs:string"/>
108
          <xs:element minOccurs="0" name="argline" type="xs:string"/>
109
        </xs:sequence>
110
      </xs:complexType>
111
      <xs:complexType name="runCommandAsyncResponse">
112
        <xs:sequence>
113
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
114
        </xs:sequence>
115
      </xs:complexType>
116
      <xs:complexType name="runCommandAsyncWithArgs">
117
        <xs:sequence>
118
          <xs:element minOccurs="0" name="executable" type="xs:string"/>
119
          <xs:element maxOccurs="unbounded" minOccurs="0" name="arg" type="xs:string"/>
120
        </xs:sequence>
121
      </xs:complexType>
122
      <xs:complexType name="runCommandAsyncWithArgsResponse">
123
        <xs:sequence>
124
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
125
        </xs:sequence>
126
      </xs:complexType>
127
      <xs:complexType name="runCommandWithArgs">
128
        <xs:sequence>
129
          <xs:element minOccurs="0" name="executable" type="xs:string"/>
130
          <xs:element maxOccurs="unbounded" minOccurs="0" name="arg" type="xs:string"/>
131
          <xs:element name="timeout" type="xs:long"/>
132
        </xs:sequence>
133
      </xs:complexType>
134
      <xs:complexType name="runCommandWithArgsResponse">
135
        <xs:sequence>
136
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
137
        </xs:sequence>
138
      </xs:complexType>
139
      <xs:complexType name="rExec">
140
        <xs:sequence>
141
          <xs:element minOccurs="0" name="host" type="tns:connection"/>
142
          <xs:element minOccurs="0" name="command" type="xs:string"/>
143
          <xs:element name="timeout" type="xs:long"/>
144
        </xs:sequence>
145
      </xs:complexType>
146
      <xs:complexType name="rExecResponse">
147
        <xs:sequence>
148
          <xs:element minOccurs="0" name="return" type="tns:ReturnCodeType"/>
149
        </xs:sequence>
150
      </xs:complexType>
151
      <xs:element name="XServicesFault" type="tns:XServicesFault"/>
152
      <xs:complexType name="XServicesFault">
153
        <xs:sequence>
154
          <xs:element name="faultstring" nillable="true" type="xs:string"/>
155
          <xs:element name="username" nillable="true" type="xs:string"/>
156
          <xs:element name="homedir" nillable="true" type="xs:string"/>
157
          <xs:element name="timestamp" nillable="true" type="xs:anySimpleType"/>
158
          <xs:element name="jvmruntime" nillable="true" type="xs:string"/>
159
        </xs:sequence>
160
      </xs:complexType>
161
    </xs:schema>
162
  </wsdl:types>
163
  <wsdl:message name="runCommandAsyncWithArgs">
164
    <wsdl:part element="tns:runCommandAsyncWithArgs" name="parameters"></wsdl:part>
165
  </wsdl:message>
166
  <wsdl:message name="runCommandWithSSHKeyAuth">
167
    <wsdl:part element="tns:runCommandWithSSHKeyAuth" name="parameters"></wsdl:part>
168
  </wsdl:message>
169
  <wsdl:message name="runCommandWithArgsResponse">
170
    <wsdl:part element="tns:runCommandWithArgsResponse" name="parameters"></wsdl:part>
171
  </wsdl:message>
172
  <wsdl:message name="runCommandWithSSHKeyAuthResponse">
173
    <wsdl:part element="tns:runCommandWithSSHKeyAuthResponse" name="parameters"></wsdl:part>
174
  </wsdl:message>
175
  <wsdl:message name="rExec">
176
    <wsdl:part element="tns:rExec" name="parameters"></wsdl:part>
177
  </wsdl:message>
178
  <wsdl:message name="runCommandAsync">
179
    <wsdl:part element="tns:runCommandAsync" name="parameters"></wsdl:part>
180
  </wsdl:message>
181
  <wsdl:message name="XServicesFault">
182
    <wsdl:part element="tns:XServicesFault" name="XServicesFault"></wsdl:part>
183
  </wsdl:message>
184
  <wsdl:message name="runJavaScript">
185
    <wsdl:part element="tns:runJavaScript" name="parameters"></wsdl:part>
186
  </wsdl:message>
187
  <wsdl:message name="runCommandAsyncResponse">
188
    <wsdl:part element="tns:runCommandAsyncResponse" name="parameters"></wsdl:part>
189
  </wsdl:message>
190
  <wsdl:message name="runCommandWithSSH">
191
    <wsdl:part element="tns:runCommandWithSSH" name="parameters"></wsdl:part>
192
  </wsdl:message>
193
  <wsdl:message name="rExecResponse">
194
    <wsdl:part element="tns:rExecResponse" name="parameters"></wsdl:part>
195
  </wsdl:message>
196
  <wsdl:message name="runCommandAsyncWithArgsResponse">
197
    <wsdl:part element="tns:runCommandAsyncWithArgsResponse" name="parameters"></wsdl:part>
198
  </wsdl:message>
199
  <wsdl:message name="telnet">
200
    <wsdl:part element="tns:telnet" name="parameters"></wsdl:part>
201
  </wsdl:message>
202
  <wsdl:message name="runCommand">
203
    <wsdl:part element="tns:runCommand" name="parameters"></wsdl:part>
204
  </wsdl:message>
205
  <wsdl:message name="runCommandWithArgs">
206
    <wsdl:part element="tns:runCommandWithArgs" name="parameters"></wsdl:part>
207
  </wsdl:message>
208
  <wsdl:message name="runCommandWithSSHResponse">
209
    <wsdl:part element="tns:runCommandWithSSHResponse" name="parameters"></wsdl:part>
210
  </wsdl:message>
211
  <wsdl:message name="runCommandResponse">
212
    <wsdl:part element="tns:runCommandResponse" name="parameters"></wsdl:part>
213
  </wsdl:message>
214
  <wsdl:message name="runJavaScriptResponse">
215
    <wsdl:part element="tns:runJavaScriptResponse" name="parameters"></wsdl:part>
216
  </wsdl:message>
217
  <wsdl:message name="telnetResponse">
218
    <wsdl:part element="tns:telnetResponse" name="parameters"></wsdl:part>
219
  </wsdl:message>
220
  <wsdl:portType name="ExecuteService">
221
    <wsdl:operation name="runCommandWithSSH">
222
      <wsdl:input message="tns:runCommandWithSSH" name="runCommandWithSSH"></wsdl:input>
223
      <wsdl:output message="tns:runCommandWithSSHResponse" name="runCommandWithSSHResponse"></wsdl:output>
224
    </wsdl:operation>
225
    <wsdl:operation name="runJavaScript">
226
      <wsdl:input message="tns:runJavaScript" name="runJavaScript"></wsdl:input>
227
      <wsdl:output message="tns:runJavaScriptResponse" name="runJavaScriptResponse"></wsdl:output>
228
      <wsdl:fault message="tns:XServicesFault" name="XServicesFault"></wsdl:fault>
229
    </wsdl:operation>
230
    <wsdl:operation name="runCommandWithSSHKeyAuth">
231
      <wsdl:input message="tns:runCommandWithSSHKeyAuth" name="runCommandWithSSHKeyAuth"></wsdl:input>
232
      <wsdl:output message="tns:runCommandWithSSHKeyAuthResponse" name="runCommandWithSSHKeyAuthResponse"></wsdl:output>
233
    </wsdl:operation>
234
    <wsdl:operation name="telnet">
235
      <wsdl:input message="tns:telnet" name="telnet"></wsdl:input>
236
      <wsdl:output message="tns:telnetResponse" name="telnetResponse"></wsdl:output>
237
    </wsdl:operation>
238
    <wsdl:operation name="runCommand">
239
      <wsdl:input message="tns:runCommand" name="runCommand"></wsdl:input>
240
      <wsdl:output message="tns:runCommandResponse" name="runCommandResponse"></wsdl:output>
241
    </wsdl:operation>
242
    <wsdl:operation name="runCommandAsync">
243
      <wsdl:input message="tns:runCommandAsync" name="runCommandAsync"></wsdl:input>
244
      <wsdl:output message="tns:runCommandAsyncResponse" name="runCommandAsyncResponse"></wsdl:output>
245
    </wsdl:operation>
246
    <wsdl:operation name="runCommandAsyncWithArgs">
247
      <wsdl:input message="tns:runCommandAsyncWithArgs" name="runCommandAsyncWithArgs"></wsdl:input>
248
      <wsdl:output message="tns:runCommandAsyncWithArgsResponse" name="runCommandAsyncWithArgsResponse"></wsdl:output>
249
    </wsdl:operation>
250
    <wsdl:operation name="runCommandWithArgs">
251
      <wsdl:input message="tns:runCommandWithArgs" name="runCommandWithArgs"></wsdl:input>
252
      <wsdl:output message="tns:runCommandWithArgsResponse" name="runCommandWithArgsResponse"></wsdl:output>
253
    </wsdl:operation>
254
    <wsdl:operation name="rExec">
255
      <wsdl:input message="tns:rExec" name="rExec"></wsdl:input>
256
      <wsdl:output message="tns:rExecResponse" name="rExecResponse"></wsdl:output>
257
    </wsdl:operation>
258
  </wsdl:portType>
259
  <wsdl:binding name="ExecuteServiceSoapBinding" type="tns:ExecuteService">
260
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
261
    <wsdl:operation name="runCommandWithSSH">
262
      <soap:operation soapAction="" style="document"/>
263
      <wsdl:input name="runCommandWithSSH">
264
        <soap:body use="literal"/>
265
      </wsdl:input>
266
      <wsdl:output name="runCommandWithSSHResponse">
267
        <soap:body use="literal"/>
268
      </wsdl:output>
269
    </wsdl:operation>
270
    <wsdl:operation name="runCommandWithSSHKeyAuth">
271
      <soap:operation soapAction="" style="document"/>
272
      <wsdl:input name="runCommandWithSSHKeyAuth">
273
        <soap:body use="literal"/>
274
      </wsdl:input>
275
      <wsdl:output name="runCommandWithSSHKeyAuthResponse">
276
        <soap:body use="literal"/>
277
      </wsdl:output>
278
    </wsdl:operation>
279
    <wsdl:operation name="runJavaScript">
280
      <soap:operation soapAction="" style="document"/>
281
      <wsdl:input name="runJavaScript">
282
        <soap:body use="literal"/>
283
      </wsdl:input>
284
      <wsdl:output name="runJavaScriptResponse">
285
        <soap:body use="literal"/>
286
      </wsdl:output>
287
      <wsdl:fault name="XServicesFault">
288
        <soap:fault name="XServicesFault" use="literal"/>
289
      </wsdl:fault>
290
    </wsdl:operation>
291
    <wsdl:operation name="telnet">
292
      <soap:operation soapAction="" style="document"/>
293
      <wsdl:input name="telnet">
294
        <soap:body use="literal"/>
295
      </wsdl:input>
296
      <wsdl:output name="telnetResponse">
297
        <soap:body use="literal"/>
298
      </wsdl:output>
299
    </wsdl:operation>
300
    <wsdl:operation name="runCommandAsync">
301
      <soap:operation soapAction="" style="document"/>
302
      <wsdl:input name="runCommandAsync">
303
        <soap:body use="literal"/>
304
      </wsdl:input>
305
      <wsdl:output name="runCommandAsyncResponse">
306
        <soap:body use="literal"/>
307
      </wsdl:output>
308
    </wsdl:operation>
309
    <wsdl:operation name="runCommand">
310
      <soap:operation soapAction="" style="document"/>
311
      <wsdl:input name="runCommand">
312
        <soap:body use="literal"/>
313
      </wsdl:input>
314
      <wsdl:output name="runCommandResponse">
315
        <soap:body use="literal"/>
316
      </wsdl:output>
317
    </wsdl:operation>
318
    <wsdl:operation name="runCommandAsyncWithArgs">
319
      <soap:operation soapAction="" style="document"/>
320
      <wsdl:input name="runCommandAsyncWithArgs">
321
        <soap:body use="literal"/>
322
      </wsdl:input>
323
      <wsdl:output name="runCommandAsyncWithArgsResponse">
324
        <soap:body use="literal"/>
325
      </wsdl:output>
326
    </wsdl:operation>
327
    <wsdl:operation name="rExec">
328
      <soap:operation soapAction="" style="document"/>
329
      <wsdl:input name="rExec">
330
        <soap:body use="literal"/>
331
      </wsdl:input>
332
      <wsdl:output name="rExecResponse">
333
        <soap:body use="literal"/>
334
      </wsdl:output>
335
    </wsdl:operation>
336
    <wsdl:operation name="runCommandWithArgs">
337
      <soap:operation soapAction="" style="document"/>
338
      <wsdl:input name="runCommandWithArgs">
339
        <soap:body use="literal"/>
340
      </wsdl:input>
341
      <wsdl:output name="runCommandWithArgsResponse">
342
        <soap:body use="literal"/>
343
      </wsdl:output>
344
    </wsdl:operation>
345
  </wsdl:binding>
346
  <wsdl:service name="ExecuteService">
347
    <wsdl:port binding="tns:ExecuteServiceSoapBinding" name="ExecuteServiceImplPort">
348
      <soap:address location="http://localhost:8080/XServices/ExecuteService"/>
349
    </wsdl:port>
350
  </wsdl:service>
70 brianR 351
</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/ExecuteService</con:endpoint></con:endpoints><con:operation isOneWay="false" action="" name="rExec" bindingOperationName="rExec" type="Request-Response" outputName="rExecResponse" inputName="rExec" 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/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
64 brianR 352
   <soapenv:Header/>
353
   <soapenv:Body>
70 brianR 354
      <ws:rExec>
355
         <!--Optional:-->
356
         <host>
357
            <hostname>?</hostname>
358
            <port>?</port>
359
            <!--Optional:-->
360
            <user>?</user>
361
            <!--Optional:-->
362
            <password>?</password>
363
         </host>
364
         <!--Optional:-->
365
         <command>?</command>
366
         <timeout>?</timeout>
367
      </ws:rExec>
368
   </soapenv:Body>
163 brianR 369
</soapenv:Envelope>]]></con:request><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/rExec"/></con:call></con:operation><con:operation isOneWay="false" action="" name="runCommand" bindingOperationName="runCommand" type="Request-Response" outputName="runCommandResponse" inputName="runCommand" 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">&lt;xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
70 brianR 370
   <soapenv:Header/>
371
   <soapenv:Body>
372
      <ws:runCommand>
373
         <!--Optional:-->
163 brianR 374
         <executable>c:/windows/system32/cmd.exe</executable>
70 brianR 375
         <!--Optional:-->
163 brianR 376
         <argline>/C "echo Hallo Welt!"</argline>
377
         <timeout>15000</timeout>
70 brianR 378
      </ws:runCommand>
379
   </soapenv:Body>
163 brianR 380
</soapenv:Envelope>]]></con:request><con:credentials><con:authType>Global HTTP Settings</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runCommand"/><con:wsrmConfig version="1.2"/></con:call><con:call name="Request notepad"><con:settings><con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
70 brianR 381
   <soapenv:Header/>
382
   <soapenv:Body>
163 brianR 383
      <ws:runCommand>
384
         <!--Optional:-->
385
         <executable>c:/windows/system32/notepad.exe</executable>
386
         <!--Optional:-->
387
         <argline></argline>
388
         <timeout>15000</timeout>
389
      </ws:runCommand>
390
   </soapenv:Body>
177 brianR 391
</soapenv:Envelope>]]></con:request><con:credentials><con:selectedAuthProfile>Basic</con:selectedAuthProfile><con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes><con:authType>Global HTTP Settings</con:authType></con:credentials><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runCommand"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="runCommandAsync" bindingOperationName="runCommandAsync" type="Request-Response" outputName="runCommandAsyncResponse" inputName="runCommandAsync" 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/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
163 brianR 392
   <soapenv:Header/>
393
   <soapenv:Body>
70 brianR 394
      <ws:runCommandAsync>
395
         <!--Optional:-->
396
         <executable>?</executable>
397
         <!--Optional:-->
398
         <argline>?</argline>
399
      </ws:runCommandAsync>
400
   </soapenv:Body>
143 brianR 401
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runCommandAsync"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="runCommandAsyncWithArgs" bindingOperationName="runCommandAsyncWithArgs" type="Request-Response" outputName="runCommandAsyncWithArgsResponse" inputName="runCommandAsyncWithArgs" 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/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
70 brianR 402
   <soapenv:Header/>
403
   <soapenv:Body>
404
      <ws:runCommandAsyncWithArgs>
405
         <!--Optional:-->
406
         <executable>?</executable>
407
         <!--Zero or more repetitions:-->
408
         <arg>?</arg>
409
      </ws:runCommandAsyncWithArgs>
410
   </soapenv:Body>
411
</soapenv:Envelope>]]></con:request><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runCommandAsyncWithArgs"/></con:call></con:operation><con:operation isOneWay="false" action="" name="runCommandWithArgs" bindingOperationName="runCommandWithArgs" type="Request-Response" outputName="runCommandWithArgsResponse" inputName="runCommandWithArgs" 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/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
412
   <soapenv:Header/>
413
   <soapenv:Body>
414
      <ws:runCommandWithArgs>
415
         <!--Optional:-->
416
         <executable>?</executable>
417
         <!--Zero or more repetitions:-->
418
         <arg>?</arg>
419
         <timeout>?</timeout>
420
      </ws:runCommandWithArgs>
421
   </soapenv:Body>
422
</soapenv:Envelope>]]></con:request><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runCommandWithArgs"/></con:call></con:operation><con:operation isOneWay="false" action="" name="runCommandWithSSH" bindingOperationName="runCommandWithSSH" type="Request-Response" outputName="runCommandWithSSHResponse" inputName="runCommandWithSSH" 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/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
423
   <soapenv:Header/>
424
   <soapenv:Body>
425
      <ws:runCommandWithSSH>
426
         <!--Optional:-->
427
         <host>
428
            <hostname>?</hostname>
429
            <port>?</port>
430
            <!--Optional:-->
431
            <user>?</user>
432
            <!--Optional:-->
433
            <password>?</password>
434
         </host>
435
         <!--Optional:-->
436
         <command>?</command>
437
         <timeout>?</timeout>
438
      </ws:runCommandWithSSH>
439
   </soapenv:Body>
440
</soapenv:Envelope>]]></con:request><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runCommandWithSSH"/></con:call></con:operation><con:operation isOneWay="false" action="" name="runCommandWithSSHKeyAuth" bindingOperationName="runCommandWithSSHKeyAuth" type="Request-Response" outputName="runCommandWithSSHKeyAuthResponse" inputName="runCommandWithSSHKeyAuth" 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/ExecuteService</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:runCommandWithSSHKeyAuth>
444
         <!--Optional:-->
445
         <host>
446
            <hostname>?</hostname>
447
            <port>?</port>
448
            <!--Optional:-->
449
            <user>?</user>
450
            <!--Optional:-->
451
            <password>?</password>
452
         </host>
453
         <!--Optional:-->
454
         <keyfile>?</keyfile>
455
         <!--Optional:-->
456
         <command>?</command>
457
         <timeout>?</timeout>
458
      </ws:runCommandWithSSHKeyAuth>
459
   </soapenv:Body>
460
</soapenv:Envelope>]]></con:request><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runCommandWithSSHKeyAuth"/></con:call></con:operation><con:operation isOneWay="false" action="" name="runJavaScript" bindingOperationName="runJavaScript" type="Request-Response" outputName="runJavaScriptResponse" inputName="runJavaScript" 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">&lt;xml-fragment/></con:setting></con:settings><con:encoding>UTF-8</con:encoding><con:endpoint>http://localhost:8080/XServices/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
461
   <soapenv:Header/>
462
   <soapenv:Body>
463
      <ws:runJavaScript>
464
         <!--Optional:-->
465
         <script><![CDATA[
466
// Equivalent in effect to the Java declaration import java.io.*;
467
 
468
var bla = JavaImporter(Packages.java.util);
469
var blub = JavaImporter(Packages.java.lang);
470
with(blub) {
471
	System.out.println("Mein out: ");
472
}
473
 
474
]]]]>><![CDATA[</script>
475
      </ws:runJavaScript>
476
   </soapenv:Body>
477
</soapenv:Envelope>]]></con:request><con:jmsConfig JMSDeliveryMode="PERSISTENT"/><con:jmsPropertyConfig/><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/runJavaScript"/><con:wsrmConfig version="1.2"/></con:call></con:operation><con:operation isOneWay="false" action="" name="telnet" bindingOperationName="telnet" type="Request-Response" outputName="telnetResponse" inputName="telnet" 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/ExecuteService</con:endpoint><con:request><![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
478
   <soapenv:Header/>
479
   <soapenv:Body>
64 brianR 480
      <ws:telnet>
481
         <!--Optional:-->
482
         <host>
70 brianR 483
            <hostname>?</hostname>
484
            <port>?</port>
64 brianR 485
            <!--Optional:-->
70 brianR 486
            <user>?</user>
64 brianR 487
            <!--Optional:-->
70 brianR 488
            <password>?</password>
64 brianR 489
         </host>
70 brianR 490
         <!--Optional:-->
491
         <prompt>?</prompt>
492
         <!--Optional:-->
493
         <command>?</command>
494
         <!--Optional:-->
495
         <expect>?</expect>
496
         <timeout>?</timeout>
64 brianR 497
      </ws:telnet>
498
   </soapenv:Body>
177 brianR 499
</soapenv:Envelope>]]></con:request><con:wsaConfig mustUnderstand="NONE" version="200508" action="http://ws.xservices.brutex.net/ExecuteService/telnet"/></con:call></con:operation></con:interface><con:properties/><con:wssContainer/><con:oAuth2ProfileContainer/></con:soapui-project>