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

root/tags/RELEASE_1_4p1/RELEASE_en.html

Revision 326, 20.3 kB (checked in by nakahiro, 7 years ago)

Documents for 1.3.8

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