* Mono.Posix.dll.sources: Rename Mono.Posix to Mono.Unix.
[mono.git] / mcs / class / System.Runtime.Serialization.Formatters.Soap / System.Runtime.Serialization.Formatters.Soap / ChangeLog
1 2004-09-13  Lluis Sanchez Gual <lluis@ximian.com>
2
3         * SoapReader.cs: Handle SOAP invocation without arguments in SoapReader.
4           Patch by Stefan Paletta.
5
6 2004-08-24  Lluis Sanchez Gual <lluis@ximian.com>
7
8         * SoapReader.cs: Serialize byte arrays using base64 encoding.
9           GetComponentType should always return the type if
10           specified, GetId can now be !=0 for base64 arrrays.
11         * SoapTypeMapper.cs: Register byte[] as base64 xml type.
12         * SoapWriter.cs: Handle base64 encoded byte arrays.
13
14 2004-06-10  Lluis Sanchez Gual <lluis@ximian.com>
15
16         * SoapWriter.cs: In SerializeArray, consider 1 a valid id.
17
18 2004-05-26  Lluis Sanchez Gual <lluis@ximian.com>
19
20         * SoapFormatter.cs: Added headers parameter to SoapWriter call.
21         * SoapReader.cs: Added support for deserialization of headers. Cache
22           both member indexes and member infos in the new TypeMetadata structure.
23         * SoapWriter.cs: Added support for serialization of headers.
24
25 2004-05-10  Gert Driesen (drieseng@users.sourceforge.net)
26         * SoapFormatter.cs: sealed class and added ComVisible attribute
27         to FilterLevel property to match MS.NET
28         * SoapTypeMapper.cs: fixed compiler warnings
29
30 2004-05-07  Lluis Sanchez Gual <lluis@ximian.com>
31
32         * SoapWriter.cs: Fixed string formatting.
33
34 2004-04-30  Lluis Sanchez Gual <lluis@ximian.com>
35
36         * SoapReader.cs: If the SoapMessage  instance being filled includes the
37           array of parameter types, use those to deserialize the parameter values.
38           Use the new method SoapTypeMapper.ParseXsdValue() to parse primitive values.
39         * SoapTypeMapper.cs: Added GetXsdValue and ParseXsdValue.
40         * SoapWriter.cs: Always include parameter types when serializing a message.
41           MS.NET does it.
42
43 2003-03-18 David Sheldon <dave-mono@earth.li>
44
45   * SoapTypeMapper.cs: Map object to xsd:anyType rather than 
46     SOAP-ENC:anyType so we can deserialise the objects serialised
47     by MS.NET.
48
49 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
50
51         * SoapReader.cs: Little fix.
52         * SoapWriter.cs: Use ObjectIDGenerator instead of a couple of Hashtable.
53
54 2003-11-21  Lluis Sanchez Gual <lluis@ximian.com>
55
56         * SoapFormatter.cs: Added FilterLevel property.
57
58 2003-11-16  Lluis Sanchez Gual <lluis@ximian.com>
59
60         * SoapFormatter.cs: Added AssemblyFormat property.
61
62 2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>
63
64         * ObjectWriter.cs: Added FIXME
65         * SoapParser.cs: Added null reference check.
66
67 2002-08-15  Tim Coleman <tim@timcoleman.com>
68         * SoapFormatter.cs:
69                 That should be IRemotingFormatter, not IRemoteFormatter.
70                 Some stubs to make it compile on linux.
71         * TODOAttribute.cs:
72                 Added this class to this assembly.
73
74 2002-07-23  Duncan Mak  <duncan@ximian.com>
75
76         * SoapFormatter.cs: This implements IFormatter and IRemoteFormatter.