Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

root/tags/RELEASE_1_3_7/RELEASE_en.html

Revision 315, 19.6 kB (checked in by nakahiro, 7 years ago)

For 1.3.7

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to author date id revision
Line 
1 <?xml version="1.0"?>
2 <!DOCTYPE html
3     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
4     "DTD/xhtml1-strict.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
6 <head>
7 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
8 <meta http-equiv="Content-Style-Type" content="text/css" />
9 <link rev="MADE" href="mailto:nakahiro@sarion.co.jp" />
10 <link rel="StyleSheet" href="rubyStyle.css" type="text/css" media="screen" />
11 <title>Release Notes - SOAP4R</title>
12 </head>
13 <body>
14
15 <div class="header">
16 <h1>
17 Release Notes - SOAP4R
18 </h1>
19
20 <p class="status">
21 Last modified: August 24, 2001<br />
22 Created: July 17, 2000
23 </p>
24 </div>
25
26 <hr />
27
28 <div class="main">
29 <h2>0. In this document...</h2>
30
31 <p>
32 This is Release Notes of SOAP4R.
33 </p>
34
35 <p>
36 Target SOAP4R version: SOAP4R/1.3.7
37 </p>
38
39 <ol>
40 <li><a href="#changes">Changes</a></li>
41 <li><a href="#install">Install</a></li>
42 <li><a href="#uninstall">Uninstall</a></li>
43 <li><a href="#whats">What is SOAP4R?</a></li>
44 <li><a href="#dependencies">Dependencies</a></li>
45 <li><a href="#restrictions">Restrictions</a></li>
46 <li><a href="#history">History</a></li>
47 <li><a href="#author">Author</a></li>
48 <li><a href="#copyright">Copyright</a></li>
49 </ol>
50
51 <h2 id="changes" name="changes">1. Changes</h2>
52
53 <p>
54 Feedback from
55 <a href="http://www.whitemesa.com/interop.htm">SOAPBuilders Interoperability Lab &quot;Round 2&quot;</a>
56 and Michael Neumann.  Thanks!
57 </p>
58
59 <ul>
60 <li>Datatypes:
61 <ul>
62 <li>All datatypes try to keep nil correctly.</li>
63 <li>XSDInt/Integer/Long: to_i -&gt; Integer() to detect format error.</li>
64 <li>XSDDateTime, XSDDate, XSDTime: Add trailing 'Z' to indicate UTC.</li>
65 <li>SOAPStruct: Accept untyped struct.</li>
66 <li>Map(Hash): Let &lt;item&gt; untyped.</li>
67 <li>Apache allows only 'item' in Map type.</li>
68 </ul></li>
69
70 <li>Stream handler:
71 <ul>
72 <li>Removed MPOST support.</li>
73 <li>ECONNRESET was not caught.  Fixed.</li>
74 <li>Added timeout support.</li>
75 </ul></li>
76
77 <li>Others:
78 <ul>
79 <li>Changed using URI library: URb -&gt; URI; following its name change.</li>
80 <li>Added NQXML/1.1.0 support.  A XMLDecl now recognized as a XMLDecl, not a PI.</li>
81 </ul></li>
82 </ul>
83
84 <h2 id="install" name="install">2. Install</h2>
85
86 <p>
87 Simply, get the archived file and extract it.  Then, try;
88 </p>
89
90 <pre>
91 &quot;ruby install.rb&quot;
92 </pre>
93
94 <p>
95 Necessary files will be installed to suitable directory.
96 </p>
97
98 <p>
99 Files in lib/soap directory are SOAP4R library program itself.
100 Followings are redistributed files in redist/.
101 </p>
102
103 <dl>
104 <dt class="path">date3.rb</dt>
105 <dd>by Funaba-san (<a href="http://www.kt.rim.or.jp/~tadf/ruby-en.html">http://www.kt.rim.or.jp/~tadf/ruby-en.html</a>)</dd>
106
107 <dt class="path">parsedate3.rb</dt>
108 <dd>by Funaba-san (<a href="http://www.kt.rim.or.jp/~tadf/ruby-en.html">http://www.kt.rim.or.jp/~tadf/ruby-en.html</a>)</dd>
109
110 <dt class="path">GServer</dt>
111 <dd>by John W. Small</dd>
112
113 <dt class="path">httpserver.rb</dt>
114 <dd>by Michael Neumann: httpserver.rb in <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=XML-RPC">[RAA:XML-RPC]</a></dd>
115
116 <dt class="path">application.rb</dt>
117 <dd>by NaHi: <a href="http://www.jin.gr.jp/~nahi/Ruby/Application/application.rb">http://www.jin.gr.jp/~nahi/Ruby/Application/application.rb</a></dd>
118
119 <dt class="path">http-access2</dt>
120 <dd>by NaHi: <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=http-access2">[RAA:http-access2]</a></dd>
121
122 </dl>
123
124 <p>
125 Files in archive:
126 </p>
127
128 <dl>
129 <dt class="path">lib/soap/</dt>
130 <dd>SOAP4R library program.</dd>
131
132 <dt class="path">test/</dt>
133 <dd>Clients/Server for
134 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
135 Because of no documents or &quot;How-to&quot; things there,
136 test/interopR2/server.cgi is a must RPC Server side sample to check.
137 test/interopR2/client*.rb is a must RPC Client side sample to check.
138 test/interopR2/base.rb includes common definitions for client/server side.
139 </dd>
140
141 <dt class="path">sample/</dt>
142 <dd>Sample program using SOAP4R.</dd>
143
144 <dt class="path">sample/apacheClient.rb</dt>
145 <dd>SOAP-RPC client sample.
146 It connects with demonstration server programs stockquote and addressbook in Apache-SOAP.
147 You have to install Apache-SOAP and deploy demostration programs.<br />
148 To execute;
149 <pre class="path">
150 ./apacheClient.rb http://localhsot:2020/xml-soap/rpcrouter/rpcrouter.jsp
151 </pre>
152 </dd>
153
154 <dt class="path">sample/RAA/*</dt>
155 <dd>SOAP-RPC client samples.
156 <ul>
157 <li>soap4r.rb, soap4rApp.rb: Ruby program using SOAP4R</li>
158 <li>xmlrpc4r.rb: Ruby program using xmlrpc4r</li>
159 <li>pocketSOAP.js: JScript program using pocketSOAP</li>
160 <li>SOAP::Lite.pl: Perl program using SOAP::Lite for Perl</li>
161 </ul>
162 There programs connect with testing RAA server on www.ruby-lang.org.
163 Since the server is under testing phase so stable operation is not expected.</dd>
164
165 <dt class="path">redist/</dt>
166 <dd>Redistributed programs which SOAP4R is using.
167 I would appriciate to authors of these programs.
168 </dd>
169
170 <dt class="path">redist/archive/</dt>
171 <dd>Archives.
172 Follow the term of each archive to use these programs.
173 </dd>
174 </dl>
175
176 <h2 id="uninstall" name="uninstall">3. Uninstall</h2>
177
178 <p>
179 Delete created files at installation.
180 </p>
181
182 <pre>
183 ruby -rrbconfig -e 'include Config; puts CONFIG[&quot;sitedir&quot;] + &quot;/&quot; + CONFIG[&quot;MAJOR&quot;] + &quot;.&quot; + CONFIG[&quot;MINOR&quot;]'
184 </pre>
185
186 <p>
187 should dump the installation root directory.
188 Here, check &quot;soap&quot; directory and filename of files in &quot;redist&quot; directory.
189 </p>
190
191 <h2 id="whats" name="whats">4. What is SOAP4R?</h2>
192
193 <p>
194 'SOAP4R' is a Ruby library program to handle
195 <a href="http://www.w3.org/TR/SOAP/">Simple Object Access Protocol (SOAP) 1.1 (W3C Note)</a>.
196 </p>
197
198 <p>
199 Comments, information such as interoperability between SOAP4R and another implementation are welcomed.
200 Feel free sending mail to
201 <a href="mailto:nakahiro@sarion.co.jp" class="path">nakahiro@sarion.co.jp</a>.
202 </p>
203
204 <h2 id="dependencies" name="dependencies">5. Dependencies</h2>
205
206 <p>
207 SOAP4R depends on below programs:
208 </p>
209
210 <ul>
211 <li>SOAP4R is a
212 <a href="http://www.ruby-lang.org">Ruby</a>
213 library program.
214 You have to install Ruby itself.
215 Ruby/1.6 series are required.
216 It does not works on 1.4 series because of class variable.</li>
217
218 <li>SOAP4R delegates XML related processing to
219 <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=NQXML">NQXML module</a>.
220 You have to install NQXML module.</li>
221
222 <li>To play with SOAP-RPC client sample, you have to install
223 <a href="http://xml.apache.org/soap/">Apache SOAP</a>.
224 </li>
225 </ul>
226
227 <h2 id="restrictions" name="restrictions">6. Restrictions</h2>
228
229 <p>
230 The following features of the
231 <a href="http://www.w3.org/TR/SOAP/">SOAP 1.1 (W3C Note)</a>
232 spec are <strong>NOT</strong> currently supported:
233 </p>
234
235 <ul>
236 <li style="margin-top: 2ex;">SOAP Envelope
237 <ul>
238 <li>SOAP actor attribute</li>
239 <li>SOAP mustUnderstand attribute</li>
240 <li>SOAP Fault Codes</li>
241 </ul></li>
242 <li style="margin-top: 2ex;">SOAP Encoding
243 <ul>
244 <li>encoding/decoding using XML Schema;
245 Only xsi:type in SOAP Encoding is checked</li>
246 <li>Marshalling references to href/id (Unmarshalling is OK)</li>
247 </ul></li>
248 <li style="margin-top: 2ex;">Othres
249 <ul>
250 <li>Transport binding except HTTP server and client</li>
251 <li>HTTP Extension Framework (M-POST)</li>
252 </ul></li>
253 </ul>
254
255 <h2 id="history" name="history">7. History</h2>
256
257 <dl>
258 <dt>1.3.7 - August 24, 2001</dt>
259 <dd>Feedback from
260 <a href="http://www.whitemesa.com/interop.htm">SOAPBuilders Interoperability Lab &quot;Round 2&quot;</a>
261 and Michael Neumann.  Thanks!
262
263 <ul>
264 <li>Datatypes:
265 <ul>
266 <li>All datatypes try to keep nil correctly.</li>
267 <li>XSDInt/Integer/Long: to_i -&gt; Integer() to detect format error.</li>
268 <li>XSDDateTime, XSDDate, XSDTime: Add trailing 'Z' to indicate UTC.</li>
269 <li>SOAPStruct: Accept untyped struct.</li>
270 <li>Map(Hash): Let &lt;item&gt; untyped.</li>
271 <li>Apache allows only 'item' in Map type.</li>
272 </ul></li>
273
274 <li>Stream handler:
275 <ul>
276 <li>Removed MPOST support.</li>
277 <li>ECONNRESET was not caught.  Fixed.</li>
278 <li>Added timeout support.</li>
279 </ul></li>
280
281 <li>Others:
282 <ul>
283 <li>Changed using URI library: URb -&gt; URI; following its name change.</li>
284 <li>Added NQXML/1.1.0 support.  A XMLDecl now recognized as a XMLDecl, not a PI.</li>
285 </ul></li>
286 </ul></dd>
287
288 <dt>1.3.6 - July 27, 2001</dt>
289 <dd>Many feedbacks from Michael Neumann.  Thanks!
290
291 <ul>
292 <li>hexBinary type: Added.</li>
293 <li>nil type: Should not be xsd:nil but xsi:nil.</li>
294 <li>Added StandaloneServer implementation.  Thanks to Michael Neumann!</li>
295 <li>Illegal parsing of XMLDecl.  Fixed.</li>
296 <li>RPC's 'inout' param was not supported.  Fixed.  Thanks to Michael Neumann!</li>
297 <li>URb::Generic#path returns '' when abs_path is empty (such as http://foo).
298 Added checking code.</li>
299 <li>Use http-access2 instead of original HTTP implementation.  http-access2 supports HTTP/1.1's persistent connection.</li>
300 </ul></dd>
301
302 <dt>1.3.5 - July 14, 2001</dt>
303 <dd>Many feedbacks from Michael Neumann.
304 I much appreciate valuable comments to him.
305 Thanks!
306
307 <ul>
308 <li>Changed using URI library: uri -&gt; URb.</li>
309 <li>Types changed:
310   <ul>
311     <li>All: Triming data except XSDString before parsing it.</li>
312     <li>String: Regexp for XML Char check did not work under $KCODE = 'UTF8' condition.  Fixed.</li>
313     <li>Nil: 2001xsd:nil must not accept a value '1'.  1999xsd:null must not accept a value 'true' because these are not a boolean but only a flag for nil.  Fixed.</li>
314   </ul>
315 </li>
316
317 <li>Supported XML parser:
318   <ul>
319     <li>Added automatic CES conversion support for NQXMLParser.
320         (Depends on uconv module).
321         Set $KCODE for regexps used in NQXML parser.</li>
322     <li>Moved SOAPNQXML*Parser to nqxmlparser.rb.</li>
323   </ul>
324 </li>
325
326 <li>RPC related functions changed:</li>
327   <ul>
328     <li>Added marshalling/unmarshalling Ruby's object using SOAP Encoding.</li>
329     <li>Parallelize of signatures of 'addMethod': proxy.rb &lt;-&gt; rpcRouter.rb, driver.rb &lt;-&gt; cgistub.rb.</li>
330     <li>Void return if 'retval' is not defined.</li>
331     <li>Added SOAP's Long type to default mapping table.</li>
332   </ul>
333 </li>
334 </ul></dd>
335
336 <dt>1.3.4.2 - July 11, 2001</dt>
337 <dd>SOAP4R/1.3.4 was once packed in July 10, 2001.
338 But, thanks to MNeumann and knu,
339 I found I had forgotten to pack 'redist' directory with it.
340 I added some fix from developing version and repack it as 1.3.4.2.
341 Sorry for frequently release...
342 <br/><br/>
343
344 Feedback from
345 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
346 and Michael Neumann.  Thanks!
347
348 <ul>
349 <li>Added in 1.3.4.2:
350   <ul>
351     <li>Type Decimal: Silly bug fixed.  0.0001 was converted to 0.1</li>
352     <li>CGIStub returns HTTP status 500 when returning SOAP Fault.
353         Returned 200 because I don't like this spec., but SOAP/1.2 W3C WD
354         9 July 2001 have adopted it.  Hmm...</li>
355     <li>RPC client(driver.rb): Exception#set_backtrace was omitted when transmitting exception by SOAP Fault.</li>
356   </ul>
357 </li>
358 <li>Types changed:
359   <ul>
360     <li>Array: Incomplete sparse array support.  Fixed.</li>
361     <li>Date: Added.</li>
362     <li>Time: Added.</li>
363     <li>DateTime: Added precision of time support.</li>
364     <li>String: Default data should not be nil but ''.</li>
365     <li>Nil: Attribute value of xsi:nil might be '1' instead of 'true'.  Fixed.</li>
366   </ul>
367 </li>
368
369 <li>Supported XML parser:
370   <ul>
371     <li>Added SOAPXMLParser and SOAPSAXDriver for XMLParser which uses expat.
372         You can get the module from RAA: <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=XMLParser">XMLParser module</a>.<br/>
373         To use XMLParser -&gt; add &quot;require 'soap/xmlparser'&quot;.<br/>
374         To use SAX driver of XMLParser -&gt; add &quot;require 'soap/saxdriver'&quot;.<br/>
375         To use NQXMLParser -&gt; nothing to do.<br/>
376         FYI:
377         <ul>
378           <li>XMLParser version is faster than others</li>
379           <li>SAXDriver version is extremely slow</li>
380           <li>NQXMLParser version is somewhat slower than XMLParser version</li>
381           <li>XMLParser is a Ruby extension module; To use it, you must compile and install it.</li>
382           <li>So far, automatic code conversion support is for XMLParser and SAXDriver.  See below.</li>
383         </ul>
384     </li>
385     <li>Added automatic CES conversion support: UTF-8 &lt;-&gt; EUC, SJIS.
386         Requires Uconv module.  Works with XMLParser module only now.</li>
387     <li>Added XMLDecl for CES.</li>
388   </ul>
389 </ul></dd>
390
391 <dt>1.3.3 - July 4, 2001</dt>
392 <dd>Feedback from
393 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
394 and Michael Neumann.  Thanks!
395 <ul>
396 <li>Added SOAP4R Installer by Michael Neumann.  Thanks!</li>
397 <li>Types changed:
398   <ul>
399     <li>Boolean: Accepts 1 and 0 in addition to true and falue.</li>
400     <li>Float: handles single-precision 32-bit floating point.
401         Ruby's float is doule-precision.</li>
402     <li>Double: Added.  Mapped to Ruby's Float.</li>
403     <li>DateTime: Added TZ support.</li>
404     <li>Long: Added.</li>
405     <li>Int: Changed class hierarchy; derived from Long now.</li>
406     <li>Array: Added 'position' and 'offset' support.</li>
407     <li>Array: Added M-D Array support.</li>
408     <li>Decimal: Added but it's incomplete now.</li>
409   </ul>
410 </li>
411 <li>Illegal error message when a type not found in SOAP-ENC.</li>
412 <li>Tries to transmit \r safely.  To be checked...</li>
413 <li>Parse Fault items like 'faultcode' as same as Body ie. href/id.</li>
414 <li>rpcUtils.rb was completely re-written.
415   <ul>
416     <li>Added mappingRegistry interface.</li>
417     <li>Changed soap2obj and obj2soap's interface.</li>
418     <li>Bignum might be int or integer.  It's dependent on platform.
419         Changed to check range  -2147483648~+2147483647 itself.</li>
420     <li>ary2md: Added.  Converting Array ((of Array)...) to M-D Array.</li>
421     <li>struct2obj: Illegal dependency on ordering of Struct#members.  Fixed.</li>
422     <li>Ruby's Array should be converted to SOAP's Array of anyType.  Fixed.</li>
423   </ul>
424 </li>
425 <li>Dump HTTP header even when an error was raised.</li>
426 </ul></dd>
427
428 <dt>1.3.2 - June 21, 2001</dt>
429 <dd>Feedback from
430 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
431
432 <ul>
433 <li>&quot;nil='1'&quot; should be &quot;nil='true'&quot; in 2001 schema
434 whereas &quot;null='1'&quot; in 1999 schema.  Fixed.</li>
435 <li>SOAP Array was not typed with xsi:type.</li>
436 <li>Fixed serialization root handling algorithm.</li>
437 <li>Supported kind of SOAP-ENC:String style typed element.</li>
438 <li>Default namespace was not derived to child element.  Fixed.</li>
439 <li>Support default encodingStyle.</li>
440 <li>Added support for void type (SOAP::RPCUtils::SOAPVoid).</li>
441 </ul></dd>
442
443 <dt>1.3.1 - May 30, 2001</dt>
444 <dd>Feedback from
445 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
446
447 <ul>
448 <li>Heading and trailing whtespaces in Base64 string could not be processed.  Fixed.</li>
449 <li>Illegal typeNamespace of SOAP's base64 type.  Fixed.</li>
450 <li>Added NaN, INF, -INF support of Float type.</li>
451 <li>Extracted xsd:1999 type support to XMLSchemaDatatypes1999.rb.  Use it with 'require &quot;soap/XMLSchemaDatatypes1999&quot;'.</li>
452 <li>Added 'root' attribute support.</li>
453 <li>Return status 500 when Fault.</li>
454 </ul></dd>
455
456 <dt>1.3.0 - May 20, 2001</dt>
457 <dd><ul>
458 <li>Adopted
459 <a href="http://www.ruby-lang.org/en/raa-list.rhtml?name=NQXML">NQXML module</a>
460 instead of XMLParser module extensively.
461 (You can implement your SOAP parser with XMLParser module.
462 See the last part of lib/soap/parser.rb)
463 <ul>
464 <li>Use NQXML's streamingParser or tokenizer instead of XMLParser's DOMParser for unmarshalling.</li>
465 <li>Use NQXML's document instead of XMLParser's DOM for marshalling.</li>
466 </ul></li>
467 <li>Passed major(?) part of inteoperability test in
468 <a href="http://www.xmethods.net/ilab/">`SOAPBuilders Interoperability Lab.'</a>
469 See test/interop/README.txt.</li>
470 <li>Changed module namespace.  SOAPFoo -> SOAP::Foo.</li>
471 <li>Added float datatype support.</li>
472 <li>Changed dateTime marshalling format.  No timezone was added to marshalled string  because SOAP4R does not support timezone now.</li>
473 </ul></dd>
474
475 <dt>1.2.0 - March 30, 2001</dt>
476 <dd>Checked interoperability with
477 <a href="http://xml.apache.org/soap/">Apache-SOAP</a>,
478 <a href="http://www.pocketsoap.com">pocketSOAP/0.91</a>,
479 <a href="http://www.geocities.com/paulclinger/soap.html">SOAP::Lite for Perl</a>,
480 and <a href="http://www.develop.com/soap/">SOAP/Perl/0.28</a>.
481 It seems to work good except SOAP/Perl/0.28.
482
483 <ul>
484 <li>Added href/id unmarshalling support.
485 (href/id marshalling has not been supported yet)</li>
486 <li>Added SOAP's base64 type support.</li>
487 <li>SOAPTimeInstant -&gt; SOAPDateTime.  Following XML Schema PR.</li>
488 <li>SOAPStruct can have multiple accessor which have same name.
489 Should I separate it from original SOAPStruct?</li>
490 <li>Unknown attribute in Header Item raised an exception.  Omitted.</li>
491 <li>Router can handle methods which belong to different namespace.</li>
492 <li>Added an option to allow unqualified SOAP element.</li>
493 <li>Added Apache's Map type support.  Ruby's Hash are mapped to it now.
494 (Ruby's Hash marshalled by 1.1 processor in the old way can be unmarshalled,
495 but 1.2 processor marshals it in the new way and 1.1 processor does not
496 unmarshals it into Hash.  Incompatibility between SOAP4R/1.2 and 1.1)</li>
497 <li>Unknown type 'unknown:SOAPStruct' was incorrectly unmarshalled into SOAPStruct.  Fixed.</li>
498 <li>Added utility methods map! and members to SOAPArray and SOAPStruct.</li>
499 <li>Added methods request, response, and fault to SOAPBody.</li>
500 </ul></dd>
501
502 <dt>1.1.0 - March 23, 2001</dt>
503 <dd>Made many changes.
504 Since it is tested only for my limited use, please be careful to use.
505 Any comments especially "cannot connect to XXX implementation" are welcomed.
506 Feel free sending mail to
507 <a href="mailto:nakahiro@sarion.co.jp" class="path">nakahiro@sarion.co.jp</a>.
508
509 <ul>
510 <li>Added RPC server support.</li>
511 <li>Divided RPC client/server implementation from core.</li>
512 <li>Added Date, Hash type support. (Unknown type is converted to Struct as usual)</li>
513 <li>Adopted Date in date3.rb by Funaba-san instead of Time as TimeInstant.</li>
514 <li>Many encoding/decoding bugs around SOAPArray and SOAPStruct were fixed.</li>
515 </ul></dd>
516
517 <dt>1.0.2 - November 11, 2000</dt>
518 <dd>Since the previous package dated, refreshes some points.
519 <ul>
520 <li>Ruby: ruby 1.6.x</li>
521 <li>uri.rb: 4.22</li>
522 <li>sample: xml-soap/2.0</li>
523 </ul></dd>
524
525 <dt>1.0.1 - July 27, 2000</dt>
526 <dd>Handles SOAP/1.1 arrays.
527 1.0.0 cannot handles SOAP/1.1 arrays...
528 Bare in mind there still be many
529 <a href="#restrictions">restrictions</a>
530 around SOAP arrays.</dd>
531
532 <dt>1.0.0 - July 17, 2000</dt>
533 <dd>It is the initial released version of SOAP4R. :-)</dd>
534 </dl>
535
536 <h2 id="author" name="author">8. Author</h2>
537
538 <dl>
539 <dt>Name</dt>
540 <dd>NAKAMURA, Hiroshi (aka NaHi or nakahiro)</dd>
541
542 <dt>E-mail</dt>
543 <dd><a href="mailto:nakahiro@sarion.co.jp" class="path">nakahiro@sarion.co.jp</a></dd>
544
545 <dt>URL</dt>
546 <dd><a href="http://www.jin.gr.jp/~nahi/" class="path">http://www.jin.gr.jp/~nahi/</a> (Japanese)</dd>
547 </dl>
548
549 <h2 id="copyright" name="copyright">9. Copyright</h2>
550
551 <p style="text-align: center;">
552 SOAP4R<br />
553 Copyright &copy; 2000, 2001 NAKAMURA, Hiroshi.
554 </p>
555
556 <p>
557 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
558 </p>
559
560 <p>
561 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
562 See the GNU General Public License(the file named `COPYING') for more details.
563 </p>
564
565 <p>
566 You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
567 </p>
568
569 </div>
570
571 <hr />
572
573 <div class="footer">
574 <address>
575 <a href="http://www.jin.gr.jp/~nahi/Ruby/SOAP4R/">SOAP4R</a>.<br />
576 Copyright &copy; 2000, 2001
577 <a href="http://www.jin.gr.jp/~nahi/">NAKAMURA, Hiroshi</a>.
578 </address>
579 </div>
580 </body>
581 </html>
Note: See TracBrowser for help on using the browser.