blob: 7bb4f699c8cd85e1c9bb18d705db2381fa97d821 (
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
|
RPC Literal WSDL Style
======================
Interface
---------
WSDL
----
SOAP
----
POST /HelloWorldService/HelloWorld-rpclit HTTP/1.1
Content-Type: text/xml; charset=UTF-8
SOAPAction: ""
User-Agent: Axis2
Host: localhost:8088
Content-Length: 364
<?xml version='1.0' encoding='UTF-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<parameters xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ns2="http://ws.binding.sca.tuscany.apache.org/"
xsi:type="xs:string">Fred</parameters>
</soapenv:Body>
</soapenv:Envelope>
|