summaryrefslogtreecommitdiff
path: root/doc/zsi.tex
blob: 71f0cca303c180e92185c855cef985973d7a3ab7 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
% $Header$
\def\ZSI{\module{ZSI}}
\documentclass{manual}
\title{ZSI: The Zolera Soap Infrastructure \\
       Developer's Guide}
\author{Rich Salz,\\
        Christopher Blunck}
\authoraddress{
\email{rsalz@datapower.com\\
blunck@python.org}
}
\date{March 19, 2003}% edited date, not printed date
\input{version}

% tell latex2html to load the verbatim package so we get \verbatiminput
\ifx\htmlonly\undefined\else\usepackage{verbatim}\fi
\usepackage{url}

\begin{document}

\maketitle


\centerline{\strong{COPYRIGHT}}

Copyright \copyright{} 2001, Zolera Systems, Inc.\\
All Rights Reserved.

Copyright \copyright{} 2002-2003, Rich Salz.\\
All Rights Reserved.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, and/or
sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, provided that the above copyright notice(s) and
this permission notice appear in all copies of the Software and that
both the above copyright notice(s) and this permission notice appear in
supporting documentation.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
OR PERFORMANCE OF THIS SOFTWARE.

Except as contained in this notice, the name of a copyright holder
shall not be used in advertising or otherwise to promote the sale, use
or other dealings in this Software without prior written authorization
of the copyright holder.

\vspace{1.5cm}

\centerline{\strong{Acknowledgments}}

We are grateful to the members of the \code{soapbuilders}
mailing list (see \url{http://groups.yahoo.com/soapbuilders}),
Fredrik Lundh for his \code{soaplib} package (see
\url{http://www.secretlabs.com/downloads/index.htm\#soap}),
Cayce Ullman and Brian Matthews for their \code{SOAP.py} package
(see \url{http://sourceforge.net/projects/pywebsvcs}).

We are particularly grateful to Brian Lloyd and the Zope Corporation
(\url{http://www.zope.com}) for letting us incorporate his ZOPE
WebServices package and documentation into \ZSI{}.
\begin{abstract}
\noindent
\ZSI{}, the Zolera SOAP Infrastructure, is a Python package that
provides an implementation of SOAP messaging, as described in
\citetitle[http://www.w3.org/TR/soap]{The SOAP 1.1 Specification}.
In particular, \ZSI{} parses and generates SOAP messages, and
converts between native Python datatypes and SOAP syntax.
It can also be used to build applications using
\citetitle[http://www.w3.org/TR/SOAP-attachments]{SOAP Messages with
Attachments}.
\ZSI{} is ``transport neutral'', and provides only a simple
I/O and dispatch framework; a more complete solution is the
responsibility of the application using \ZSI{}.
As usage patterns emerge, and common application frameworks are
more understood, this may change.

\ZSI{} requires Python 2.3 or later and PyXML version 0.8.3 or later.

The \ZSI{} homepage is at \url{http://pywebsvcs.sf.net/}.

\end{abstract}

\tableofcontents{}
\input{c01-intro}
\input{c02-samples}
\input{c03-except}
\input{c04-utils}
\input{c05-parse}
\input{c06-tc}
\input{c07-writer}
\input{c08-fault}
\input{c09-resolve}
\input{c10-dispatch}
\input{bibliography}
\appendix
\input{app-dispatch}
\input{app-dispatch-dict}
\input{app-lowlevel}
\input{app-pickler}
\end{document}