=== version history of XML::Compile::SOAP
version 2.12: Tue Mar  2 15:58:48 CET 2010
	Fixes:
	- rpc return decoding.
version 2.11: Tue Mar  2 09:27:40 CET 2010
	Fixes:
	- syntax error caused by change in Log::Report.
	  rt.cpan.org#55095 [Leandro Hermida]
	- rpc with part types was not processed correctly
	  [Tapio.Niva]
version 2.10: Mon Feb  8 19:43:42 CET 2010
	Fixes:
	- action parameter of XML::Compile::Transport::SOAPHTTP::new()
	  was ignored. [Titi Ala'ilima]
	- ::SOAP11::Server::faultNotImplemented() should only produce
	  a fault structure, not a message.
	Improvements:
	- ::SOAP11::Server::compileHandler()  _RETURN_CODE and
	   _RETURN_TEXT in produced answer will be used in the HTTP
	   header.
	- ::SOAP11::Server shows some client error messages in the
	  server logs.
version 2.09: Thu Jan 28 14:24:40 CET 2010
	Fixes:
	- explicitly require XML::Compile in ::SOAPHTTP [Joel B]
	- good error handling when 'use XML::Compile::SOAP11' is missing.
	Improvements:
	- re-added /examples/wssecurity/security.pm to distribution.
version 2.08: Thu Jun 18 10:29:13 CEST 2009
	Fixes:
	- Fault's did not decoded since v2.05, reported by [Gert Doering]
	Improvements:
	- new method XML::Compile::SOAP::Trace::error()
version 2.07: Tue Jun  2 15:52:20 CEST 2009
	Fixes:
	- remove debug print statement
version 2.06: Tue Jun  2 11:11:27 CEST 2009
	Fixes:
	- removed  XML::Compile::SOAP::Tester from t/01use.t
	  [cpantesters] and rt.cpan.org#46588 [Dagfinn Ilmari Mannsaker]
	- repair call structure when not running with test server.
	  Reported by [Luong Truong]
	- require 'namespace' attribute when SOAP  RPC.  Decided together
	  with [Daniel Ruoso]
	- removed more references to the "fakeServer" implementation which
	  never got around.  There is a nice way to create "server stubs"
	  to be able to test the clients without the need for a remote server.
	  See the docs in XML::Compile::Transport
version 2.05: Thu May 28 12:31:46 CEST 2009
	Fixes:
	- remove XML::Compile::SOAP::Tester, because it was not completely
	  developed.  Signaled by [Georg Oechsler]
	- use 'namespace' parameter (if available) in SOAP RPC
	  Reported by [Daniel Ruoso]
	- rpc-literal one-way fix (hopefully).  Reported by [Daniel Ruoso]
	Improvements:
	- support MTOM and XOP in new modules XML::Compile::XOP(::Include)
	  tests in t/60xop.t   Needed by [Luong Truong]
	- trace which message top-nodes are being skipped.
version 2.04: Mon Apr 13 19:01:15 CEST 2009
	Fixes:
	- RPC/literal was seriously broken.
	  Extended example by [Daniel Ruoso].
	- address operation by port-name [Georg Oechsler]
	Improvements:
	- add filters on operations(), proposed by [Georg Oechsler]
	- added to ::Operation the accessors serviceName(), portName()
	  bindingName(), portTypeName().
	- added ::WSDL11::printIndex()
	- require LWP to be at least 5.825, because Perl 5.10 comes with a
	  version which breaks on unicode [Anton Berezin]
version 2.03: Wed Mar 25 15:44:10 CET 2009
	Fixes:
	- auto-generate service block when missing and only one portType
	  and binding defined. Used by Exchange. Reported by [Anton Berezin]
	- fix wsdl11 when "parts" is used.  [Anton Berezin]
	- do not enforce an endpoint parameter.
	- do not let HTTP error codes confuse the transporter: sometimes
	  they are produced by the SOAP handler. [Gert Doering]
	Improvements:
	- namespace work-around for unqualified Fault structure in SOAP11
	  envelope was implemented twice.  Removed one.
	- accept 'server' option to compileClient, which does only replace
	  the server name in the WSDL service location string, not the
	  whole endpoint.
version 2.02: Sun Feb 15 23:24:14 CET 2009
	Changes:
	- ::Server::compileHandler() now returns a pair: contains
	  a status code as well.
	Fixes:
	- restore accidentally removed ::Server::faultValidationFailed()
	- repair handling of server processing errors.
	- add clean handling of ::Server::faultResponseInvalid()
	- reuse created Server::faultWriter()
	- required XML::Compile::Cache 0.91 [cpantesters]
	Improvements:
	- trace the returned faults
version 2.01: Thu Feb 12 09:48:17 CET 2009
	Changes:
	- require XML::Compile v1.00 for element_form_default parameter
	  rename.
	- SOAP::version not configurable, but class constant.
	Fixes:
	- crash on server errors, when throw() is called.
	  rt.cpan.org#42528 [Piotr Roszatycki]
	- do not use /bin/pwd in t/99pod.t
	- do not prefix the user's keys without explicit user request
	  via key_rewrite => 'PREFIXED'.  Requires XML::Compile 1.01
	Improvements:
	- lookup SOAP protocol via envelope namespace as well.
        - also *::Operation now shows protocol version().
	- added serverClass() and clientClass() for ::Operation.
version 2.00_01: Mon Dec 29 11:13:05 CET 2008
	************** MAJOR REWRITE!!! *******************
	. WSDL11 based on XML::Compile::Cache, with much simpler code
	  as result.
	. many classes and methods have been renamed or removed.
	. split-off SOAP12 into distribution XML::Compile::SOAP12
	. the "document" style soap interface unchanged.
	. rpc-literal is much better now, like document style
	. rpc-encoded not yet supported.
	. pluggable back-ends for message structures (SOAP1.1, SOAP1.2,..)
	  and transporters (SOAPHTTP, XMPP, ...)
	Changes:
	- Too many changes in internals to detail.
	- you have to explicitly load XML::Compile::SOAP11 yourself, to
	  have those definitions understood by the WSDL.
	Fixes:
	- fixed t/30charset.t, with double encode of utf-8.
	Improvements:
	- port to Perl pre-5.8.3, working around broken or non-existing
	  encode() [Toby Corkindale]
	- report cause on client error which is produced in LWP [Tom]
	- removed the [new in 0.78] added elementFormDefault="qualified"
	  in favor of the new XML::Compile::Schema::importDefinitions()
	  options which do the same.
	- more trace messages.
	- new examples for rpc-literal, based on Daniel Ruoso's example.
version 0.78: Fri Oct 10 15:55:39 CEST 2008
	Fixes:
	- improved understanding of top-level elements in XML::Compile 0.95
	  broke this module:
	  . some schema lack    elementFormDefault="qualified"
	    changed in soap-encoding.xsd, wsdl-soap.xsd
	  . some problems in the RPC encoder/decoder
	  . disable t/51wsdl11enc.t
	Improvements:
	- do not use (big)float in test of t/15rpclit11.t
version 0.77: Fri Aug 15 07:48:22 CEST 2008
	Fixes:
	- Changes in XML::Compile 0.93 broke group processing in WSDL
	  rt.cpan.org#38483 [John LoVerso]
version 0.76: Fri Aug  1 13:18:21 CEST 2008
	Fixes:
	- Correcting fault handling. Code and tests(!) contributed
	  by [Jamie Lentin]
	- Requires XML::Compile 0.91, just because it is much better.
version 0.75: Mon Jul 21 09:17:10 CEST 2008
	Fixes:
	- Requires XML::Compile 0.90. Cpantesters [Martin Kutter]
version 0.74: Fri Jul 18 22:01:24 CEST 2008
	Fixes:
	- Reading SOAP failed, because improved strictness of XML::Compile
	  [Jason Tang]
	Changes:
	- require XML::Compile 0.87, which renames option output_namespaces
	  into prefixes.
	Improvements:
	- rename encoder option namespaces into prefixes.  Old name still
	  available.
version 0.73: Tue Apr 29 18:59:42 CEST 2008
	Changes:
	- require Log::Report 0.17, to fulfil promisses of the doc (was 0.11)
	- require XML::Compile::Tester
	- require XML::Compile 0.78 -> 0.81
	Improvements:
	- example how to use WS-Security, contributed by [Alan Wind]
	- refer to mailinglist and IRC, set-up by [Matt S Trout]
	- Test scripts converted to use XML::Compile::Tester.  Cleaned-out
	  t/TestTools.t
version 0.72: Wed Apr 16 13:03:26 CEST 2008
	Fixes:
	- WSDL schemata passed to new() got parsed twice.
	- schema sources were offered for compilation twice, but ignored
	  the last time.
	- schema mix-up with more than one WSDL object. [Kaare Rasmussen]
	- WSDL11->compileClient did not pass parameters to ::Schema::compile()
	  as was documented [Allan Wind]
	Changes:
	- requires XML::Compile 0.73 -> 0.78
	Improvements:
	- new option WSDL11(schemas).
	- only complain about limitation to SOAPHTTP protocol if no
	  explicit transporter was defined. [Daniel Ruoso]
version 0.71: Sat Apr 12 09:58:05 CEST 2008
	Fixes:
	- Support XML which uses a non-utf8 encoding. Patch by [Gert Doering]
	  The related test needs to be updated (print cannot handle byte-
	  streams)
	- Client does not add Content-Length field. Patch [Drew Taylor]
	- headers were missing, since XML::Compile "reader in list-context"
	  fix.  Reported by [Gert Doering]
version 0.70: Wed Apr  9 15:09:43 CEST 2008
	Fixes:
	- Math::BigInt with GMP caused t/14dec11.t to fail
	  [CPANTesters, Slaven Rezic]
version 0.69: Tue Apr  8 23:48:31 CEST 2008
	Fixes:
	- Trace returned on error was not transformed into an object, and
	  resulted in unwanted undefs.
	- ::Trace->printTimings() did not handle undefs well.
	- Document that SOAPHTTP::compileClient(action) is optional, not
	  required
	- ::SOAPHTTP will use LWP::UserAgent with Keep-Alive on.
	Changes:
	- require XML::Compile 0.69 -> 0.73
	- ::WSDL11::Operation canTransport() implementation was broken,
	  and therefore needed a change of behavior.  Probably invisible
	  for end-users.
	Improvements:
	- Automatic reuse of transport connections for all WSDL operations
	  with the same endpoint(s).
	- New method ::SOAP::messageStructure()
	- New facility method ::SOAP::importDefinitions()
	- Added ::Util::MSEXT constant (MicroSoft Extension Framework)
	- Make XML::Compile::SOAP::Daemon work by extending ::SOAP::Server
	  and ::SOAP11::Server implementations.  Implementation completed.
	- Added TODO file.
version 0.68: Fri Mar 14 17:56:37 CET 2008
	Fixes:
	- sender/receiver compile options where not passed to
	  ::Schema::compile()
	- use of ::Transport::SOAPHTTP was not correctly described
	  in its SYNOPSIS [Marc Sebastian Pelzer]
	- SOAP.pm did not use hires-timings
	Improvements:
	- XML::Compile::SOAP::Trace added for simplified debugging.
	  This also simplifies example/namesservice/has_wsdl.pl
version 0.67: Fri Feb  8 09:16:15 CET 2008
	Fixes:
	- WSDL types were compiled twice.
	- problems with specifying your own transporter when creating SOAP
	  calls based on a WSDL.
	- upgrade requirement XML::Compile to 0.68
	- ::Encoding::dec()  [decode RPC] tries harder.
	  with help of [Philippe B.]
	Improvements:
	- Pass information about location of type definitions to
	  XML::Compile, for debugging and tracing.
	- ::Encoding::array new option array_type
version 0.66: Thu Jan 31 09:30:18 CET 2008
	Fixes:
	- the SOAP message is a document, not an element.  This way,
	  we get the right output encoding for free.  Problem spotted
	  by [Gert Doering]
	- more encoding/decoding character-set issues.  Test script
	  in t/30charset.t
	Improvements:
	- details about client-side soap moved from ::SOAP into
	  ::SOAP::Client
	- ::SOAP::compileClient() moved to ::SOAP::Client::
	- example for $wsdl->compileClient() by [Allen Wind]
	- updated the docs, wrt non-existing SOAP1.2 support, triggered
	  by [Allen Wind]
	- initial implementation of XML::Compile::SOAP::Server
	- return multiple elements in RPC-encoded constructor.
	  Needed by [Philippe B.]
version 0.65: Mon Jan  7 11:58:52 CET 2008
	Improvements:
	- do not fail in ::Operation::collectMessageParts() if the
	  input or output part description is missing. [Kaare Rasmussen]
	- support for one-way (WSDL) messages, pushed by [Kaare Rasmussen]
	
version 0.64: Tue Nov 27 11:42:45 CET 2007
	Changes:
	- various improvements in the output of Encode::decSimplify(),
	  the automatic decoded rpc-encoded messages.
	- depends on XML::Compile 0.61
	Fixes:
	- ::Encoding::_dec_typed() confused URI and prefix.
	- rpc-encoded now tests that user's constructed question has
	  a name-space.
	Improvements:
	- updated examples in example/namesservice/
	  WSDL example is now called: has_wsdl.pl
	- added new example/namesservices examples:
	  New pure Schema example: has_schema.pl
	  RPC-literal example: rpc-literal.pl
	  RPC-Encoded example: rpc-encoded.pl
	  and 4 related simplifications, named xxxx2.pl
	- added for convenience: Encoding::encAddNamespace() [without s]
version 0.63: Sat Nov 24 00:14:07 CET 2007
	Changes:
	- requires XML::Compile 0.60
	- ::Encode::typed() now uses selected schemaNS as default, so
	  simplifies the type parameter.
	- ::Encode::element() now also has the 'type' as first parameter,
	  like ::typed().
	Fixes:
	- detection of operation type, where WSDL used prefixes.
	- some improvements and changes where not listed in the changelog
	  for version 0.62
	- fixed ::Encode::typed() when value is already an element
	- WSDL11 headers parsed wrongly. [Gert Doering]
	Improvements:
	- added t/51wsdl11enc.t
	- added ::Encoding::nil()
	- test for ::Encoding::struct();
version 0.62: Mon Nov 19 12:55:42 CET 2007
	Changes:
	- XML::Compile::SOAP::HTTPClient renamed into
	  XML::Compile::Transport::SOAPHTTP.
	  It is reworked to extend the new XML::Compile::Transport.
	  Change invisible to WSDL users, but very visible to people
	  who create their own messages.  Some of the trace records
	  changed name as well.
	- swapped arguments of ::Encoding::typed() from
	   (name, type, value) to (type, name, value);
	- WSDL11(::Operation)::prepareClient() renamed into
	  ::compileClient()
	Improvements:
	- moved README.todo text to XML::Compile::SOAP man-page,
	  because people often use pre-packaged modules and therefore
	  may not see the README files.
	- extended the documentation a lot.
	- implemented XML::Compile::SOAP::compileClient(), which was
	  documented but not present.
	- added transport base class XML::Compile::Transport.
	- compileMessage() accepts pre-compiled READER and WRITERs,
	  not only element types.
	- implemented (and documented/tested) literal and encoded RPC.
	- added Encoding::encAddNamespaces()
	- added Encoding::struct()
	- use fake_server to t/wsdl11.t
version 0.61: Tue Nov  6 13:56:54 CET 2007
	Fixes:
	- expected installation problmes due to version number.
version 0.60: Tue Nov  6 13:52:45 CET 2007
	Changes:
	- requires XML::Compile 0.58
	- Empty parameter list at operation will be passed to a
	  single body element.
	Improvements:
	- XML::Compile::SOAP::Encoding::decSimplify()
	- Working(!) example included.
version 0.59: Mon Nov  5 15:57:30 CET 2007
	Changes:
	- requires XML::Compile 0.57
	Improvements:
	- added XML::Compile::SOAP::Util, where all often-used URIs
	  are now defined.
	- added XML::Compile::SOAP::Encoding, for XML-RPC.
	  tests in t/13enc11.t and t/14dec11.t
version 0.58: Mon Oct 22 10:53:30 CEST 2007
	Fixes:
	- XML::Compile::SOAP::Server was missing from the MANIFEST.
	  Cpan-testers, [Slaven Rezic]
version 0.57: Thu Oct 18 09:33:10 CEST 2007
	SOAP11 might be working, partially.  No tests with real HTTP
	connection yet.
	Fixes:
	- XML::Compile::SOAP1[12]::Client's were missing from the
	  MANIFEST
	Changes:
	- roleAbbreviations() became roleURI(), and new roleAbbrevations()
	  which does the reverse of the old one.
	Improvements:
	- producing and decoding faults, with tests in t/11fault11.t
	- implemented XML::Compile::SOAP::compileCall()
	- moved description of missing implementation features from
	  XML::Compile::SOAP manual page to README.todo
version 0.56: Fri Oct 12 14:54:25 CEST 2007
	Massive changes and extensions, but still not functioning.
	- split-off XML::Compile::SOAP::Daemon and all its needs into
	  a seperate distribution.
	- implements XML::Compile::SOAP::Tester
	- implements XML::Compile::SOAP11::Server
	- implements XML::Compile::SOAP12::Server
	- moved parts of XML::Compile::SOAP1[12]
	  into XML::Compile::SOAP1[12]::Client, and reworked examples.
	- translated some die's and warn's into Log::Report
	- use "5.008" in Makefile.PL, to replace "use 5.8" which is
	  not understood by Perl 5.5 [Slaven Rezic]
version 0.55: Wed Oct  3 22:57:24 CEST 2007
	- first attempt on a full implementation.  Quite some
	  interface changes were made; old docs are useless.
	- fork from XML::Compile
	- renamed XML::Compile::WSDL         into XML::Compile::WSDL11
	- renamed XML::Compile::SOAP::SOAP11 into XML::Compile::SOAP11
	- renamed XML::Compile::SOAP::SOAP12 into XML::Compile::SOAP12
	- install xsd's automatically, grouped in directories
	  XML/Compile/{SOAP11,SOAP12,WSDL11}/xsd/
	- added wsdl11soap12.xsd
	- Log::Report (translation) namespace xml-compile-soap
	- depend on LWP
	- renamed XML::Compile::SOAP::Operation into
	  XML::Compile::WSDL11::Operation.
	- Added XML::Compile::SOAP::Client and ::Server
	- Added XML::Compile::SOAP::HTTPClient and ::Server