summaryrefslogtreecommitdiffstats
path: root/doc/csoap.txt
blob: f454311058733e6111be034ca50f34490a4df3fd (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
/** @page csoap_page cSOAP

@section csoap_sec cSOAP

cSOAP is a C-based implementation of the Simple Object Access Protocol
(SOAP) version 1.1.

SOAP is a lightweight protocol for exchange of information in a
decentralized, distributed environment. It is an XML based protocol
that consists of three parts:
- an envelope that defines a framework for describing what is in a
  message and how to process it,
- a set of encoding rules for expressing instances of
  application-defined datatypes,
- and a convention for representing remote procedure calls and
  responses.
SOAP can potentially be used in combination with a variety of other
protocols; however, the only bindings defined in library are HTTP
and UDP.

@section soap_howto_sec HOWTOs and coding examples

- @subpage csoap_client_page
- @subpage csoap_server_page
- @subpage csoap_mime_page
- @subpage csoap_xmlsec_page

@author	@verbinclude AUTHORS

@version 1.2

@see http://www.w3.org/TR/soap/
@see http://www.w3.org/TR/2000/NOTE-SOAP-20000508/

*/