2005-09-21 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / System.Runtime.Serialization.Formatters.Soap / System.Runtime.Serialization.Formatters.Soap / ChangeLog
1 2005-09-21  Lluis Sanchez Gual <lluis@novell.com>
2
3         * SoapWriter.cs, SoapReader.cs: Encode/Decode field names when
4         serializing/deserializing an object using custom serialization.
5         Fixes bug #75970.
6
7 2005-07-29  Lluis Sanchez Gual <lluis@novell.com>
8
9         * SoapWriter.cs: Wrap method signature headers in a MethodSignature
10         object before serializing. Track changes in SoapTypeMapper.
11         * SoapReader.cs: Track changes in SoapTypeMapper. Factorized some code.
12         * SoapTypeMapper.cs: Replaced indexers by regular methods, this makes
13         code easier to read an understand. Simplified the code for registering
14         basic soap types. Added support for types from
15         System.Runtime.Remoting.Metadata.W3cXsd2001. Implemented support
16         for MethodSignature serialization. All this fixes bug #75537.
17
18 2005-07-14  Lluis Sanchez Gual <lluis@novell.com>
19
20         * SoapReader.cs: Fixed parsing of array dimensions. Patch by Roei Erez
21         for bug #75536.
22         * SoapTypeMapper.cs: When encoding the name of a type, if the type is
23         an array don't encode the array dimensions. 
24
25 2005-06-27  Lluis Sanchez Gual <lluis@novell.com>
26
27         * SoapWriter.cs: Serialize TimeSpan values like MS.NET. Fix by Roei Erez
28         for bug #75364.
29
30 2005-05-10  Lluis Sanchez Gual <lluis@novell.com>
31
32         * SoapTypeMapper.cs: Serialize floats and doubles using the correct
33         precision. Patch by Roei Erez that fixes bug #75196.
34
35 2005-05-09  Lluis Sanchez Gual <lluis@novell.com>
36
37         * SoapReader.cs:
38         * SoapWriter.cs: Use InternalRemotingServices.GetCachedSoapAttribute to
39         get the name of the fields being serialized. Fixed some warnings.
40
41 2005-05-05  Lluis Sanchez Gual <lluis@novell.com>
42
43         * SoapTypeMapper.cs: Added missing maps for primitive types and
44         fixed bool conversion to string. This patch by Luke Ravitch
45         fixes bug #74295.
46
47 2005-02-10  Lluis Sanchez Gual <lluis@novell.com>
48
49         * SoapFormatter.cs: Don't store the SoapWriter in an instance field,
50         it is not needed and it is not thread safe. This fixes bug #72344.
51
52 2005-02-10  Lluis Sanchez Gual  <lluis@novell.com>
53
54         * SoapReader.cs: Don't crash if the xml has more fields than expected.
55
56 2004-09-13  Lluis Sanchez Gual <lluis@ximian.com>
57
58         * SoapReader.cs: Handle SOAP invocation without arguments in SoapReader.
59           Patch by Stefan Paletta.
60
61 2004-08-24  Lluis Sanchez Gual <lluis@ximian.com>
62
63         * SoapReader.cs: Serialize byte arrays using base64 encoding.
64           GetComponentType should always return the type if
65           specified, GetId can now be !=0 for base64 arrrays.
66         * SoapTypeMapper.cs: Register byte[] as base64 xml type.
67         * SoapWriter.cs: Handle base64 encoded byte arrays.
68
69 2004-06-10  Lluis Sanchez Gual <lluis@ximian.com>
70
71         * SoapWriter.cs: In SerializeArray, consider 1 a valid id.
72
73 2004-05-26  Lluis Sanchez Gual <lluis@ximian.com>
74
75         * SoapFormatter.cs: Added headers parameter to SoapWriter call.
76         * SoapReader.cs: Added support for deserialization of headers. Cache
77           both member indexes and member infos in the new TypeMetadata structure.
78         * SoapWriter.cs: Added support for serialization of headers.
79
80 2004-05-10  Gert Driesen (drieseng@users.sourceforge.net)
81         * SoapFormatter.cs: sealed class and added ComVisible attribute
82         to FilterLevel property to match MS.NET
83         * SoapTypeMapper.cs: fixed compiler warnings
84
85 2004-05-07  Lluis Sanchez Gual <lluis@ximian.com>
86
87         * SoapWriter.cs: Fixed string formatting.
88
89 2004-04-30  Lluis Sanchez Gual <lluis@ximian.com>
90
91         * SoapReader.cs: If the SoapMessage  instance being filled includes the
92           array of parameter types, use those to deserialize the parameter values.
93           Use the new method SoapTypeMapper.ParseXsdValue() to parse primitive values.
94         * SoapTypeMapper.cs: Added GetXsdValue and ParseXsdValue.
95         * SoapWriter.cs: Always include parameter types when serializing a message.
96           MS.NET does it.
97
98 2003-03-18 David Sheldon <dave-mono@earth.li>
99
100   * SoapTypeMapper.cs: Map object to xsd:anyType rather than 
101     SOAP-ENC:anyType so we can deserialise the objects serialised
102     by MS.NET.
103
104 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
105
106         * SoapReader.cs: Little fix.
107         * SoapWriter.cs: Use ObjectIDGenerator instead of a couple of Hashtable.
108
109 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
110
111         * SoapFormatter.cs: Added FilterLevel property.
112
113 2003-11-16  Lluis Sanchez Gual <lluis@ximian.com>
114
115         * SoapFormatter.cs: Added AssemblyFormat property.
116
117 2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>
118
119         * ObjectWriter.cs: Added FIXME
120         * SoapParser.cs: Added null reference check.
121
122 2002-08-15  Tim Coleman <tim@timcoleman.com>
123         * SoapFormatter.cs:
124                 That should be IRemotingFormatter, not IRemoteFormatter.
125                 Some stubs to make it compile on linux.
126         * TODOAttribute.cs:
127                 Added this class to this assembly.
128
129 2002-07-23  Duncan Mak  <duncan@ximian.com>
130
131         * SoapFormatter.cs: This implements IFormatter and IRemoteFormatter.