diff options
Diffstat (limited to 'modules/xmlrpc/doc/introduction.html')
-rw-r--r-- | modules/xmlrpc/doc/introduction.html | 280 |
1 files changed, 280 insertions, 0 deletions
diff --git a/modules/xmlrpc/doc/introduction.html b/modules/xmlrpc/doc/introduction.html new file mode 100644 index 00000000..09b314e4 --- /dev/null +++ b/modules/xmlrpc/doc/introduction.html @@ -0,0 +1,280 @@ +<HTML +><HEAD +><TITLE +>Introduction</TITLE +><META +NAME="GENERATOR" +CONTENT="Modular DocBook HTML Stylesheet Version 1.77+"><LINK +REV="MADE" +HREF="edd@usefulinc.com"><LINK +REL="HOME" +TITLE="XML-RPC for PHP" +HREF="index.html"><LINK +REL="PREVIOUS" +TITLE="XML-RPC for PHP" +HREF="index.html"><LINK +REL="NEXT" +TITLE="Files in the distribution" +HREF="manifest.html"></HEAD +><BODY +CLASS="CHAPTER" +BGCOLOR="#FFFFFF" +TEXT="#000000" +LINK="#0000FF" +VLINK="#840084" +ALINK="#0000FF" +><DIV +CLASS="NAVHEADER" +><TABLE +SUMMARY="Header navigation table" +WIDTH="100%" +BORDER="0" +CELLPADDING="0" +CELLSPACING="0" +><TR +><TH +COLSPAN="3" +ALIGN="center" +>XML-RPC for PHP: version 1.1</TH +></TR +><TR +><TD +WIDTH="10%" +ALIGN="left" +VALIGN="bottom" +><A +HREF="index.html" +ACCESSKEY="P" +>Prev</A +></TD +><TD +WIDTH="80%" +ALIGN="center" +VALIGN="bottom" +></TD +><TD +WIDTH="10%" +ALIGN="right" +VALIGN="bottom" +><A +HREF="manifest.html" +ACCESSKEY="N" +>Next</A +></TD +></TR +></TABLE +><HR +ALIGN="LEFT" +WIDTH="100%"></DIV +><DIV +CLASS="CHAPTER" +><H1 +><A +NAME="INTRODUCTION" +></A +>Chapter 1. Introduction</H1 +><P +>XML-RPC is a format devised by <A +HREF="http://www.userland.com/" +TARGET="_top" +>Userland Software</A +> for + achieving remote procedure call via XML. XML-RPC has its own web + site, <A +HREF="http://www.xmlrpc.com/" +TARGET="_top" +>www.XmlRpc.com</A +></P +><P +>The most common implementations of XML-RPC available at the + moment use HTTP as the transport. A list of implementations for + other languages such as Perl and Python can be found on the + <A +HREF="http://www.xmlrpc.com/" +TARGET="_top" +>www.xmlrpc.com</A +>.</P +><P +>This collection of PHP classes provides a framework for + writing XML-RPC clients and servers in PHP.</P +><DIV +CLASS="WARNING" +><P +></P +><TABLE +CLASS="WARNING" +BORDER="1" +WIDTH="100%" +><TR +><TD +ALIGN="CENTER" +><B +>Warning</B +></TD +></TR +><TR +><TD +ALIGN="LEFT" +><P +>The <SPAN +CLASS="emphasis" +><I +CLASS="EMPHASIS" +>server code</I +></SPAN +> works only with versions of PHP3 + >= 3.0.12. The code is also known to work with PHP4. + </P +><P +>If you wish to use SSL to communicate with remote servers, + you need the "curl" extension compiled into your PHP + installation, this is available in PHP 4.0.2 and greater, + although 4.0.6 has a bug preventing SSL working.</P +></TD +></TR +></TABLE +></DIV +><DIV +CLASS="SECT1" +><H1 +CLASS="SECT1" +><A +NAME="AEN43" +></A +>Acknowledgements</H1 +><P +>Jim Winstead <TT +CLASS="EMAIL" +><<A +HREF="mailto:jimw@php.net" +>jimw@php.net</A +>></TT +></P +><P +>Peter Kocks <TT +CLASS="EMAIL" +><<A +HREF="mailto:peter.kocks@baygate.com" +>peter.kocks@baygate.com</A +>></TT +></P +><P +>Nicolay Mausz <TT +CLASS="EMAIL" +><<A +HREF="mailto:mausz@flying-dog.com" +>mausz@flying-dog.com</A +>></TT +></P +><P +>Ben Margolin + <TT +CLASS="EMAIL" +><<A +HREF="mailto:ben@wendy.auctionwatch.com" +>ben@wendy.auctionwatch.com</A +>></TT +></P +><P +>Dan Libby <TT +CLASS="EMAIL" +><<A +HREF="mailto:dan@libby.com" +>dan@libby.com</A +>></TT +></P +><P +>Gaetano Giunta <TT +CLASS="EMAIL" +><<A +HREF="mailto:g.giunta@libero.it" +>g.giunta@libero.it</A +>></TT +></P +><P +>Idan Sofer <TT +CLASS="EMAIL" +><<A +HREF="mailto:i_sofer@yahoo.com" +>i_sofer@yahoo.com</A +>></TT +></P +><P +>Giancarlo Pinerolo <TT +CLASS="EMAIL" +><<A +HREF="mailto:ping@alt.it" +>ping@alt.it</A +>></TT +></P +><P +>Justin Miller <TT +CLASS="EMAIL" +><<A +HREF="mailto:justin@voxel.net" +>justin@voxel.net</A +>></TT +></P +></DIV +></DIV +><DIV +CLASS="NAVFOOTER" +><HR +ALIGN="LEFT" +WIDTH="100%"><TABLE +SUMMARY="Footer navigation table" +WIDTH="100%" +BORDER="0" +CELLPADDING="0" +CELLSPACING="0" +><TR +><TD +WIDTH="33%" +ALIGN="left" +VALIGN="top" +><A +HREF="index.html" +ACCESSKEY="P" +>Prev</A +></TD +><TD +WIDTH="34%" +ALIGN="center" +VALIGN="top" +><A +HREF="index.html" +ACCESSKEY="H" +>Home</A +></TD +><TD +WIDTH="33%" +ALIGN="right" +VALIGN="top" +><A +HREF="manifest.html" +ACCESSKEY="N" +>Next</A +></TD +></TR +><TR +><TD +WIDTH="33%" +ALIGN="left" +VALIGN="top" +>XML-RPC for PHP</TD +><TD +WIDTH="34%" +ALIGN="center" +VALIGN="top" +> </TD +><TD +WIDTH="33%" +ALIGN="right" +VALIGN="top" +>Files in the distribution</TD +></TR +></TABLE +></DIV +></BODY +></HTML +>
\ No newline at end of file |