-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcommand-example.wsdl
51 lines (44 loc) · 2.09 KB
/
command-example.wsdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://consulting.redhat.com/wsdl/command-example-service.wsdl"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
name="CommandExample"
targetNamespace="http://consulting.redhat.com/wsdl/command-example-service.wsdl">
<wsdl:documentation><![CDATA[
This describes a service that has one operation with no input and no output. This
might be useful for triggering a process, for example.
]]></wsdl:documentation>
<wsdl:types>
<xs:schema targetNamespace="http://consulting.redhat.com/wsdl/command-example-service.wsdl">
<xs:element name="executeNow">
<xs:complexType>
<xs:sequence/>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
<wsdl:message name="ExecuteNowRequest">
<wsdl:part name="in" element="tns:executeNow"/>
</wsdl:message>
<wsdl:portType name="CommandExample">
<wsdl:operation name="executeNow">
<wsdl:input message="tns:ExecuteNowRequest"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="CommandExampleSoapBinding" type="tns:CommandExample">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="executeNow">
<soap:operation style="document"
soapAction="http://consulting.redhat.com/wsdl/command-example-service.wsdl"/>
<wsdl:input>
<soap:body parts="in" use="literal"/>
</wsdl:input>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="CommandExampleService">
<wsdl:port binding="tns:CommandExampleSoapBinding" name="CommandExamplePort">
<soap:address location="http://consulting.redhat.com/soap/commandExample"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>