File: index.html

package info (click to toggle)
lua-soap 1.0b-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 112 kB
  • ctags: 38
  • sloc: sh: 66; makefile: 34
file content (158 lines) | stat: -rw-r--r-- 4,934 bytes parent folder | download | duplicates (2)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org">
<title>LuaSOAP: SOAP interface to the Lua programming
language</title>
<style type="text/css">
ul { list-style-type: disc };
</style>
</head>
<body bgcolor="#FFFFFF">
<hr>
<center>
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td align="center"><a href=
"http://www.keplerproject.org/luasoap"><img border="0" alt=
"LuaSOAP logo" src="luasoap.png"></a> </td>
</tr>

<tr>
<td align="center"><big><b>LuaSOAP</b></big> </td>
</tr>

<tr>
<td align="center" valign="top">SOAP interface to the <a href=
"http://www.lua.org">Lua</a> programming language</td>
</tr>
</table>
</center>

<center><small>
<a href="#over">overview</a> &middot;
<a href="#version">current version</a> &middot;
<a href="#download">download</a> &middot;
<a href="#new">news</a> &middot;
<a href="#installation">installation</a> &middot;
<a href="manual.html">manual</a> &middot;
<a href="license.html">license</a> &middot;
<a href="#credits">credits</a> &middot;
<a href="#contact">contact us</a>
</small></center>

<hr>
<h2>Contents</h2>

<ul>
  <li><a href="#over">Overview</a></li>
  <li><a href="#version">Current Version</a></li>
  <li><a href="#download">Download</a></li>
  <li><a href="#new">What's new</a></li>
  <li><a href="#installation">Installation</a></li>
  <li><a href="manual.html">User's manual</a> 
    <ul>
      <li><a href="manual.html#introduction">Introduction</a></li>
      <li><a href="manual.html#soap_elements">SOAP elements</a></li>
      <li><a href="manual.html#basic">Basic support</a> 
        <ul>
          <li><a href="manual.html#encode">encode</a></li>
          <li><a href="manual.html#decode">decode</a></li>
        </ul>
      </li>
      <li><a href="manual.html#client">Client side</a> 
        <ul>
          <li><a href="manual.html#call">call</a></li>
        </ul>
      </li>
      <li><a href="manual.html#examples">Examples</a></li>
      <li><a href="manual.html#related_docs">Related documentation</a></li>
    </ul>
  </li>
  <li><a href="#credits">Credits</a></li>
  <li><a href="#contact">Contact us</a></li>
</ul>


<a name="over"></a>
<h2>Overview</h2>

<p>LuaSOAP is a library to ease the use of <a href=
"http://">SOAP</a>. LuaSOAP provides a very simple API that convert
Lua tables to and from XML documents.</p>

<p>LuaSOAP is free software and uses the same <a href=
"license.html">license</a> as Lua 5.0.</p>

<h2>Current version</h2>

<p>Current version is 1.0 beta. It was developed for Lua 5.0 based
on <a href="http://www.keplerproject.org/luaexpat">LuaExpat</a>.</p>

<a name="download"></a>
<h2>Download</h2>

LuaSOAP can be downloaded in source code from its
<a href="http://luaforge.net/project/showfiles.php?group_id=15">LuaForge</a> page.

<a name="new"></a>
<h2>What's new</h2>

<ul>
<li>[2/Dec/2004] Version 1.0 beta released</li>
<li>[4/Apr/2004] Version 1.0 alpha released</li>
</ul>

<p>Version 1.0 beta follows the
<a href="http://www.keplerproject.org/compat">package proposal</a>
for Lua 5.1 (see section <a href="#installation">Installation</a>
for more details).</p>

<a name="installation"></a> 
<h2>Installation</h2>

<p>LuaSOAP is a Lua library composed by two files:
<code>soap.lua</code> and <code>http.lua</code>. Both must be
copied to a directory named <code>soap</code> created somewhere in
your <code>LUA_PATH</code>.</p>

<p>LuaSOAP follows the <a href=
"http://www.keplerproject.org/compat">package proposal</a> for Lua
5.1, therefore this package should be "installed". In other words,
if you are using Lua 5.0, the files <tt>compat-5.1.c</tt> and
<tt>compat-5.1.h</tt> must be used in the compilation and the file
<tt>compat-5.1.lua</tt> must be installed in the <tt>LUA_PATH</tt>.
If you are using Lua 5.1, nothing should be done.</p>

<a name="credits"></a>
<h2>Credits</h2>

<p>LuaSOAP was designed by Roberto Ierusalimschy, Andr&eacute;
Carregal and Tom&aacute;s Guisasola as part of <a href=
"http://www.keplerproject.org">The Kepler Project</a> which holds
its copyright. It was implemented by Tom&aacute;s Guisasola.</p>

<p>LuaSOAP development was sponsored by <a href=
"http://www.fabricadigital.com.br">F&aacute;brica Digital</a> and
FINEP.</p>

<a name="contact"></a> 
<h2>Contact us</h2>

<p>For more information please <a href=
"mailto:info-NO-SPAM-THANKS@keplerproject.org">contact us</a>.
Comments are welcome!</p>

<center><small><a href="#over">overview</a> &middot; <a href=
"#version">current version</a> &middot; <a href=
"#download">download</a> &middot; <a href="#new">news</a> &middot;
<a href="#installation">installation</a> &middot; <a href=
"manual.html">manual</a> &middot; <a href=
"license.html">license</a> &middot; <a href="#credits">credits</a>
&middot; <a href="#contact">contact us</a></small></center>

<hr>
<small>$Id: index.html,v 1.10 2004/12/02 15:13:02 tomas Exp $</small>
</body>
</html>