-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathEXAMPLES.html
90 lines (80 loc) · 1.84 KB
/
EXAMPLES.html
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
<html>
<head>
<title>Examples</title>
</head>
<body>
<h1>Examples</h1>
The examples are located in src/samples. They are build via:
<pre> nant -find all
</pre>
Run either server example and then either client against it.
<h2>Example Descriptions</h2>
<table border="1" cellspacing="5">
<tr><th>Example</th><th>Shows</th><th>Notes</th></tr>
<tr>
<td VALIGN=TOP>SampleServer</td>
<td VALIGN=TOP>
Basic no frills server<br>
Logging Delegate
</td>
<td VALIGN=TOP>
<a href="classes/SampleServer.html">Documentation</a></td>
</tr>
<tr>
<td VALIGN=TOP>SampleServerWithExpose.</td>
<td VALIGN=TOP>
Basic no frills server<br>
Use of XmlRpcExposed attribute.
</td>
<td VALIGN=TOP>
<a href="classes/SampleServerWithExpose.html">Documentation</a></td>
</tr>
<tr>
<td VALIGN=TOP>GoogleClient</td>
<td VALIGN=TOP>
Use of Goggles XML-RPC API</td>
<td VALIGN=TOP>
<a href="classes/GoogleClient.html">Documentation</a></td>
</tr>
<tr>
<td VALIGN=TOP>SampleClient</td>
<td VALIGN=TOP>
Basic no frills client<br>
Logging<br>
Fault Messages<br>
Invoke Vs. Send
</td>
<td VALIGN=TOP>
<a href="classes/SampleClient.html">Documentation</a></td>
</tr>
<tr>
<td VALIGN=TOP>ProxyClient</td>
<td VALIGN=TOP>
Creates a local proxy object for the remote object.
</td>
<td VALIGN=TOP>
<a href="classes/ProxyClient.html">Documentation</a></td>
</tr>
<tr>
<td VALIGN=TOP>SystemObjectClient</td>
<td VALIGN=TOP>
Calling the system object<br>
Boxcarring
</td>
<td VALIGN=TOP>
<a href="classes/SystemObjectClient.html">Documentation</a></td>
</tr>
<tr>
<td VALIGN=TOP>RequestXmlTest</td>
<td VALIGN=TOP>
Parsing from a file<br>
testing a requests format
</td>
<td VALIGN=TOP>
<a href="classes/RequestXmlTest.html">Documentation</a><p>Run with an XML request file as
an argument.
</td>
</tr>
</table>
</body>
</html>