blob: 2f4c5ad5eb33a2caf852524d74c9ce0737ffc616 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:sdncadaptersc="http://domain2.att.com/workflow/sdnc/adapter/schema/v1"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://domain2.att.com/workflow/sdnc/adapter/wsdl/v1"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://domain2.att.com/workflow/sdnc/adapter/wsdl/v1">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="http://domain2.att.com/workflow/sdnc/adapter/wsdl/v1">
<import namespace="http://domain2.att.com/workflow/sdnc/adapter/schema/v1"
schemaLocation="SDNCAdapterSchema.xsd" />
</schema>
</types>
<message name="SDNCAdapterRequest">
<part element="sdncadaptersc:SDNCAdapterRequest" name="SDNCAdapterRequest">
</part>
</message>
<message name="SDNCAdapterResponse">
<part element="sdncadaptersc:SDNCAdapterResponse" name="SDNCAdapterResponse">
</part>
</message>
<portType name="SDNCAdapterPortType">
<operation name="SDNCAdapter">
<input message="tns:SDNCAdapterRequest" name="SDNCAdapterRequest">
</input>
<output message="tns:SDNCAdapterResponse" name="SDNCAdapterResponse">
</output>
</operation>
</portType>
<binding name="SDNCAdapterSoapHttpBinding" type="tns:SDNCAdapterPortType">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="SDNCAdapter">
<soap:operation soapAction="" style="document" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<service name="SDNCAdapterService">
<port binding="tns:SDNCAdapterSoapHttpBinding" name="SDNCAdapterSoapHttpPort">
<soap:address location="SDNCAdapterService" />
</port>
</service>
</definitions>
|