From: <rs...@us...> - 2003-03-19 20:15:03
|
Update of /cvsroot/pywebsvcs/zsi/doc In directory sc8-pr-cvs1:/tmp/cvs-serv19290 Modified Files: zsi.tex Log Message: Remove Brian as an author. Increase his acknowledgement (since we actually use his content :), and credit Zope per the agreement Rich made with him. Index: zsi.tex =================================================================== RCS file: /cvsroot/pywebsvcs/zsi/doc/zsi.tex,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- zsi.tex 19 Mar 2003 19:46:58 -0000 1.9 +++ zsi.tex 19 Mar 2003 20:14:58 -0000 1.10 @@ -1,17 +1,15 @@ % $Header$ +\def\ZSI{\module{ZSI}} \documentclass{manual} \title{ZSI: The Zolera Soap Infrastructure} -\author{Rich Salz\\ - Brian Lloyd\\ +\author{Rich Salz,\\ Christopher Blunck} \authoraddress{ \strong{DataPower Technology, \url{http://www.datapower.com}}\\ -\strong{Zope Corporation, \url{http://www.zope.com}}\\ E-mail: \email{rs...@da...\\ -br...@zo...\\ bl...@gs...} } -\date{\today} +\date{March 19, 2003}% edited date, not printed date \input{version} \begin{document} @@ -20,24 +18,23 @@ \centerline{\strong{ABSTRACT}} -\module{ZSI}, the Zolera SOAP Infrastructure, is a Python package that +\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, \module{ZSI} parses and generates SOAP messages, and +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}. -\module{ZSI} is ``transport neutral'', and provides only a simple +\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 \module{ZSI}. +responsibility of the application using \ZSI{}. As usage patterns emerge, and common application frameworks are more understood, this may change. -\module{ZSI} requires Python 2.0 or later and PyXML version 0.6.6 or later. +\ZSI{} requires Python 2.0 or later and PyXML version 0.6.6 or later. -The \module{ZSI} homepage is at -\url{http://pywebsvcs.sf.net/}. +The \ZSI{} homepage is at \url{http://pywebsvcs.sf.net/}. \vfill @@ -46,6 +43,9 @@ 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 @@ -80,11 +80,13 @@ Frederick 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}), -and Brian Lloyd for his numerous WSDL contributions. +(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{}. \tableofcontents{} -\def\ZSI{\module{ZSI}} \input{c01-intro} \input{c02-samples} |