forked from pelletier/SOAPpy
-
Notifications
You must be signed in to change notification settings - Fork 52
/
old.Changelog
3195 lines (2169 loc) · 90.1 KB
/
old.Changelog
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
2005-02-22 10:58 warnes
* ChangeLog, README, RELEASE_INFO: Update for 0.12.0 release.
2005-02-21 23:30 tag SOAPpy_0_12_0
2005-02-21 23:30 warnes
* tests/README: update README since TCtests.py now passes!
2005-02-21 23:29 warnes
* SOAPpy/: Parser.py, Types.py: Fix handling of parse rules!
TCtest.py now passes!
2005-02-21 23:25 warnes
* tests/: Bug1001646.py, Bug916265.py, ComplexTypes.py,
GoogleTest.py, Makefile, README, TCtest.py, echoClient.py,
echoHeader.py, echoServer.py, largeDataTest.py, testleak.py:
Enhance echoServer with a quit method. Provide a makefile for
running all working tests.
2005-02-21 15:27 warnes
* SOAPpy/Client.py: Fix loss of quotes at start of file
description.
2005-02-21 15:24 warnes
* SOAPpy/SOAPBuilder.py: Add spaces and newlines to soap
environment declarations when writing SOAP enclosure so that the
results are more human readable.
2005-02-21 15:21 warnes
* SOAPpy/Client.py: Add code to handle the case when headers are
empty or not present.
2005-02-21 15:16 warnes
* SOAPpy/WSDL.py: Add 'show_methods' which will print the methods
and associated parameters.
2005-02-21 15:09 warnes
* docs/: GettingStarted.txt, GlobusSupport.txt, WSDL.txt,
complexTypes.txt, simpleTypes.txt: Update documentation.
2005-02-18 14:29 warnes
* SOAPpy/Client.py: If content_length is missing or empty, we need
not check for a the OC4J bug...
2005-02-18 11:28 warnes
* README: Add bug reporting and mailing list information.
2005-02-18 10:42 warnes
* docs/GettingStarted.txt: Change 'SOAP.py' to 'SOAPpy'
2005-02-18 10:40 warnes
* docs/attrs.txt: Remove the long copyright and usage notices.
Clarify the (too brief) text.
2005-02-18 10:36 warnes
* docs/: complexTypes.txt, UsingHeaders.txt: Most of the
information in the 'complexTypes.txt' file was actually about the
use of headers. Moved that text to a new file
'UsingHeaders.txt'.
2005-02-18 08:50 warnes
* SOAPpy/wstools/XMLSchema.py: Apply patch submitted by Peter
McA'Nulty of WebReply.com: "class SimpleContent, class
Extension.fromDom() at line ~2313 doesn't handle extensions
without contents -- unusual, but not illegal"
2005-02-17 01:44 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- added the item trace to an exception
thrown
when an unexpected child is encountered in
complexType.fromDom
method so one can see where the problem is occuring.
----------------------------------------------------------------------
2005-02-16 13:39 warnes
* tests/echoServer.py: Added echo_jheader which returns its
argument and the header, in order to support Bug1001646.py
2005-02-16 13:34 warnes
* tests/Bug1001646.py: Test now properly checks to see that the
header is preserved.
2005-02-16 09:45 tag v1_7
2005-02-16 09:45 warnes
* SOAPpy/wstools/XMLname.py: Remember to paste prefix back onto the
XMLname before returning.
2005-02-15 23:27 warnes
* SOAPpy/SOAPBuilder.py: Bug fix for [ 1078051 ] "Arrays of complex
types (doc/lit)" per the patch submited with the bug report by
Nelson Minar.
2005-02-15 23:25 warnes
* tests/echoClient.py: Print what we're trying to do so that errors
are easier to track down.
2005-02-15 23:24 warnes
* tests/storageTest.py: Updated 'registerUser' to match current
documentation, but still get an error from the server.
2005-02-15 23:23 warnes
* tests/echoServer.py: Add 'echo_simple' command that just returns
its arguments as-is.
2005-02-15 23:22 warnes
* tests/Bug1001646.py: Turn of some debugging information.
2005-02-15 23:21 warnes
* tests/Bug916265.py: Regression test for [ 916265 ] "Arrays of
unicode do not serialize correctly (patch included)"
2005-02-15 23:09 warnes
* tests/Bug1001646.py: Regression test for bug [ 1001646 ] SOAPpy
stomps headers when sending multirefs.
2005-02-15 16:51 warnes
* SOAPpy/Client.py: Create workaround for a bug in OC4J reported in
[ 1122991 ] "error from SOAPpy/Client.py for content_length
evaluation?" by Merten Schumann.
2005-02-15 16:09 warnes
* SOAPpy/SOAPBuilder.py: Fix [ 1106450 ] "Floats are truncated to
10 digits, causing precision loss" submitted by Kerry 'krdavis'.
2005-02-15 16:07 warnes
* SOAPpy/Client.py: Fixed [ 1096971 ] "Parse error: missing HTTP
header 'Content-length'" submitted by 'pure water'.
2005-02-15 15:59 warnes
* SOAPpy/Types.py: Fix [ 1064248 ] "Bugs in _asdict() and
_asarray() in Types.py" submitted by Peter Lamb.
2005-02-15 15:56 warnes
* SOAPpy/SOAPBuilder.py: Fix handling of 0-length arrays.
2005-02-15 15:52 warnes
* SOAPpy/SOAPBuilder.py: Apply [ 1064233 ] "Bug fixes for complex
types" from Peter Lamb.
2005-02-15 15:41 warnes
* SOAPpy/SOAPBuilder.py: Fix bug [ 1001646 ] SOAPpy stomps headers
when sending multirefs using included patch provide by Nelson
Minar
2005-02-15 15:15 warnes
* SOAPpy/Client.py: Fix [ 925077 ] SOAPpy prints out SOAP fault
/even when Config.debug is off/.
2005-02-15 15:12 warnes
* SOAPpy/Parser.py, tests/Bug918216.py: Fix parsing bug & add
regression test. SOAPpy was not allowing anything after the
close of a faulttype block, but multirefs should be permitted
there. Closes bug [ 918216 ] "Parsing faults in SOAPpy 0.11.3"
2005-02-15 14:30 warnes
* tests/ZeroLengthArray.py: Test handling of zero-length typed
lists. Currently fails.
2005-02-15 14:22 warnes
* SOAPpy/SOAPBuilder.py: Revert broken header generation from last
patch.
2005-02-15 11:41 warnes
* SOAPpy/SOAPBuilder.py: Fix bug [ 916265 ] Arrays of unicode do
not serialize correctly, submitted by Nelson Minar.
2005-02-15 11:37 warnes
* README: Fix typo in README.
2005-02-15 11:32 warnes
* LICENSE, README, setup.py, SOAPpy/Client.py, SOAPpy/Errors.py,
SOAPpy/GSIServer.py, SOAPpy/NS.py, SOAPpy/Server.py,
SOAPpy/wstools/XMLname.py, docs/MethodParameterNaming.txt: Update
email address
2005-02-09 13:33 tag bogus-12_9_123RC93
2005-02-09 13:33 boverhof
* SOAPpy/wstools/Utility.py:
----------------------------------------------------------------------
Modified Files:
Utility.py -- need to do isfile check before calling mod
func
"urlopen" for cross-platform compat.
----------------------------------------------------------------------
2005-02-07 12:07 irjudson
* SOAPpy/wstools/WSDLTools.py: Mod to flatten wsdl imports, schemas
not dealt with yet.
2005-02-04 14:18 boverhof
* SOAPpy/wstools/Namespaces.py:
----------------------------------------------------------------------
Committing in .
Modified Files:
Namespaces.py -- OASIS.PROPERTIES wasn't quite correct
(suffix .wsdl --> .xsd)
----------------------------------------------------------------------
2005-02-01 13:10 boverhof
* SOAPpy/wstools/Namespaces.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py -- added OASIS BaseFaults.
----------------------------------------------------------------------
2005-01-31 09:45 warnes
* README: Update URL for fpconst.
2005-01-27 18:01 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- added a couple convenience methods for
grabbing
various Schema Items.
----------------------------------------------------------------------
2005-01-25 19:31 boverhof
* SOAPpy/wstools/Utility.py:
----------------------------------------------------------------------
Modified Files:
Utility.py -- change to accomodate writing out XML
instances
w/o SOAP Envelopes, "known" prefixes aren't
"known"
when the Envelope isn't writen out.
----------------------------------------------------------------------
2005-01-18 12:18 boverhof
* SOAPpy/wstools/: Namespaces.py, XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py
-- added Oasis base notification ns.
XMLSchema.py
-- modified an exception message.
----------------------------------------------------------------------
2004-12-20 15:36 boverhof
* SOAPpy/wstools/: WSDLTools.py, XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py
-- removed a line that was screwing up imports/includes
of
when WSDL file was specified to "wsdl2py" via a relative
path.
XMLSchema.py
-- stop requiring suffix "xsd" for schema files.
----------------------------------------------------------------------
2004-12-17 16:41 boverhof
* SOAPpy/wstools/c14n.py:
----------------------------------------------------------------------
Modified Files:
c14n.py -- fixed a bug affecting those who don't have
pyXML installed.
----------------------------------------------------------------------
2004-12-08 15:04 boverhof
* SOAPpy/wstools/c14n.py:
----------------------------------------------------------------------
Modified Files:
c14n.py -- just removed import of ZSI so SOAPy can use
w/o ZSI.
----------------------------------------------------------------------
2004-12-07 10:54 blunck2
* SOAPpy/wstools/__init__.py: uncommented import of WSDLTools.
josh commented this out during another commit and i think it was
unintentional
2004-11-30 01:27 boverhof
* SOAPpy/wstools/: Namespaces.py, WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py WSDLTools.py
-- added WSA 2004/08 namespaces, and enabled "PortType"
to
discover it.
----------------------------------------------------------------------
2004-11-16 15:59 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- added a couple helper methods for
discovering
whether or not an element should be qualified.
----------------------------------------------------------------------
2004-11-12 18:14 boverhof
* SOAPpy/wstools/: Namespaces.py, WSDLTools.py, XMLSchema.py,
logging.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py
-- Added a SOAP-1.2 binding
WSDLTools.py
-- Added some methods from grabbing ElementDeclaration
and
TypeDefintion from Message instances.
XMLSchema.py
-- fixed a bug in SchemaReader.
logging.py
-- added a couple more functions, and a level to basic
logger.
----------------------------------------------------------------------
2004-11-08 14:46 boverhof
* SOAPpy/wstools/Utility.py:
----------------------------------------------------------------------
Committing in .
Modified Files:
Utility.py -- removed "sw" property in ElementProxy.
----------------------------------------------------------------------
2004-11-05 02:32 boverhof
* SOAPpy/wstools/c14n.py:
----------------------------------------------------------------------
Modified Files:
c14n.py -- opps, want to call the implementation
constructor
when passed any NodeType, not just Element nodes.
----------------------------------------------------------------------
2004-11-05 01:35 boverhof
* SOAPpy/wstools/: Namespaces.py, Utility.py, WSDLTools.py,
__init__.py, c14n.py:
----------------------------------------------------------------------
Modified Files:
** removed all "imports" of ZSI or ZSI.wstools, so
wstools
can be used independently by SOAPpy.
Namespaces.py
-- added a namespace
Utility.py
-- moved ZSI.utility here, and the "Base" class for
logging.
WSDLTools.py
-- added a "toDom" and "GetWSDL" methods to several
classes,
so now you can construct a WSDL instance and then call
WSDL.toDom() --> DOM --> and create a WSDL file.
__init__.py
-- removed "Base" class for logging.
Added Files:
c14n.py
-- moved the c14n stuff from ZSI.compat here.
----------------------------------------------------------------------
2004-11-04 18:06 mateo41
* SOAPpy/wstools/Namespaces.py: overloaded the DSIG.C14N (from
PyXML Namespace with a newer canonicalization algorithm. Added
GLOBUS.SIG, which is the namespace for SecureConversation
2004-10-26 20:09 boverhof
* SOAPpy/wstools/Namespaces.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py -- added OASIS.LIFETIME
----------------------------------------------------------------------
2004-10-22 16:11 boverhof
* SOAPpy/wstools/: Utility.py, XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
Utility.py -- catch any exceptions thrown when a DOM is
loaded up,
throw a ParseError with old ex.args and inform
which file
caused the problem.
XMLSchema.py -- For attributeGroup incorrectly adding
global
attribute declarations, but these are declared
locally.
----------------------------------------------------------------------
2004-10-21 02:40 mateo41
* SOAPpy/wstools/Namespaces.py: added another namespace to WSSE,
and created a GLOBUS namespace class with 2 namespaces
2004-10-20 18:35 boverhof
* SOAPpy/wstools/WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py -- uncommented some "import" code that I
didn't
think was of any use. Now I need it.
----------------------------------------------------------------------
2004-10-19 21:33 mateo41
* SOAPpy/wstools/Namespaces.py: added the BEA class, which is an
organization which has created schema for the SecureConversation
protocol
2004-10-19 18:52 boverhof
* SOAPpy/wstools/: WSDLTools.py, XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py
XMLSchema.py
--removed some print statements I left behind.
----------------------------------------------------------------------
2004-10-18 22:51 boverhof
* SOAPpy/wstools/Namespaces.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py -- added some URLs for Oasis
specifications.
----------------------------------------------------------------------
2004-10-15 21:15 boverhof
* SOAPpy/wstools/WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py -- forgot to look for 2004 WS-Actions.
----------------------------------------------------------------------
2004-10-14 04:24 boverhof
* SOAPpy/wstools/: WSDLTools.py, XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py
-- resolution of default WS-Action was incorrect when
using
imported portTypes.
XMLSchema.py
-- added a couple helper functions, and a few more
Markers
for introspecting modelGroups and simpleType derivations.
----------------------------------------------------------------------
2004-10-01 00:27 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- SchemaReader wasn't resolving relative
paths correctly.
----------------------------------------------------------------------
2004-09-27 16:40 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- Shouldn't check attributes for WSDL
definition
since it's legal to specify <any> attribute in
<definition>
----------------------------------------------------------------------
2004-09-27 15:55 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- required another condition in
getItemTrace,
need to check if at <xsd:schema> or <wsdl:definition>,
also added some info to SchemaError throw in
checkAttributes.
Now provides namespace/attribute and the Schema Item
containing
the offending attribute.
----------------------------------------------------------------------
~
2004-09-22 18:40 boverhof
* SOAPpy/wstools/: XMLSchema.py, __init__.py, logging.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py
-- added a few convience methods, and 'disabled' a few
methods
to force a sane usage.
__init__.py
-- removed use of python logging module, and replaced it
with
the below.
Added Files:
logging.py
-- simple interface to log message to, can write your own
logger class. By default do no logging.
----------------------------------------------------------------------
2004-09-21 18:19 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- added a "getItemTrace" method to
XMLSchemaComponent
Base class to produce a node trace. Added a bunch of
"tag"
class variables for identifying what an instance
represents,
and removed a bunch of unused code.
----------------------------------------------------------------------
2004-09-10 23:14 warnes
* RELEASE_INFO: Update for release 0.11.6
2004-09-10 23:07 tag SOAPpy_0_11_6
2004-09-10 23:07 warnes
* ChangeLog, SOAPpy/version.py: Update version number
2004-09-10 23:03 warnes
* LICENSE, README, RELEASE_INFO, SOAPpy/Types.py: - Update URLs and
email address. - Use 'dictType' instead of 'dict' in type check.
2004-09-09 19:32 boverhof
* SOAPpy/wstools/__init__.py:
----------------------------------------------------------------------
Modified Files:
__init__.py -- changed "Base", which contains a logger,
to
no-op logging if the logging configuration file is not
found and avoid the overhead of using the logging
module.
----------------------------------------------------------------------
2004-09-09 00:37 boverhof
* SOAPpy/wstools/WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py -- Commented out the "imports" collection,
which isn't of much use.
Now URLs are resolved relative to the importing document.
Support for this scenario:
---
/Users/boverhof/Desktop/Wsdl/Service/whatever.wsdl
<definition>
<import location="../hello/hello.wsdl"/>
...
</definition>
--- /Users/boverhof/Desktop/Wsdl/hello/hello.wsdl
<definition>
<import location="goodbye.wsdl"/>
...
</definition>
--- /Users/boverhof/Desktop/Wsdl/hello/goodbye.wsdl
<definition>
...
</definition>
----------------------------------------------------------------------
2004-09-01 22:18 tag SOAPpy_0_11_5
2004-09-01 22:18 warnes
* ChangeLog, RELEASE_INFO, SOAPpy/version.py: Update for release
0.11.5
2004-08-18 19:12 boverhof
* SOAPpy/wstools/__init__.py:
----------------------------------------------------------------------
Modified Files:
__init__.py -- cleaned up the module, removed some old
code.
----------------------------------------------------------------------
2004-06-23 16:10 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- added getAttributeContent method wherever
appropriate.
----------------------------------------------------------------------
2004-06-23 14:05 boverhof
* SOAPpy/wstools/WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py -- SoapBinding item soap:header message
attribute
needs to be stored as a (namespace,name) tuple to
enable
lookup.
----------------------------------------------------------------------
2004-06-21 17:40 boverhof
* SOAPpy/wstools/Namespaces.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py -- added 2004 ws-addressing namespaces.
----------------------------------------------------------------------
2004-06-05 14:30 boverhof
* SOAPpy/wstools/WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py -- couple bug fixes for determining default
wsa:Action values
----------------------------------------------------------------------
2004-06-04 12:53 boverhof
* SOAPpy/wstools/WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py -- added a "getResourceProperties" method to
class PortType.
----------------------------------------------------------------------
2004-06-04 12:44 boverhof
* SOAPpy/wstools/__init__.py:
----------------------------------------------------------------------
Enter Log. Lines beginning with `CVS:' are removed
automatically
Committing in .
Modified Files:
__init__.py -- added some code for doing logging
----------------------------------------------------------------------
2004-06-03 09:03 warnes
* MANIFEST.in: Add text files like LICENSE to the list included in
distributed packages.
2004-05-14 00:37 boverhof
* SOAPpy/wstools/WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
WSDLTools.py -- Had to change how the default wsa:Action
values
are set up. Must wait until entire WSDL is loaded,
otherwise
can get into situations where the objects we need to
access
haven't been initialized yet because of the order of
WSDL
information items in the WSDL definition.
----------------------------------------------------------------------
2004-05-13 13:15 tyger23
* SOAPpy/wstools/Namespaces.py: added XSD_LIST to SCHEMA because
it's absence broke wsdl2python.
2004-05-11 04:07 boverhof
* SOAPpy/wstools/: Namespaces.py, WSDLTools.py:
----------------------------------------------------------------------
Modified Files:
Namespaces.py -- added a bunch of namespaces (encryption,
ws-address, ws-resourcepolicy, etc)
WSDLTools.py -- added functionality for getting
WS-ResourceProperties and
ws-Address information out of WSDL. Ran all unittests
and passed.
----------------------------------------------------------------------
2004-05-10 21:09 boverhof
* SOAPpy/wstools/XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
XMLSchema.py -- added some code to generate user
interpretable
exceptions.
BEFORE:
File
"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/ZSI/wstools/Utility.py",
line 600, in __getitem__
return self.data[key]
KeyError: u'xtvd'
AFTER: File
"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/ZSI/wstools/XMLSchema.py",
line 465, in getQNameAttribute raise KeyError,
"targetNamespace(%s) collection(%s) has no item(%s)"\ KeyError:
u'targetNamespace(urn:TMSWebServices) collection(types) has no
item(xtvd)'
----------------------------------------------------------------------
2004-04-28 21:40 boverhof
* SOAPpy/wstools/: Namespaces.py, Utility.py, XMLSchema.py:
----------------------------------------------------------------------
Modified Files:
Utility.py
XMLSchema.py -- just moved SplitQName out of here and
into Utility
Added Files:
Namespaces.py -- WSDL, SOAP, SCHEMA, XMLNS namespaces
here. Doesn't
require PyXml
----------------------------------------------------------------------
2004-04-28 17:47 warnes
* SOAPpy/Server.py: Fix string format error in fault handling
2004-04-27 11:47 warnes
* CHANGELOG: Renamed to ChangeLog
2004-04-27 11:39 warnes
* ChangeLog, SOAPpy/version.py: Update for 0.11.4.
2004-04-27 11:38 warnes
* RELEASE_INFO:
Updated for 0.11.4 release.
2004-04-27 11:23 warnes
* SOAPpy/Server.py: Check if header information contains SOAPAction
key before checking its value.
2004-04-27 11:22 warnes
* tests/TCtest.py: Convert TCtest.py to unit test framework.
2004-04-13 23:42 irjudson
* SOAPpy/Types.py: Added traceback info to exception for
methodnotfound.
2004-04-13 23:41 irjudson
* SOAPpy/Server.py: Added traceback back in, without optional
config arg, seems resonable to do it this way.
2004-04-11 18:01 boverhof
* SOAPpy/wstools/Utility.py:
----------------------------------------------------------------------
Modified Files:
Utility.py
-- Fix to DOM singleton hasAttr method. _attr and
_attrNS are
instance variables of the minidom Element, and are
implementation
specific. Now hasAttr method will work when using
FtNode.Element,
which is what ZSI ParsedSoap defaults to (Ft.Doc).
----------------------------------------------------------------------
2004-04-10 00:29 irjudson
* SOAPpy/Types.py: Applied patch from antonio.beamud@linkend.com,
for tagging complexType arrays. Looks entirely self-contained,
and therefore safe to apply. Also includes new classes for the
standard soap faults that can occur, so clients can catch them
directly.
2004-04-10 00:28 irjudson
* SOAPpy/SOAPBuilder.py: Applied patch from
antonio.beamud@linkend.com, for tagging complexType arrays. Looks
entirely self-contained, and therefore safe to apply.
2004-04-10 00:26 irjudson
* SOAPpy/Server.py: Changed faultType construction to be more
client side parsable, make faultstring a non-variable string (ie
no nsmethod in it) so that it can be programmatically checked
more easily. Modified faultdetail to be the nsmethod. Now the
traceback doesn't get passed to the client side.
2004-04-10 00:22 irjudson
* SOAPpy/Client.py: Put quotes back in around SOAP Action, for spec
conformance.
2004-04-02 08:45 irjudson
* SOAPpy/Client.py: Removed quotes from SOAPAction header, seems to
be more correct.
2004-04-01 08:25 warnes
* SOAPpy/SOAPBuilder.py, SOAPpy/Types.py, SOAPpy/version.py,
tests/SOAPtest.py: - Fixed bug that caused typedArrayTypes to
lose their type information when rendered to SOAP. - Added
corresponding test case to SOAPtest.py - Updated version number.
2004-03-30 19:42 boverhof
* SOAPpy/wstools/Utility.py:
----------------------------------------------------------------------
Modified Files:
Utility.py -- 'attrsNS' replaced with '_attrNS', the
actual name
----------------------------------------------------------------------
2004-03-30 18:19 boverhof
* SOAPpy/wstools/Utility.py: