summaryrefslogtreecommitdiffstats
path: root/doc/csoap.txt
diff options
context:
space:
mode:
authorGravatar m0gg2007-11-04 06:57:31 +0000
committerGravatar m0gg2007-11-04 06:57:31 +0000
commit294374084a574ec74dfad51db494d102d4c3db27 (patch)
treec69995ed52234b61f4558967037d77f6bc480927 /doc/csoap.txt
parent8a6946b18003fae6400a137389f0cb13d0ac4bd6 (diff)
downloadcsoap-294374084a574ec74dfad51db494d102d4c3db27.tar.gz
csoap-294374084a574ec74dfad51db494d102d4c3db27.tar.bz2
Moved project documentation from headers to doc/
Diffstat (limited to 'doc/csoap.txt')
-rw-r--r--doc/csoap.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/csoap.txt b/doc/csoap.txt
new file mode 100644
index 0000000..f454311
--- /dev/null
+++ b/doc/csoap.txt
@@ -0,0 +1,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/
+
+*/