-
Notifications
You must be signed in to change notification settings - Fork 1
/
Invoke.wsdl
57 lines (54 loc) · 2.7 KB
/
Invoke.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
52
53
54
55
56
57
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.example.org/StartProcess/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="StartProcess" targetNamespace="http://www.example.org/StartProcess/">
<wsdl:types>
<xsd:schema targetNamespace="http://www.example.org/StartProcess/">
<xsd:import namespace="http://www.example.org/Context" schemaLocation="http://galaxy:50000/bpm/demosapcom/team1/process/pr/pm/Start?location=META-INF/wsdl/src/wsdl/Context.xsd&wsdl"/>
<xsd:element name="StartProcessResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="SOId" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="StartProcessRequestMessage">
<xsd:complexType>
<xsd:sequence>
<xsd:element xmlns:ns1="http://www.example.org/Context" maxOccurs="unbounded" name="Item" type="ns1:ItemType"/>
<xsd:element name="CustomerID" type="xsd:string"/>
<xsd:element name="RequestDate" type="xsd:string"/>
<xsd:element name="Level1" type="xsd:boolean"/>
<xsd:element name="SOId" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</wsdl:types>
<wsdl:message name="StartProcessResponse">
<wsdl:part element="tns:StartProcessResponse" name="parameters"/>
</wsdl:message>
<wsdl:message name="StartProcessRequest">
<wsdl:part element="tns:StartProcessRequestMessage" name="parameters"/>
</wsdl:message>
<wsdl:portType name="StartTeam1Process">
<wsdl:operation name="StartProcess">
<wsdl:input message="tns:StartProcessRequest"/>
<wsdl:output message="tns:StartProcessResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="StartTeam1ProcessBinding" type="tns:StartTeam1Process">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="StartProcess">
<soap:operation soapAction=""/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="StartTeam1ProcessService">
<wsdl:port binding="tns:StartTeam1ProcessBinding" name="StartTeam1ProcessPort">
<soap:address location="http://galaxy:50000/bpm/demosapcom/team1/process/pr/pm/Start"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>