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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
|
=== version history of distribution XML-Compile-SOAP
version 3.28: Mon 1 Aug 10:49:17 CEST 2022
Improvements:
- require LWP::Potocol::https, because it is quite difficult to find-out
that it missing is the cause of a failing installation. People should
use https in any case. Suggested by [Balbino Matanzo]
- new() now supports ssl_opts [Peter Arnhold]
version 3.27: Wed 7 Apr 09:52:29 CEST 2021
Fixes:
- $@ is volatile, unknown change broke input validation error.
https://github.com/markov2/perl5-XML-Compile-SOAP/issues/5 [MadLord80]
version 3.26: Wed 20 Nov 08:43:52 CET 2019
Fixes:
- procedure detection cannot handle empty response messages
anymore. Got broken in 3.23.
github XML-Compile-SOAP-Daemon#2 [Daniel Juarez]
- soap implementations do not have a mimeType method anymore
github XML-Compile-SOAP-Daemon#2 [Daniel Juarez]
Improvements:
- warning on producing templates for operations without message
[Patrick Powell]
version 3.25: Wed 25 Sep 13:16:53 CEST 2019
Improvements:
- handle wsdl:arrayType
- #1 File::Slurp::Tiny is discouraged in favor of File::Slurper
[James Raspass]
- remove dependency to Test::Deep again. rt.cpan.org#130096 [Kent Fredric]
version 3.24: Tue 6 Mar 08:12:19 CET 2018
Fixes:
- Experimental keys on scalar
rt.cpan.org#124688 [Slaven Rezic]
Improvements:
- add missing example wsdl
version 3.23: Sun Mar 4 23:45:09 CET 2018
Fixes:
- add 'Host' to the header.
Improvements:
- rpc style header with type part [Lars Thegler]
- typo in doc rt.cpan.org#124462 [Andy Scheller]
- ::Server::compileFilter() could not handle RPCs with empty bodies,
but was broken much more serious anyway [Abeltje]
- convert to GIT, publish via GitHub
version 3.22: Fri 30 Jun 10:03:10 CEST 2017
Fixes:
- ::XOP::Include read from file always died
rt.cpan.org#119955 [Pavel Trushkin]
- ::XOP::Include read should enforce raw mode
rt.cpan.org#119955 [Pavel Trushkin]
version 3.21: Wed 11 Jan 10:02:19 CET 2017
Fixes:
- XOP hooks were instated, even though XML::Compile::XOP was not.
Schema/WSDL compilation will be a little faster now.
https://github.com/mjgardner/xml-compilex-schema-loader/issues/1
[Slaven Rezić]
- constant name: XS_DAEMON_NS -> XC_DAEMON_NS
rt.cpan.org#119800 [Pavel Trushkin]
Improvements:
- spell fix Debian rt.cpan.org#118577 [Gregor Herrmann, Debian]
version 3.20: Wed 19 Oct 15:43:19 CEST 2016
Fixes:
- XOP writing, where object type not equal but extending base64Binary
[Kit Peters]
version 3.19: Mon Sep 19 23:02:10 CEST 2016
Fixes:
- typo rt.cpan.org#113270 [Debian]
- include examples in the manual page.
Improvements:
- XOP charset [Kit Peters]
version 3.18: Tue 22 Mar 09:04:22 CET 2016
Fixes:
- 3.17 had an unclean release [Nick Morrott]
version 3.17: Mon 21 Mar 15:00:39 CET 2016
Changes:
- moved BEA and Sharepoint schemas to a new XML::Compile::Licensed
distribution, to avoid license related complications on Debian.
Discovered by [Nick Morrott]
- remove examples/temperature/convert.xsd from the distribution:
license not clear.
version 3.16: Tue 15 Mar 08:31:43 CET 2016
Fixes:
- document style can have fault parts with "type" [Heiko Jansen]
- apache's Coyote requires encodingStyle in rpc messange [Heiko Jansen]
- typos rt.cpan.org#112910 [Nick Morrott]
Improvements:
- refer to the new ::SOAPHTTP_MojoUA module.
version 3.15: Wed 6 Jan 17:13:07 CET 2016
Fixes:
- regression test charset
rt.cpan.org#110950 [Mark Gardner]
- version in README
rt.cpan.org#110951 [Mark Gardner]
version 3.14: Wed 6 Jan 14:56:04 CET 2016
Fixes:
- remove enforcement of ::Daemon upgrade, added in the
previous release: cyclic redundancy.
rt.cpan.org#110233 [Alan Mizrahi]
- Apache XCF does not understand quotes around charset in XOP
rt.cpan.org #107586 [Derek Hausauer]
Improvements:
- compile{Client|Calls|All} option transporter can now also
be a XML::SOAP::Transport-object (so, you do not need to
call compileClient() on it explicitly.
version 3.13: Fri 6 Nov 09:39:09 CET 2015
Fixes:
- mime-type of XOP part got broken.
rt.cpan.org #107586 [Derek Hausauer]
Improvements:
- detect need for upgrade of XML::Compile::SOAP::Daemon
- fix some encoding related regression tests
version 3.12: Tue 22 Sep 12:09:36 CEST 2015
Fixes:
- oops, remove debug statements
version 3.11: Tue 22 Sep 12:03:34 CEST 2015
Fixes:
- rpc: performance issue reading xsi:type's
version 3.10: Tue 11 Aug 11:37:49 CEST 2015
Changes:
- when the response is a Fault, we do not return Bad Request,
but OK. WCF (Microsoft .NET) apparently interprets headers
of SOAP1.1 messages as SOAP1.2 (only with some settings?)
Fixes:
- XOP: escape double-quote in start-info [Grégory Bougourd]
version 3.09: Tue Jul 21 14:11:55 CEST 2015
Fixes:
- SOAP11::Encoding should use compileType()
rt.cpan.org#105170 [Nick Wellnhofer]
Improvements:
- FAQ on use of SSL.
version 3.08: Fri Feb 27 13:16:45 CET 2015
Fixes:
- pass soap object to ::Transporter::compileClient [Sean Baker]
version 3.07: Thu Jan 15 14:36:54 CET 2015
Fixes:
- FAQ: how to set the HTTP timeout.
- silence rpc-encoded without namespace.
rt.cpan.org#101383 [Breno G. de Oliveira]
Improvements:
- lower http "received status" messages from 'info' to 'trace'
- ::SOAPHTTP new method defaultUserAgent()
- force people to upgrade LWP
version 3.06: Mon Dec 22 08:43:11 CET 2014
Fixes:
- accept multiple rpc name-spaces.
Improvements:
- typo in generated daemon example [Cs Metsys]
- new method ::SOAP::Operation::longName()
- remove soap-env-patch: not needed anymore
- remove overrule of *form_default on standard schemas: not needed
anymore.
- rpc-encoding partially supported
version 3.05: Wed May 28 09:29:16 CEST 2014
Fixes:
- support rpc-literal fault parts based on type, not only element.
reported by [Rob De Langhe]
- handle returned XOP objects. Patch by [Christopher Taranto]
Improvements:
- use File::Slurp::Tiny to replace File::Slurp
rt.cpan.org#92920 [Karen Etheridge]
- do not include ::Daemon in META.yml
rt.cpan.org#95507 [Nikolay Martynov]
version 3.04: Thu Feb 6 17:05:32 CET 2014
Improvements:
- change documentation style.
- move ::SOAP11::Operation::parsedWSDL() to base-class
version 3.03: Fri Jan 10 15:42:22 CET 2014
Fixes:
- remove dependency to WSDL again, because CPAN.pm cannot
handle cyclic dependencies.
- revert unintended change in 2.36 which croaks when the
Fault/details contains elements which are not understood.
Detected by [Steffen Winkler]
Improvements:
- add server schemas, currently for BEA, SharePoint, and
XML::Compile::Daemon servers.
version 3.02: Wed Jan 8 01:04:45 CET 2014
Fixes:
- auto check whether WSDL11 must be upgraded. [Caleb Cushing]
version 3.01: Mon Jan 6 23:19:14 CET 2014
Improvements:
- upgrade daemon if installed.
- drop support for very old Perl's
version 3.00: Mon Jan 6 00:55:08 CET 2014
Changes:
- split-off WSDL11 into own distribution.
- default mime-type for SOAP 1.1 is text/xml
- removed SOAP10
Fixes:
- headers and body elements which appear more than once will
be put in an ARRAY.
Improvements:
- check that all XML::Compile::SOAP* modules are loaded
[Chase Whitener]
- and one more check [Reiber Christian]
- example how to add BasicAuthentication headers
- added examples/temperature, based on answer to request of [fort_d]
- moved WSDL11 initialization from ::Operation to ::SOAP11
- moved module registration from ::Operation to ::SOAP
- ::Extensions can now register soap12 routines.
- add examples/salesforce/, contribute by [Ciaran Deignan]
- ::Operation:addHeader() now also accepts ELEMENTs in prefixed form
version 2.39: Not released
version 2.38: Thu Aug 22 16:20:29 CEST 2013
Fixes:
- soaphttp: do not reuse HTTP::Request object; we need fresh
headers. rt.cpan.org#88019 [Bret Lambert]
Improvements:
- use ::Cache::addPrefixes()
- one set of operations should not include ops with the same name:
tell user to be more specific when sets overlap.
- clean error when ::WSDL11::compileCalls() would select overlapping
operation names
- remove trick to first generate body and the headers.
- example of changing ::WSDL::endPoint, with help of [Bret]
- ::WSDL::compileCall() now also works with an operation by name,
not only as object.
version 2.37: Tue Jul 9 17:53:13 CEST 2013
Fixes:
- wsdl: compileClient now also respects declare(OPERATION)
- wsdl: SOAP12 operations became SOAP11 ports
Improvements:
- wsdl: new compileCall($operation), helping [Caleb Cushing]
- soaphttp: docs improvement about own user_agent. [Edward Savage]
version 2.36: Fri May 3 10:04:52 CEST 2013
Changes:
- error when Fault/details contains elements which are not
understood.
Fixes:
- writer rpc: do not ignore empty message parts [Henrik Tougaard]
Improvements:
- spell fixes. rt.cpan.org#83835 [Joenio Marques de Costa]
- remove dependency for Test::Deep
- moved ::WSDL11::_learn_prefixes to ::Cache
- doc: OODoc improvements produce nices DETAILS sections
version 2.35: Mon Jan 14 11:45:07 CET 2013
Fixes:
- fix collection of errors, even better. [Lars Thegler]
version 2.34: Fri Dec 21 12:21:00 CET 2012
Fixes:
- correct collection of errors in ::Client
[Roman Daniel]
version 2.33: Fri Nov 30 19:18:22 CET 2012
Improvements:
- ::SOAP11::Operation::addHeader() now supports mustUnderstand
and destination.
version 2.32: Mon Oct 22 21:38:04 CEST 2012
Fixes:
- ::Trace errors is ARRAY, not HASH.
version 2.31: Tue Oct 16 16:28:52 CEST 2012
Changes:
- writer: first create the Body, then the Header, so fields in the
header (for instance Security) do know what the body will be.
- writer: rpc operation will have xmlns, not Envelope
Fixes:
- transport: capture XML and protocol errors in exceptions.
- ::Operation::addHeader() will silently ignore adding the same
header again.
Improvements:
- trace object may capture multiple errors. New method: errors()
version 2.30: Sat Oct 6 13:35:21 CEST 2012
Fixes:
- handle XOP decoding where there is no start-id is mentioned.
Reported by [Ciaran Deignan]
- explain of operation sometimes missed a name-space declaration.
rt.cpan.org#79786 [David Tindall Mcmath]
- ::WSDL::new(wsdl) was documented to accept multiple WSDLs,
but only the first was taken.
[Karen Etheridge]
Improvements:
- more reuse of the default LWP::UserAgent.
- explain show prefixed type for faults.
version 2.29: Thu Aug 16 00:17:22 CEST 2012
Fixes:
- deprecated XML::LibXML::parse_string() must be replaced
by XML::LibXML::load_xml(string).
rt.cpan.org#78946 [chernomyrdin]
- treat XOP mime-type multipart/related case-insensitive
[Ciaran Deignan]
Improvements:
- add ::SOAP11::Operation::parsedWSDL()
version 2.28: Fri Jun 22 20:19:53 CEST 2012
Fixes:
- handling single string fault details. [ZP Gu]
version 2.27: Fri Jun 22 08:54:08 CEST 2012
Fixes:
- disable attempts of the XML::LibXML parser to dynamically load
DTDs for ::Trace::*(pretty_print) [Michael Ludwig]
Improvements:
- take hint by [Boris Jakubaschk] about how simpel it is to get
basic authentication included in the HTTP headers.
- add parsed response DOM-tree to the ::Trace.
On request by [Michael Ludwig]
version 2.26: Wed Feb 8 20:19:15 CET 2012
Fixes:
- fix and improve ::Trace::pretty_print() [Michael Ludwig]
Improvements:
- avoid warnings in ::Trace::printTimings() when the
message exchange was incomplete.
- added example how to get low-level control over the HTTP
messages to the ::FAQ. Based on an example from
[Michael Ludwig]
- added a way to load all imported xsd files to your local
disk via wget, after a question from [Gary Kennedy]
- documentation generation problems.
- add transporter object as parameter to the hook call.
- ::Tansport::compileClient() gets xml_format options to
improve readability.
version 2.25: Thu Sep 22 10:56:11 CEST 2011
Fixes:
- do not silently continue when there are decoding errors.
- two missing __x() in ::SOAP::Server errors. [Patrick Powell]
- one-way message error-handling and explain [Patrick Powell]
- examples/rpc-literal/element.pl failed. Reported by
rt.cpan.org#70349 [Caleb Cushing]
Improvements:
- new method XML::Compile::SOAP::Trace::printErrors()
- explain how to use transport_hook to implement transporter
tricks without fully extending ::Transport [Patrick Powell]
- handler callbacks pass additional session object around.
[Patrick Powell]
- extended ::Trace::printResponse() with 'pretty_print' options,
as suggested by [Caleb Cushin]
- remove example/wssecurity from the distribution: we now have
XML::Compile:WSS.
version 2.24: Mon Jun 20 14:27:15 CEST 2011
Fixes:
- cleanly catch more errors in trace object.
Improvements:
- allow instantiation of WSDL11 object with ARRAY of wsdl
filenames.
- template: also show headers in explain() Hinted by [Patrick
Powell]
version 2.23: Tue Feb 15 08:56:35 CET 2011
Fixes:
- check whether reading from XOP file succeeds.
- ahhh... debug warning was left-in.
rt.cpan.org #65720 [Boris Zentner]
version 2.22: Sat Feb 5 20:41:13 CET 2011
Fixes:
- endpoint parameter got broken in 2.20 [Daniel Stini]
Improvements:
- make explain() output well-formed, syntax correct.
[Patrick Powell]
- $op->compileClient now also accepts parameters for the
transporter which is created internally [Robin V.]
version 2.21: Sat Dec 25 12:01:30 CET 2010
Fixes:
- various tests fail with newer Test::More
version 2.20: Wed Dec 22 16:40:56 CET 2010
Fixes:
- load soap11 schemas, even when WSDL defines a SOAP-ENV.
rt.cpan.org#63439
- fix server faults even further :(
Good test-env by [Patrick Powell] is half the work
Improvements:
- call caching, with new methods compileCalls() and call().
Simplifies application, as shown by [Bernd Web]
- new ::endPoint()
- add fault structures to ::Operation::explain() on request
by [Patrick Powell]
version 2.19: Tue Nov 9 13:23:05 CET 2010
Fixes:
- pass async flag of ::Operation::compileClient [Aleksey Mashanov]
Improvements:
- documentation fixes by [Patrick Powell]
version 2.18: Mon Nov 1 17:10:17 CET 2010
Changes:
- extra "action" parameter for faultMessageNotRecognized().
[Patrick Powell]
- renamed XML::Compile::Operation to XML::Compile::SOAP::Operation
Improvements:
- also Faults which do not contain additional details will
get decoded for convenience. Found by [Patrick Powell]
- promote soapAction() from ::SOAP11::Operation into ::Operation
- document availability of ::Operation::wsaAction() for ::WSA
- produce error when binding of operation is missing.
- XML::Compile::Transport becomes an ::Extension
- added ::Extension::soap11ServerWrapper()
- explain how to use ANY elements in SOAP messages.
- ::SOAP::compileClient() can now be used with async transfer
protocols. [Aleksey Mashanov]
- document existence of ::Transfer::SOAPHTTP_AnyEvent
- ::SOAP::messageStructure() also shows wsa_action.
- remove dependency on Test::Pod
- started with XML::Compile::SOAP::FAQ
version 2.17: Thu Sep 30 17:05:42 CEST 2010
Fixes:
- when the WSDL does not contain a soapAction, there will
not be such field in the mime-header (because SharePoint
gets confused) [Pete Groff]
- when no namespace is defined in RPC, it should be
interpreted as undefined, not produce an error. [Tapio Niva]
- repaired WSDL interpretation problem with faults.
Improvements:
- received header and body elements which are not understood
(hence cannot be decoded) will be included as XML::LibXML node
in the result. Question by [Lars Thegler]
- WSDL elements like service-name do now also accept prefixed
names, not only qnames and local names.
- explain will prefer to show types in prefixed form, which
is shorter than the qname version.
- do also cleanup server generated (out-of WSDL) faults and
describe how to use them.
version 2.16: Wed Aug 11 16:13:14 CEST 2010
Fixes:
- rpc without parameters should create empty procedure element
[Oliver Gorwit]
- do not crash with http-get and http-post bindings in the WSDL.
[Morad Igmir] A real-life server and examples are needed to
be able to implement these protocols.
Improvements:
- accept FILEHANDLE argument in XML::Compile::SOAP::print*()
Requested by [Max Cohan]
- add XML::Compile::Cache version to the HTTP headers.
- add 'Accept' HTTP line to request for SOAP answer (SOAP1.2)
- $wsdl->printIndex() shows SOAP version with port name.
- load wsdl-http.xsd in SOAP10, not WSDL11
version 2.15: Tue Jun 15 15:22:30 CEST 2010
Improvements:
- add ways to extend SOAP11 operation definitions, to support
extensions which are not in the WSDL.
- add XML::Compile::SOAP::Extension for XML::Compile::SOAP::WSA
version 2.14: Mon May 17 13:12:39 CEST 2010
Changes:
- using WSDL with RPC/type, the values must not be labeled
with the type, but the part name.
Fixes:
- ::WSDL11::explain() should pass options to operation search.
version 2.13: Mon Apr 26 10:07:11 CEST 2010
Fixes:
- crash when the data structure returned in a server handler
does not match the expected structure. [Robin V.]
- role keywords were not translated into URIs.
Improvements:
- SOAP11::Operation::compileHandler() new option "selector"
- test the server side production of wsdl defined faults.
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
|