File: README

package info (click to toggle)
xmlrpc-epi 0.54.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,588 kB
  • sloc: sh: 12,254; ansic: 5,747; xml: 1,387; makefile: 166; php: 17
file content (58 lines) | stat: -rw-r--r-- 2,443 bytes parent folder | download | duplicates (5)
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
XMLRPC-EPI

This library is intended for use by those trying to implement XMLRPC 
support (http://www.xmlrpc.org) in their C programs.  It was written 
because the author could not find any fast, complete implementations of 
XMLRPC, most of them thus far having been written in interpreted 
languages.  It incorporates a few ideas from a previous C effort, 
Expat-Ensor.  See http://xml.ensor.org for more info on that project.  

It has been demonstrated fully compliant with the XMLRPC spec,
having passed the test suite at http://validator.xmlrpc.com.

NEW! Shared libexpat support

[unix systems]
With the autotools update the default option to build against a shared
libexpat has been added. The system will search /usr/include/ for expat/h
and /usr/lib/ for libexpat.* if you have these files in another location
please override LDFLAGS and CFLAGS with -L and -I options as approprate

If your distro does not come with a libexpat, please get the latest 
version from http://expat.sourceforge.net

[windows systems]
Please download and install libexpat from http://expat.sourceforge.net, a
windows setup.exe is avaiable for download and the visual studio project files
are set to look in the location that the expat installer uses :-
C:\Program Files\Expat 2.0.1\

NEW! EXPERIMENTAL support for SOAP.

Experimental support for SOAP is now included. Both XMLRPC and SOAP
can be read/written by the library, and the application need not worry 
about it, IE, there is a single API that works for both, and the choice
is made at serialization time. When reading, the XML vocabulary will be
automatically detected.  For an example of using SOAP, see sample.c in 
the samples directory.  

Various iterations of this code have been/are running at 
Epinions.com and are sufficiently fast for the high traffic volume this 
site encounters, with several xmlrpc type requests generated for each user 
http request.  No specific speed claims are made.  Your mileage may vary.

If you have robodoc installed on your system, API Documentation can be 
generated from source like this:
 cd src
 make html
 lynx xmlrpc_mi.html

Sample programs are in ./sample.  See ./sample --help or the source files 
for more info on these.  

It is the author's hope that this code will be found useful by someone, 
and would like to hear about how and where it is being used, or 
suggestions for improvement.  

Signed
Dan Libby <dan@libby.com>, Epinions.com, Inc.