* MainsoftWebApp20.Tomcat.vmwcsproj: converted to csproj
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / ChangeLog
1 2007-02-20  Atsushi Enomoto  <atsushi@ximian.com>
2
3         * SerializationCodeGenerator.cs,
4           XmlSerializationReaderInterpreter.cs :
5           Handle attributes on non-empty elements as well. Fixed bug #80131.
6
7 2007-02-20  Atsushi Enomoto  <atsushi@ximian.com>
8
9         * SerializationCodeGenerator.cs,
10           XmlSerializationReaderInterpreter.cs :
11           Handle empty root element.
12           Read out attribute parameters. To do that, split attribute
13           reader part from ReadMembers(), as it isn't invoked when the
14           element is empty.
15
16 2007-02-19  Atsushi Enomoto  <atsushi@ximian.com>
17
18         * XmlTypeMapElementInfo.cs : set nullable if the type is Nullable<T>.
19
20 2007-02-19  Atsushi Enomoto  <atsushi@ximian.com>
21
22         * XmlReflectionImporter.cs : CanBeNull() should return true when the
23           argument is generic nullable value type.
24
25 2007-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26
27         * TypeData.cs, MapCodeGenerator.cs, XmlMemberMapping.cs,
28           TypeTranslator.cs : removed IsGenericNullable and added
29           set_IsNullable so that it could be simpler.
30
31 2007-02-19  Atsushi Enomoto  <atsushi@ximian.com>
32
33         * SerializationCodeGenerator.cs, XmlMappingAccess.cs,
34           SerializationCodeGeneratorConfiguration.cs : replaced HookDir with
35           XmlMappingAccess.
36
37 2007-02-19  Atsushi Enomoto  <atsushi@ximian.com>
38
39         * SerializationCodeGenerator.cs : hooks won't work unless they are
40           set. For WriteStartElement() it could simply embed the names.
41
42 2007-02-14  Atsushi Enomoto  <atsushi@ximian.com>
43
44         * XmlTypeMapMember.cs : don't use readonly [Foo]Specified property
45           as nil-condition member. Fixed bug #80759.
46
47 2007-02-07  Atsushi Enomoto  <atsushi@ximian.com>
48
49         * SoapReflectionImporter.cs : for primitive types, set predefined
50           namespaces, regardless of the actual specification.
51
52 2007-02-07  Atsushi Enomoto  <atsushi@ximian.com>
53
54         * XmlSerializationWriter.cs : WriteTypedPrimitive() does not support
55           XmlNode arrays.
56         * XmlSerializationWriterInterpreter.cs,
57           SerializationCodeGenerator.cs : so they have to be handled here.
58
59 2007-02-07  Atsushi Enomoto  <atsushi@ximian.com>
60
61         * XmlSerializationWriter.cs : WriteTypedPrimitive() infers the type
62           when the name is null (almost no need to do this, but it is easier
63           to remove NotWorking from extraneous tests and let them hush than
64           removing them).
65
66 2007-02-07  Atsushi Enomoto  <atsushi@ximian.com>
67
68         * XmlSerializationWriter.cs : callbacks could be kept null.
69
70 2007-01-19  Atsushi Enomoto  <atsushi@ximian.com>
71
72         * XmlMemberMapping.cs : uhoh, there is a nasty trick to output
73           Nullable info.
74
75 2007-01-18  Atsushi Enomoto  <atsushi@ximian.com>
76
77         * TypeData.cs : added get_IsGenericNullable.
78         * MapCodeGenerator.cs : in GetDomType(), return Nullable<T> when
79           the TypeData.IsGenericNullable.
80           Use GetDomType() instead of CodeTypeReference.ctor() to not lose
81           Nullable<T> info.
82         * XmlSchemaImporter.cs : added isNullable argument to GetTypeData()
83           so that it won't XmlSchemaElement.IsNillable.
84         * TypeTranslator.cs :
85           Fixed wrong TypeData modification against non-nullable stuff.
86           Added another GetTypeData() that takes isNullableRuntimeType so
87           that it won't miss XmlSchemaElement.IsNillable.
88           Added another GetPrimitiveTypeData() that takes nullable.
89
90 2007-01-15  Atsushi Enomoto  <atsushi@ximian.com>
91
92         * TypeData.cs : reject generic type definitions.
93         * TypeTranslator.cs : Make generic type names in XML compatible with
94           .net: foo_x0060_1 -> fooOfString.
95
96 2006-12-04  Atsushi Enomoto  <atsushi@ximian.com>
97
98         * SerializationCodeGenerator.cs, XmlCustomFormatter.cs :
99           GenerateToXmlString() needed hexBinary support as well. Since
100           XmlConvert.[To|From]BinHexString() are internal, use reflection.
101           Really fixed bug #79989 and #79990 for generated serializers.
102
103 2006-12-03  Gert Driesen  <drieseng@users.sourceforge.net>
104
105         * XmlSchemaExporter.cs: Emit xml name of enum-based default values.
106         Set XmlSchemaAttribute.Use to Required if no default value is defined,
107         and member is not an optional value type. Element should have minOccurs
108         1 if value type member has default value. Output flag enum type as
109         xsd list with restriction.
110         * XmlReflectionImporter.cs: Removed special casing of enums. Instead
111         of passing namespace of XmlAttribute to ImportTypeMapping, use the
112         default namespace for importing the member type.
113
114 2006-12-02  Gert Driesen  <drieseng@users.sourceforge.net>
115
116         * SerializationCodeGenerator.cs: Initialize out parameters if they
117         are value types. Fixed bug #79988.
118         * XmlSerializationReaderInterpreter.cs: Same.
119
120 2006-12-01  Atsushi Enomoto  <atsushi@ximian.com>
121
122         * XmlReflectionImporter.cs : implemented several missing check and 
123           support for XmlArrayAttribute. Fixed bug #78042.
124
125 2006-11-22  Atsushi Enomoto  <atsushi@ximian.com>
126
127         * XmlCustomFormatter.cs : handle hexBinary type. Fixed bug #79989
128           and #79990.
129
130 2006-11-22  Atsushi Enomoto  <atsushi@ximian.com>
131
132         Fixed bug #78611.
133         * TypeData.cs, TypeTranslator.cs: improved TypeData to actually store
134           "nullable" information. Introduced new primitiveNullableTypes pool
135           whose TypeData has 'true' for new IsNullable property. This
136           property is also used for non-primitive types.
137         * XmlReflectionImporter.cs : there, use TypeData.IsNullable instead
138           of IsValueType, to handle nullable types.
139
140 2006-11-20  Atsushi Enomoto  <atsushi@ximian.com>
141
142         * TypeTranslator.cs : Hari knew better way to do it.
143
144 2006-11-20  Atsushi Enomoto  <atsushi@ximian.com>
145
146         * TypeTranslator.cs : #if NET_2_0 for generic thingy.
147
148 2006-11-20  Atsushi Enomoto  <atsushi@ximian.com>
149
150         * TypeTranslator.cs : (GetTypeData) when the argument type is
151           Nullable<T>, use T instead. At run time (on both interpreter and
152           generated code) it is converted to T. Fixed bug #79803.
153
154 2006-11-17  Atsushi Enomoto  <atsushi@ximian.com>
155
156         * SerializationCodeGenerator.cs, TypeData.cs :
157           Now we differentiate TypeName, FullTypeName C# type names. It is
158           to create valid C# sources especially for generic types.
159           Fixed bug #79657.
160
161 2006-11-17  Atsushi Enomoto  <atsushi@ximian.com>
162
163         * XmlSerializationReader.cs : (ReadReferencedElement)
164           Sometimes there are array types in WSDL, which are not reflected
165           in client proxies. In SOAP messages, they are marked
166           soap-env:arrayType, so use it (this could coexist with xsi:type,
167           which indicates the type in WSDL). Fixed bug #79057.
168
169 2006-11-15  Atsushi Enomoto  <atsushi@ximian.com>
170
171         * XmlSerializationReader.cs : implement ToByteArray[Base64|Hex]().
172           removed extra ReadSerializable().
173         * XmlTypeMapping.cs : added XsdTypeName and XsdTypeNamespace.
174
175 2006-11-14  Atsushi Enomoto  <atsushi@ximian.com>
176
177         * SerializationCodeGenerator.cs,
178           SerializationCodeGeneratorConfiguration.cs :
179           make "XmlSerializerContract" and "BaseXmlSerializer" customizible.
180           (or it is impossible to use genxs more than twice in an assembly.)
181
182 2006-11-10  Atsushi Enomoto  <atsushi@ximian.com>
183
184         Fixed bug #77117.
185         * XmlReflectionImporter.cs : Compute nullable correctly. Elements are
186           nillable when its type is a reference type.
187         * XmlSchemaExporter.cs :
188           Set XmlTypeMapElementInfo.IsNullable from XmlTypeMapping.
189           Set XmlSchemaElement.IsNillable from XmlTypeMapElementInfo.
190
191 2006-11-09  Atsushi Enomoto  <atsushi@ximian.com>
192
193         * XmlSchemaImporter.cs : top-level element might also have no type
194           name specification, so just compare ElementType with anyType.
195
196 2006-11-09  Atsushi Enomoto  <atsushi@ximian.com>
197
198         * XmlSchemaImporter.cs : attributes might overlap by extending
199           base content models. Since invalid content models are rejected by
200           Compile(), simply ignore duplicating attributes. Note that it is
201           basically hack, which should not skip derived ones but use them (but
202           it is mostly harmless since the result is very unlikely to differ).
203
204 2006-11-08  Atsushi Enomoto  <atsushi@ximian.com>
205
206         * XmlSchemaImporter.cs : when top-level element is xs:anyType, all
207           complexTypes must be also imported.
208
209 2006-11-08  Atsushi Enomoto  <atsushi@ximian.com>
210
211         * XmlSchemaImporter.cs : ImportTypeMapping() raises exception when
212           the argument name is not bound to any elements.
213
214 2006-11-07  Atsushi Enomoto  <atsushi@ximian.com>
215
216         * XmlCustomFormatter.cs : consider null base64 byte array value.
217           Fixed bug #79805.
218
219 2006-11-02  Atsushi Enomoto  <atsushi@ximian.com>
220
221         * CodeIdentifier.cs : in 2.0 profile, .ctor() is exposed to
222           explicitly say Obsolete instantiation.
223         * CodeIdentifiers.cs : implemented case-insensitive mode.
224         * XmlSerializerAssemblyAttribute.cs : added missing .ctor().
225         * SoapIncludeAttribute.cs, XmlIncludeAttribute.cs :
226           in 2.0 profile it could also be applied to an interface.
227         * SoapReflectionImporter.cs,
228           XmlReflectionImporter.cs,
229           XmlMappingAccess.cs :
230           added missing ImportMembersMapping overload and moved actual
231           implementation to most lengthy-arglist one. To make it possible,
232           XmlMappingAccess is included in 1.x as internal enum.
233
234 2006-11-02  Atsushi Enomoto  <atsushi@ximian.com>
235
236         * XmlSchemaImporter.cs : initialize extensions from configuration.
237
238 2006-11-01  Atsushi Enomoto  <atsushi@ximian.com>
239
240         * SchemaImporterExtension.cs,
241           SchemaImporterExtensionCollection.cs : moved to S.X.S.Advanced.
242
243 2006-11-01  Atsushi Enomoto  <atsushi@ximian.com>
244
245         * XmlSerializationGeneratedCode.cs : removed InternalSyncObject.
246         * SerializationCodeGenerator.cs : since IXmlSerializerImplementation
247           became a class, it needs explicit "override".
248           Since InternalSyncObject is gone, it needs another lock target.
249         * IXmlSerializerImplementation.cs : removed.
250         * XmlSerializerImplementation.cs : added.
251         * XmlSerializer.cs : removed extra GenerateSerializer() overloads.
252           IXmlSerializerImplementation -> XmlSerializerImplementation.
253         * XmlSchemas.cs : removed Schemas. hacked Compile().
254           Now it implements IEnumerable<XmlSchema>.
255         * XmlSchemaEnumerator.cs : added missing type.
256
257 2006-11-01  Atsushi Enomoto  <atsushi@ximian.com>
258
259         * XmlAttributeEventArgs.cs : added ExpectedAttributes. Note that it
260           is not considered in XmlSerializationReader yet.
261         * XmlElementEventArgs.cs : added ExpectedElements. Note that it
262           is not considered in XmlSerializationReader yet.
263         * XmlSerializationReader.cs : added some overloads for 
264           UnknownElement()/-Attribute()/-Node().
265
266 2006-11-01  Atsushi Enomoto  <atsushi@ximian.com>
267
268         * CodeGenerationOptions.cs : [XmlEnum], [XmlIgnore] and
269           [Serializable].
270         * XmlSerializationCollectionFixupCallback.cs,
271           XmlNodeEventHandler.cs,
272           XmlSerializationReadCallback.cs,
273           UnreferencedObjectEventHandler.cs,
274           XmlSerializationWriteCallback.cs,
275           XmlAttributeEventHandler.cs,
276           XmlElementEventHandler.cs,
277           XmlSerializationFixupCallback.cs :
278           exclude [Serializable] in NET_2_0.
279         * XmlSerializerNamespaces.cs : removed beta-only AddInternal().
280         * XmlSerializerVersionAttribute.cs : removed [Obsolete].
281         * XmlMappingAccess.cs : it is [Flags].
282         * SchemaImporter.cs : implement Extensions.
283         * XmlAnyElementAttribute.cs,
284           XmlArrayAttribute.cs : added Order.
285           Note that it is not considered in XmlSerializer yet.
286
287 2006-10-25  Ankit Jain  <jankit@novell.com>
288
289         * SerializationCodeGenerator.cs (GenerateContract): Handle
290         'generateAsInternal' config option.
291
292 2006-10-10  Gert Driesen  <drieseng@users.sourceforge.net>
293
294         * XmlSerializer.cs: Output namespace declarations in same order as
295         MS.
296
297 2006-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
298
299         * XmlSerializer.cs: Corrected exception message when deserialization
300         fails.
301         * SerializationCodeGenerator.cs: Added support for flag enums.
302         * XmlReflectionImporter.cs: Use InvalidOperationException wrapper for
303         all exceptions that occur while reflecting member. Validate default
304         values to match MS.
305         * SoapReflectionImporter.cs: Revert small part of previous patch as
306         XmlSerializer expects enum value.
307
308 2006-10-01  Gert Driesen  <drieseng@users.sourceforge.net>
309
310         * SoapReflectionImporter.cs: To match MS.NET, let exceptions that are
311         thrown during creation of map member bubble up. Only allow
312         SoapAttribute on primitive types and enums. Obtain default value for
313         attribute members.
314
315 2006-09-20  Vladimir Krasnov  <vladimirk@mainsoft.com>
316
317         * XmlTypeAttribute.cs: added property AnonymousType for 2.0
318
319 2006-09-12  Lluis Sanchez Gual  <lluis@novell.com> 
320
321         * System.Xml.Serialization/XmlSchemaImporter.cs: Added null check.
322
323 2006-09-11  Andrew Skiba <andrews@mainsoft.com>
324
325         * XmlSchemaImporter.cs,XmlMemberMapping.cs,SchemaImporter.cs: ifdef
326         TARGET_JVM
327
328 2006-09-05  Lluis Sanchez Gual  <lluis@novell.com> 
329
330         * XmlSchemaImporter.cs: In MS.NET 2.0, simple type arrays are mapped
331         to strings. Make sure maps returned by ImportClassSimpleType are always
332         simple type maps. All this fixes bug #77585.
333
334 2006-09-05  Lluis Sanchez Gual  <lluis@novell.com>
335
336         * XmlSchemaImporter.cs: Always import simple type unions
337           as string (like MS.NET does). Fixes bug #79234.
338
339 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
340
341         * MapCodeGenerator.cs: Use assembly file version constants.
342
343 2006-07-24  Atsushi Enomoto  <atsushi@ximian.com>
344
345         * XmlMappingAccess.cs : new type in 2.0 RTM.
346         * XmlCodeExporter.cs, SoapCodeExporter.cs,
347           MapCodeGenerator.cs,
348           XmlSchemaImporter.cs, SoapSchemaImporter.cs, SchemaImporter.cs,
349           SchemaImporterExtension.cs, SchemaImporterExtensionCollection.cs,
350           XmlMemberMapping.cs, XmlSerializationReader.cs :
351           several 2.0 API fixes from betas to RTM.
352
353 2006-06-07  Lluis Sanchez Gual  <lluis@novell.com>
354
355         * XmlTypeMapMember.cs: Added GlobalIndex property.
356         * XmlTypeMapping.cs: When adding a member, initialize its GlobalIndex
357           property.
358         * SerializationCodeGenerator.cs:
359         * XmlSerializationWriterInterpreter.cs:
360         * XmlSerializationReaderInterpreter.cs: Use GlobalIndex instead of
361           Index to get/set the values from the input array, since some Index
362           values are shared between attribute and element members. Fixes
363           bug #78562.
364
365 2006-05-30  Atsushi Enomoto  <atsushi@ximian.com>
366
367         * SerializationCodeGenerator.cs,
368           XmlSerializerReaderInterpreter.cs : handle CDATA section as text
369           node. Fixed bug #78536.
370
371 2006-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
372
373         * XmlCodeExporter.cs: Added bool argument to GenerateClass and 
374         GenerateEnum methods that specifies whether we're dealing with a type
375         for a top-level element. In GenerateClass, do not always add Namespace
376         argument for XmlRootAttribute if isTopLevel is false, and do not
377         emit XmlRootAttribute if isTopLevel is false and no arguments have been
378         added.
379         * SoapCodeExporter.cs: Added bool argument to GenerateClass and
380         GenerateEnum methods.
381         * MapCodeGenerator.cs: Added bool argument to GenerateClass and 
382         GenerateEnum methods.
383
384 2006-05-03  Lluis Sanchez Gual  <lluis@novell.com>
385
386         * SerializationCodeGenerator.cs: Allow generating serializer for
387           reading an XmlElement or XmlDocument as root element.
388           Properly generate jagged array creation.
389
390 2006-04-28  Atsushi Enomoto  <atsushi@ximian.com>
391
392         * XmlSerializationWriter.cs : fix cosmetic typo (bug #78228).
393
394 2006-04-26  Gert Driesen  <drieseng@users.sourceforge.net>
395
396         * SerializationCodeGenerator.cs: For flag enums, we should split on all
397         whitespace chars instead of only on blanks.
398         * XmlTypeMapping.cs: Same. Added ToEnum method for converting from
399         constant name(s) to integral enum value.
400
401 2006-04-26  Gert Driesen  <drieseng@users.sourceforge.net>
402
403         * SoapAttributes.cs: The DefaultValueAttribute.Value should be returned
404         as SoapDefaultValue instead of the attribute itself. Fixes bug #78205.
405
406 2006-04-24  Gert Driesen  <drieseng@users.sourceforge.net>
407
408         * XmlSchemaExporter.cs: Introduce XmlSchemaObjectContainer class to
409         allow XML Schema items to be added to its parent in the same order
410         as MS.NET (schema elements before complex types, ...). 
411
412 2006-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
413
414         * XmlCodeExporter.cs: On 2.0 profile, CodeGenerationOptions defaults to
415         GenerateProperties. Use full type name for XML serialization attributes
416         instead of shortcut (without Attribute suffix). Always add Namespace
417         argument for XmlRootAttribute on classes. Added IsNullable argument for
418         XmlRootRootAttribute on classes. For attribute members, only output
419         Form argument for XmlSchemaForm.Qualified. Use MapCodeGenerator base
420         ctor that takes CodeGenerationOptions.
421         * SoapCodeExporter.cs: Use MapCodeGenerator base ctor that takes
422         CodeGenerationOptions.
423         * MapCodeGenerator.cs: Added CodeGenerationOptions to ctor. On 2.0
424         profile, emit GeneratedCodeAttribute, SerializableAttribute, 
425         DebuggerStepThroughAttribute and DesignerCategoryAttribute for classes.
426         To match MS.NET, emit attribute members before element members.
427         * XmlReflectionImporter.cs: Enums are never nullable.
428         * XmlSchemaImporter.cs: Set IsNullable on map using value of
429         XmlSchemaElement.IsNillable. Added LocateElement overload that takes
430         XmlSchemaElement.
431
432 2006-04-15  Gert Driesen  <drieseng@users.sourceforge.net>
433
434         * XmlSchemaImporter.cs: Make sure we pass TypeData for primitive types
435         to XmlReflectionImporter and SoapReflectionImporter to keep from
436         always ending up with the XSD type that directly maps to the CLR type.
437         * XmlReflectionImporter.cs: Added overloads taking TypeData instead of
438         Type. This improves performance by avoiding the use of 
439         TypeTranslator.GetTypeData for types imported from a schema and fixes
440         bug #77907.
441         * SoapReflectionImporter.cs: Same.
442
443 2006-04-11  Lluis Sanchez Gual  <lluis@novell.com>
444
445         * XmlSchemas.cs: In 1.1, don't allow adding two schemas
446         with the same namespaces. This is allowed in 2.0. Fixed
447         the Find() method to cope with this case. Based on a patch
448         by David Jung.
449
450 2006-03-22  Gert Driesen  <drieseng@users.sourceforge.net>
451
452         * XmlReflectionImporter.cs: Throw NotSupportException instead of
453         InvalidOperationException (IOE) if void is specified as type in
454         ImportTypeMapping. To match MS.NET, surround importing of type in 
455         try/catch block, and wrap any IOE in another IOE adding information 
456         on the type that was being reflected. In CreateTypeMapping, surround
457         creating of map member in try/catch block, and wrap any IOE in another
458         IOE adding information on the member that was being reflected. 
459         Modified exception message for missing enumeration value to match
460         MS.NET. In ImportTextElementInfo, throw IOE if Type is set in 
461         XmlTextAttribute, and it differs from type of reflected member when
462         schema type of member is primitive or enum. Fixed bug #77591.
463
464 2006-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
465
466         * XmlSchemaExporter.cs: Import namespace of schema generated for
467         non-xsd primitive. Do not set zero-length TargetNamespace to avoid
468         emitting empty targetNamespace attribute in generated schema.
469         * XmlReflectionImporter.cs: Use WSDL types namespace for non-xsd
470         primitives.
471
472 2006-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
473
474         * XmlTypeMapping.cs: EnumMapMember now also stores value for enums.
475         Modified EnumMapping.GetXmlName to use XmlCustomFormatter to support
476         serialization of integral value to enum constant name, and made sure
477         the exceptions we throw match those of MSFT. In EnumMapping.GetEnumName
478         throw InvalidOperationException if no matching enum constant exists.
479         In EnumMap ctor, initialize arrays holding XML names, enum names and
480         enum values.
481         * XmlSerializationReaderInterpreter.cs: Pass full type name to
482         EnumMapping.GetEnumName for construction of exception message.
483         * XmlSerializer.cs: In Deserialize, wrap InvalidOperationException
484         and InvalidCastException in another InvalidOperationException to match
485         MSFT. In Serialize, wrap InvalidOperationException, InvalidCastException
486         and the inner exception for a TargetInvocationException in an
487         InvalidOperationException to match MSFT.
488         * SerializationCodeGenerator.cs: In GenerateGetXmlEnumValue, use
489         XmlCustomFormatter.FromEnum in order to also support serialization
490         integral value to enum constant name. In 2.0 profile, throw
491         InvalidOperationException if numeric value cannot be serialized into
492         an enum constant value. In GenerateSingleEnumValue, no longer attempt
493         to parse unknown constant value but instead report it as
494         InvalidOperationException. Use string.Length instead of "" comparison
495         to check whether a string is empty. Fixed compiler warnings in 
496         generated code (possible empty statement).
497         * XmlSerializationWriterInterpreter.cs: Pass full type name to 
498         EnumMap.GetXmlName.
499         * XmlSchemaImporter.cs: Pass full type name to EnumMap.GetEnumName
500         to allow it to be used in exception messages.
501         * XmlReflectionImporter.cs: Use FieldInfo instead of MemberInfo for
502         enum fields. Use IsDefined instead of GetCustomAttributes for checking
503         if a certain attribute is defined. Use integral value of enum constant
504         in EnumMapMember ctor.
505         * SoapReflectionImporter.cs: Use FieldInfo instead of MemberInfo for
506         enum fields. Use IsDefined instead of GetCustomAttributes for checking
507         if a certain attribute is defined. Use integral value of enum constant
508         in EnumMapMember ctor.
509
510 2006-03-07  Lluis Sanchez Gual  <lluis@novell.com>
511
512         * XmlReflectionImporter.cs: Ignore the element namespace if
513           the schema form is set to Unqualified. Fixes bug #75019.
514
515 2006-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
516
517         * SerializationCodeGenerator.cs: Omit return statement in ReadObject
518         method if GenerateReadListElement returns null. Fixes bug #77588.
519
520 2006-02-21  Lluis Sanchez Gual  <lluis@novell.com> 
521
522         * XmlSerializer.cs: Fix the previous fix.
523         
524 2006-02-21  Lluis Sanchez Gual  <lluis@novell.com>
525
526         * XmlSerializer.cs: Added option to avoid falling back to the
527         interpreted serializer if the code generator fails. To be used
528         in the test suite.
529
530 2006-02-16  Gert Driesen  <drieseng@users.sourceforge.net>
531
532         * TypeData.cs: Fixed the following issues when dealing with Array
533         SchemaType:
534         - if a type implements IDictionary, throw a NotSupportedException
535         - if a type implements ICollection, then an Add method must exist
536           which takes a single argument of a type to which the listitem type 
537           is assignable (meaning a base type or an interface that it 
538           implements). If such a method does not exist, then throw an
539           InvalidOperationException.
540         - if a type implements IEnumerable, then the listitem type is 
541           determined by the type of the Current property of the (IEnumerator)
542           type returned by the GetEnumerator() method or the private 
543           implementation of IEnumerable.GetEnumerator(). If there's no 
544           public Current property on the IEnumerator, then System.Object 
545           is assumed as listitem type. Similar as for types implementing
546           ICollection, an Add method must exist which takes a single argument 
547           of a type to which the listitem type is assignable (meaning a base
548           type or an interface that it implements). If such a method does not
549           exist, then throw an InvalidOperationException.
550
551 2006-02-16  Lluis Sanchez Gual  <lluis@novell.com>
552
553         * XmlSchemaImporter.cs: Support importing complex types with
554           simple content based on enums. Fixes bug #76848.
555
556 2006-02-11  Gert Driesen  <drieseng@users.sourceforge.net>
557
558         * SoapAttributeAttribute.cs: Set eol-style to CRLF.
559         * SoapElementAttribute.cs: Same.
560         * SoapEnumAttribute.cs: Same.
561         * SoapIncludeAttribute.cs: Same.
562         * SoapSchemaMember.cs: Same.
563         * SoapTypeAttribute.cs: Same.
564         * XmlArrayAttribute.cs: Same.
565         * XmlAttributeAttribute.cs: Same.
566         * XmlChoiceIdentifierAttribute.cs: Same.
567         * XmlElementAttribute.cs: Same.
568         * XmlEnumAttribute.cs: Same.
569         * XmlRootAttribute.cs: Same.
570         * XmlSchemaImporter.cs: Same.
571         * XmlTextAttribute.cs: Same.
572         * XmlTypeAttribute.cs: Same.
573         * XmlTypeMapping.cs: Same.
574         * SoapAttributeOverrides.cs: Fixed line endings. Set eol-style to CRLF.
575         * CodeIdentifiers.cs: Same.
576         * SoapCodeExporter.cs: Same.
577         * SoapAttributes.cs: Same.
578         * SoapIgnoreAttribute.cs: Same.
579         * SoapSchemaImporter.cs: Same.
580         * TypeMember.cs: Same.
581         * UnreferencedObjectEventArgs.cs: Same.
582         * XmlAnyAttributeAttribute.cs: Same.
583         * XmlAnyElementAttributes.cs: Same.
584         * XmlArrayItemAttributes.cs: Same.
585         * XmlAttributeEventArgs.cs: Same.
586         * XmlCodeExporter.cs: Same.
587         * XmlElementAttributes.cs: Same.
588         * XmlElementEventArgs.cs: Same.
589         * XmlIgnoreAttribute.cs: Same.
590         * XmlNamespaceDeclarationsAttribute.cs: Same.
591         * XmlNodeEventArgs.cs: Same.
592         * XmlReflectionMember.cs: Same.
593         * XmlSchemas.cs: Same.
594         * XmlSerializerNamespaces.cs: Same.
595         * XmlTypeMapMemberElement.cs: Set eol-style to native.
596
597 2006-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
598
599         * CodeExporter.cs: Set eol-style to native.
600         * CodeGenerationOptions.cs: Same.
601         * CodeIdentifier.cs: Same.
602         * ImportContext.cs: Same.
603         * IXmlSerializable.cs: Same.
604         * IXmlSerializerImplementation.cs: Same.
605         * IXmlTextParser.cs: Same.
606         * MapCodeGenerator.cs: Same.
607         * ReflectionHelper.cs: Same. Fixed line endings.
608         * SchemaImporter.cs: Same.
609         * SchemaImporterExtensionCollection.cs: Same.
610         * SchemaImporterExtension.cs: Same.
611         * SchemaTypes.cs: Same.
612         * SerializationCodeGeneratorConfiguration.cs: Same.
613         * SerializationCodeGenerator.cs: Same.
614         * SerializationSource.cs: Same.
615         * SoapReflectionImporter.cs: Same.
616         * SoapSchemaExporter.cs: Same.
617         * TypeData.cs: Same.
618         * TypeTranslator.cs: Same.
619         * UnreferencedObjectEventHandler.cs: Same.
620         * XmlAnyElementAttribute.cs: Same.
621         * XmlArrayItemAttribute.cs: Same.
622         * XmlAttributeEventHandler.cs: Same.
623         * XmlAttributeOverrides.cs: Same.
624         * XmlAttributes.cs: Same.
625         * XmlDeserializationEvents.cs: Same.
626         * XmlElementEventHandler.cs: Same.
627         * XmlIncludeAttribute.cs: Same.
628         * XmlMapping.cs: Same.
629         * XmlMemberMapping.cs: Same.
630         * XmlMembersMapping.cs: Same.
631         * XmlNodeEventHandler.cs: Same.
632         * XmlReflectionImporter.cs: Same.
633         * XmlSchemaExporter.cs: Same.
634         * XmlSchemaProviderAttribute.cs: Same.
635         * XmlSerializationCollectionFixupCallback.cs: Same.
636         * XmlSerialiationFixupCallback.cs: Same.
637         * XmlSerializationGeneratedCode.cs: Same.
638         * XmlSerializationReadCallback.cs: Same.
639         * XmlSerializationReader.cs: Same.
640         * XmlSerializationReaderInterpreter.cs: Same.
641         * XmlSerializationWriteCallback.cs: Same.
642         * XmlSerializationWriterInterpreter.cs: Same.
643         * XmlSerializerAssemblyAttribute.cs: Same.
644         * XmlSerializer.cs: Same.
645         * XmlSerializerFactory.cs: Same.
646         * XmlSerializerVersionAttribute.cs: Same.
647         * XmlTypeMapElementInfo.cs: Same.
648         * XmlTypeMapMemberAttribute.cs: Same.
649         * XmlTypeMapMember.cs: Same.
650         * XmlTypeMapMemberNamespaces.cs: Same.
651
652 2006-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
653
654         * XmlTypeMapping.cs: Modified GetRealTypeMap to return current map
655         if map represents enum. Fixes bug #77501.
656
657 2006-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
658
659         * XmlSerializationWriter.cs: Implemented 2.0 version of FromEnum, and
660         CreateInvalidEnumValueException. Set eol-style to native.
661         * XmlCustomerFormatter.cs: Added FromEnum overload that takes name of
662         enum for which string value must be created. Set eol-style to native.
663         Modified FromEnum to behave more like MSFT's implementation:
664         - treat value as bit field.
665         - no longer return empty string if the value matches an id for which there's no corresponding
666         name.
667         - if one of the ids has value 0 and there's a match for the enum value
668         (with a zero length XML name) or the enum value is 0, then return the 
669         corresponding XML for the id with value 0.
670         - in 2.0 profile, throw InvalidOperationException if no match is found
671         for (part of) the enum value.
672         Modifies ToEnum to match the MSFT implementation (as described in
673         .NET 2.0 SDK):
674         - Expect hashtable containing enum names as key, and corresponding
675         integral numbers as value.
676         - Do not report exception for whitespace-only value.
677         - Support space (MS docs are not clear about this) delimited list 
678         of names.
679         - typeName is only used to construct exception message.
680
681 2006-02-09  Lluis Sanchez Gual  <lluis@novell.com>
682
683         * System.Xml.Serialization/XmlTypeMapMemberElement.cs: When
684         looking for the correct element definition for a member,
685         based on the value type, take into account subypes of the
686         declared types. Fixes bug #77447.
687
688 2006-02-07  Konstantin Triger <kostat@mainsoft.com>
689
690         * XmlReflectionImporter.cs: remove local name encoding for enums.
691
692 2006-01-08  Gert Driesen  <drieseng@users.sourceforge.net>
693
694         * XmlSchemaImporter.cs: Fixed line endings (to CRLF).
695
696 2006-01-07  Gert Driesen  <drieseng@users.sourceforge.net>
697
698         * XmlTypeMapping.cs: Fixed line endings.
699         * TypeTranslator.cs: Fixed line endings.
700
701 2005-12-07  Lluis Sanchez Gual  <lluis@novell.com>
702
703         * XmlSerializationReaderInterpreter.cs: When deserializing a "flat"
704         collection, don't create a new collection if the property already has a 
705         collection instance.
706         * SerializationCodeGenerator.cs: same as above. Also return an empty
707         string for flag enum default values.
708
709 2005-12-06  Konstantin Triger  <kostat@mainsoft.com>
710
711         * TypeTranslator.cs: TARGET_JVM: save additional types per AppDomain.
712
713 2005-12-05  Lluis Sanchez Gual  <lluis@novell.com>
714
715         * XmlSerializationReaderInterpreter.cs:
716         * SerializationCodeGenerator.cs: When deserializing a collection,
717         don't create a new collection if the property already has a 
718         collection instance. This does not apply to arrays. Changed how nullabe
719         array properties are set. Setting IsNullable=false to the property means
720         that it won't be set if the read array is null (so, if the property
721         already has a value, it will be kept).
722         Another change is that can't never be null (only arrays can).
723
724 2005-12-01  Lluis Sanchez Gual  <lluis@novell.com>
725
726         * TypeTranslator.cs: In GetTypeData, if an xmlType is specified for
727         a cli array type, consider it refering to the type of array elements.
728         This fixes bug #76860. Also added some locking.
729
730 2005-11-27   Konstantin Triger <kostat@mainsoft.com>
731
732         * TypeData.cs, XmlSchemaExporter.cs, TypeTranslator.cs: correctly
733                 export non-xsd primitive types.
734
735 2005-11-24  Vladimir Krasnov  <vladimirk@mainsoft.com>
736         
737         * XmlTypeMapping.cs: fixed GetXmlName method, added difference
738         of value serialization of flags and non-flags enums
739
740 2005-11-23  Konstantin Triger <kostat@mainsoft.com>
741
742         * XmlSchemaExporter.cs: do not import empty namespaces.
743
744 2005-11-17  Vladimir Krasnov  <vladimirk@mainsoft.com>
745         
746         * XmlSerializationReaderInterpreter.cs: fixed ReadEnumElement 
747         method, ReadEndElement should check XmlNodeType.
748         * XmlTypeMapping.cs: fixed GetXmlName method, it should not
749         write zero as default enum value.
750
751 2005-11-16  Vladimir Krasnov  <vladimirk@mainsoft.com>
752         
753         * XmlReflectionImporter.cs: fixed field order returned by 
754         reflection in method GetReflectionMembers. TARGET_JVM only.
755
756 2005-11-07  Lluis Sanchez Gual  <lluis@novell.com>
757
758         * XmlSchemaImporter.cs: Added support for restrictions with
759         embedded simple type definitions. 
760
761 2005-11-04  Atsushi Enomoto  <atsushi@ximian.com>
762
763         * XmlElementAttribute.cs : gimme Order; it fixes 100 or more
764           sys.xml.schema corcompare diffs.
765
766 2005-10-17  Lluis Sanchez Gual  <lluis@novell.com>
767
768         * SerializationCodeGenerator.cs: 
769         * XmlSerializationWriterInterpreter.cs: Arrays of XmlNode don't
770         need to be all XmlElments. Fix by Atsushi for bug #76288.
771
772 2005-09-26  Lluis Sanchez Gual  <lluis@novell.com>
773
774         * XmlTypeMapping.cs: Added ChoiceMember to ListMap.
775         In ListMap.FindElement, take into account the ChoiceMember
776         if set.
777         * SerializationCodeGenerator.cs:
778         * XmlSerializationReaderInterpreter.cs: For lists with a choice
779         member, fill the member with the corresponding enum values.
780         * XmlReflectionImporter.cs: Properly reflect the choice member
781         when applied to a list.
782         * XmlSerializationWriterInterpreter.cs: Track class changes.
783         * XmlTypeMapMemberElement.cs: Added ChoiceTypeData property.
784         All this fixes bug #76203.
785
786 2005-09-21  Lluis Sanchez Gual  <lluis@novell.com>
787
788         * SoapReflectionImporter.cs: Check the correct defaults
789         for attributes.
790
791 2005-09-21  Lluis Sanchez Gual  <lluis@novell.com>  
792
793         * SerializationSource.cs: Fix nullref.
794         * XmlReflectionImporter.cs: When registering a type using
795         IncludeType(), make sure it is added as a subtype and the
796         map for typeof(object) if it has already been imported.
797         Fixes bug #76049.
798
799 2005-09-21  Lluis Sanchez Gual  <lluis@novell.com> 
800
801         * XmlSerializationWriter.cs: Also internally serialize
802         arrays of object (see previous change).
803
804 2005-09-21  Lluis Sanchez Gual  <lluis@novell.com>
805
806         * XmlSerializationWriter.cs: Properly serialize arrays
807         of primitive types when not explicitely specified in
808         a container class. Based on a patch by Konstantin Triger.
809         Fixes bug #75986. 
810
811 2005-08-24  Lluis Sanchez Gual  <lluis@novell.com>
812
813         * TypeData.cs: Reset the hasPublicConstructor flag when the
814         type is an interface.
815         * XmlSerializationWriterInterpreter.cs: Get the Count property
816         from the object type instead of the property type (it didn't
817         work for IList). 
818         * ReflectionHelper.cs: In CheckSerializableType, don't trow
819         if the type is a collection interface. All this fixes
820         bug #75855.
821
822 2005-08-06  Lluis Sanchez Gual  <lluis@novell.com>
823
824         * XmlTypeMapping.cs: Added null check.
825
826 2005-08-05  Lluis Sanchez Gual  <lluis@novell.com>
827
828         * XmlTypeMapping.cs: Added ListMembers property that returns
829         members which are collections.
830         * SerializationCodeGenerator.cs:
831         * XmlSerializationReaderInterpreter.cs: Initialize collection
832         members to an empty collection by default. Fixes bug #75662.
833
834 2005-08-01  Gert Driesen  <drieseng@users.sourceforge.net>
835
836         * XmlMapping.cs: API compatibility fixes. Ctor is not protected
837         in .NET 1.1. SetKey is not obsolete in .NET 2.0 Beta 2.
838
839 2005-07-31  Gert Driesen  <drieseng@users.sourceforge.net>
840
841         * SoapAttributeAttribute.cs: Return zero-length string if 
842         AttributeName or DataType are null.
843         * SoapEnumAttribute.cs: Return zero-length string if Name is null.
844         * SoapIncludeAttribute.cs: Avoid using property in ctor.
845         * SoapSchemaMember.cs: Return zero-length string if MemberName is
846         null. MemberType should be XmlQualifiedName.Empty by default.
847         * SoapTypeAttribute.cs: Return zero-length string if TypeName is
848         null. Avoid using property in ctor.
849         * XmlArrayAttribute.cs: Return zero-length string if ElementName is
850         null. Avoid using property in ctor.
851         * XmlArrayItemAttribute.cs: IsNullable must be false by default.
852         Return zero-length string if DataType or ElementName are null. Avoid
853         using property in ctor.
854         * SoapElementAttribute.cs: Return zero-length string when DataType
855         or ElementName are null. Avoid using property in ctor.
856         * XmlAnyElementAttribute.cs: Return zero-length string when Name is
857         null. Avoid using property in ctor.
858         * XmlAttributeAttribute.cs: Avoid using property in ctor. Return
859         zero-length string if AttributeName or DataType are null.
860         * XmlChoiceIdentifierAttribute.cs: Return zero-length string when
861         MemberName is null.
862         * XmlElementAttribute.cs: Return zero-length string when DataType or
863         ElementName are null. Avoid using property in ctor.
864         * XmlEnumAttribute.cs: Avoid using property in ctor.
865         * XmlIncludeAttribute.cs: Avoid using property in ctor.
866         * XmlReflectionImporter.cs: AttributeName, ElementName and DataType
867         can no longer be null. Use check for zero-length string to determine
868         whether they are set. Corrected exception message when DataType is
869         set for complex type.
870         * XmlRootAttribute.cs: Return zero-length string if DataType or
871         ElementName are null. Avoid using property in ctor.
872         * XmlTextAttribute.cs: Return zero-length string if DataType is null.
873         * XmlTypeAttribute.cs: Return zero-length string if TypeName is null.
874
875 2005-07-14  Lluis Sanchez Gual  <lluis@novell.com>
876
877         * SerializationCodeGenerator.cs: In the generated serializer always
878         use the Object equality operator when comparing objects to serialize
879         to null, since those objects may have the equality operator
880         overloaded. This fixes bug #75543.
881
882 2005-07-01  Lluis Sanchez Gual  <lluis@novell.com>
883
884         * XmlCustomFormatter.cs: Properly read/write duration values.
885
886 2005-06-28  Lluis Sanchez Gual  <lluis@novell.com>
887
888         * XmlSerializer.cs: Fix race between XmlSerializer and the
889         serializer generator.
890
891 2005-06-14  Lluis Sanchez Gual  <lluis@novell.com>
892
893         * XmlTypeMapElementInfo.cs: Added new DataTypeName property for
894         getting the real xml type name of a member.
895         * XmlSerializationWriterInterpreter.cs: Use that new property
896         to get the type name of primitive types. This should fix bug #75180.
897
898 2005-06-07  Lluis Sanchez Gual  <lluis@novell.com>
899
900         * SerializationCodeGenerator.cs: When reading members by order,
901         call a MoveToContext after each member read. In the fixup method
902         don't cast returned values if it is reading an object array.
903         
904         * XmlSchemaImporter.cs: In ImportDerivedTypeMapping, if the type
905         being imported is a primitive type, create a wrapper class that
906         inherits from the provided one. This fixes bug #68809.
907         
908         * XmlSerializationReader.cs: Properly report unreferenced objects.
909         Created an overload of ReadTypedPrimitive that reports elements of
910         unknown type. Implemented Referenced(). 
911
912 2005-05-30  Lluis Sanchez Gual  <lluis@novell.com>
913
914         * XmlReflectionImporter.cs: Don't ignore type namespaces explicitely
915         set to the default namespace. This fixes bug #73035.
916
917 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
918
919         * SoapReflectionImporter.cs: In ImportTypeMap, make sure that all
920         types indirectly imported by this method use the same namespace. 
921
922 2005-05-09  Atsushi Enomoto  <atsushi@ximian.com>
923
924         * TypeTableEntry.cs : removed obsolete code.
925
926 2005-04-26  Lluis Sanchez Gual  <lluis@novell.com>
927
928         * XmlReflectionImporter.cs, SoapReflectionImporter.cs: ignore array
929         properties which are read only. Fixes bug #74723.
930
931 2005-04-14  Lluis Sanchez Gual  <lluis@novell.com>
932
933         * XmlReflectionImporter.cs:
934         * SoapReflectionImporter.cs:
935         * TypeTranslator.cs: Encode local names withXmlConvert.EncodeLocalName
936         where needed. Based on a patch by Konstantin Triger. 
937
938 2005-04-12  Lluis Sanchez Gual  <lluis@novell.com>
939
940         * XmlTypeMapping.cs: Added new XmlSerializableMapping class.
941         * XmlSchemaExporter.cs: When exporting an IXmlSerializable type,
942         export the schema that it defines. In ImportNamespace, removed
943         check for default namespace, since it may be included from a non
944         default namespace.
945         * XmlReflectionImporter.cs: Create a special map for IXmlSerializable
946         types. All this based on a patch by Konstantin Triger.
947         
948         * SerializationCodeGenerator.cs:
949         * XmlMapping.cs:
950         * XmlSerializationReaderInterpreter.cs:
951         * SoapCodeExporter.cs:
952         * XmlTypeMapMemberAttribute.cs:
953         * XmlSerializationReader.cs:
954         * XmlCodeExporter.cs: Fixed some warnings.
955
956 2005-04-10  Andrew Skiba  <andrews@mainsoft.com>
957
958         * XmlSerializer.cs: fixed a typo - wrong TARGET_JVM condition.
959
960 2005-04-03  Andrew Skiba  <andrews@mainsoft.com>
961
962         * XmlSerializer.cs: added TARGET_JVM that does not support on-the-fly
963         code generation.
964
965 2005-03-30  Lluis Sanchez Gual  <lluis@novell.com>
966
967         * SerializationCodeGenerator.cs: 
968         * XmlSerializationReaderInterpreter.cs: If the element being read is
969         bound to a choice member, set the corresponding value.
970         * XmlTypeMapMember.cs: Added helper SetValue method.
971         * XmlTypeMapElementInfo.cs: Changed the type of ChoiceValue to Object,
972         since now stores the enum value.
973         * XmlReflectionImporter.cs: Properly import choice values.
974         * XmlTypeMapMemberElement.cs: Added setter for the choice.
975
976 2005-03-29  Lluis Sanchez Gual  <lluis@novell.com>
977
978         * XmlReflectionImporter.cs: Added support for subclasses of XmlNode.
979         This fixes bug #73901 and should fix #70384.
980         * XmlSerializationReader.cs: When reading an object element, return
981         an Object instance if the element has no children. This fixes bug #73974.
982         * XmlSerializationWriter.cs: Support writing XmlNode[] as a primitive
983         type (it is written as an element with those nodes as children). 
984
985 2005-03-08  Lluis Sanchez Gual <lluis@novell.com>
986
987         * XmlSchemaImporter.cs: Support importing schemas that define
988         extra types in the standard xml schema namespace. When using encoded
989         format, support the primitive types defined by the SOAP encoding
990         namespace.
991
992 2005-03-04  Lluis Sanchez Gual <lluis@novell.com>
993
994         * ReflectionHelper.cs: Avoid endless loop.
995         * XmlSchemas.cs: Added null check. Patches from MainSoft.
996
997 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
998
999         * XmlSerializationReader.cs: After reading an href element, skip the
1000         whole element (it may not be an empty element). This fixes bug #72265.
1001
1002 2005-01-25  Lluis Sanchez Gual  <lluis@novell.com>
1003
1004         * XmlSchemaImporter.cs: When importing a default value of type enum,
1005         translate it from the schema value to the clr value.
1006
1007 2005-01-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1008
1009         * XmlSerializer.cs: only print the results if there's an error
1010         compiling.
1011
1012 2005-01-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1013
1014         * SerializationCodeGenerator.cs: don't use _config if it has not been
1015         assigned.
1016
1017 2005-01-18  Lluis Sanchez Gual  <lluis@novell.com>
1018
1019         * XmlReflectionImporter.cs: Don't check the property type if it has
1020         an [XmlIgnore] attribute. This fixes bug #71332.
1021
1022 2005-01-14  Atsushi Enomoto  <atsushi@ximian.com>
1023
1024         * SerializationCodeGenerator.cs,
1025           XmlSerializationWriterInterpreter.cs : exchanged attribute
1026           serialization orders (XmlAnyAttribute <-> XmlNamespaceDeclarations).
1027           xmlns attributes in XmlAnyAttribute are not written.
1028
1029 2005-01-12  Atsushi Enomoto  <atsushi@ximian.com>
1030
1031         * SerializationCodeGeneratorConfiguration.cs,
1032           SerializationCodeGenerator.cs : Added some generation configuration:
1033                 <generateAsInternal>
1034                         write custom reader/writer as internal classes.
1035                 <noreader>, <nowriter>
1036                         They make generation of reader and/or writer optional.
1037         * XmlSerializerNamespaces.cs :
1038           Now it uses ListDictionary instead of Hashtable.
1039         * XmlSerializationWriter.cs : entries in XmlSerializerNamespaces are
1040           written unless there is already the same prefix-ns mapping.
1041
1042 2005-01-12  Lluis Sanchez Gual  <lluis@novell.com>
1043
1044         * XmlTypeMapElementInfo.cs: Added new IndexOfElement method.
1045         * XmlSchemaImporter.cs: When importing a base type of a complex type,
1046         make sure that the base class is always imported as a class and not
1047         as an array. If it has been imported as array, import it again.
1048         This fixes bug #70839. Other minor fixes as well.
1049         * XmlSerializationWriter.cs: Fixed warning.
1050
1051 2004-12-09  Lluis Sanchez Gual  <lluis@novell.com>
1052
1053         * SerializationCodeGenerator.cs: Yet another generation fix.
1054
1055 2004-12-09  Lluis Sanchez Gual <lluis@novell.com>
1056
1057         * SerializationCodeGenerator.cs: Fixed generation of enum literals.
1058
1059 2004-12-09  Lluis Sanchez Gual  <lluis@novell.com>
1060
1061         * XmlReflectionMember.cs: Added DeclaringType member.
1062         * XmlReflectionImporter.cs: When importing fields that belong to a
1063         base class, use the xml namespace of the base map for the member.
1064         This fixes bug #70309.
1065
1066 2004-11-30  Lluis Sanchez Gual  <lluis@novell.com>
1067
1068         * XmlCodeExporter.cs, XmlSerializer.cs, XmlSchemaImporter.cs: Fixed some
1069         compilation warnings.
1070
1071 2004-11-24  Lluis Sanchez Gual  <lluis@novell.com>
1072
1073         * SerializationSource.cs: Made SerializationSource abstract, and
1074         renamed Equals to BaseEquals to avoid missing GetHashCode warning
1075         (it does not really make sense in this case).
1076         * XmlSchemaExporter.cs, SerializationCodeGenerator.cs,
1077         XmlReflectionImporter.cs, XmlSerializationWriterInterpreter.cs,
1078         XmlSerializationReader.cs: Fixed warnings.
1079
1080 2004-10-19  Atsushi Enomoto  <atsushi@ximian.com>
1081
1082         * XmlSerializationWriter.cs : When namespace is an empty string,
1083           XmlTextWriter.LookupPrefix() will raise an error. Just skip it in
1084           such case.
1085
1086 2004-10-01  Lluis Sanchez Gual  <lluis@novell.com>
1087
1088         * MapCodeGenerator.cs: When the Object type is exported, export all
1089           derived maps. This was done in IncludeMetadata, but this method is
1090           not called by the xsd tool.
1091         * XmlCodeExporter.cs: In AddMappingMetadata, only generate the root
1092           attribute for primitive types and arrays.
1093         * XmlSchemaImporter.cs: Only export all object-derived maps if the
1094           Object type is explicitly referenced by an element.
1095         * XmlSerializationWriter.cs: Minor fix.
1096
1097 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1098
1099         * CodeIdentifier.cs: MakeValid now returns "Item" for an empty string.
1100           This fixes bug #66877.
1101
1102 2004-09-21  Lluis Sanchez Gual  <lluis@novell.com>
1103
1104         * SerializationCodeGenerator.cs, XmlSerializationReaderInterpreter.cs:
1105           when reading a primitive value in encoded format using
1106           ReadReferencingElement, provide the type name and namespace
1107           since the xsi type may not be present in the xml element. This
1108           fixes bug #65929.
1109
1110 2004-09-15  Lluis Sanchez Gual  <lluis@novell.com>
1111
1112         * MapCodeGenerator.cs: Moved generation of XmlInclude attributes from
1113           ExportDerivedTypes to the new ExportDerivedTypeAttributes method.
1114         * XmlReflectionImporter.cs: In ImportClassMapping, moved the call to
1115           ImportIncludedTypes to the end, to make sure that the current map has all
1116           needed data before derived maps are constructed.
1117         * XmlSchemaExporter.cs: Generate the base class of simple types that are
1118           not primitive types. Set the correct value for IsMixed in extended types.
1119         * XmlSchemaImporter.cs: In ImportSimpleContent, take into account that
1120           the base class of a simple type doesn't need to be a xsd type.
1121           All those patches fix bug #65654.
1122
1123 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
1124
1125         * XmlSerializer.cs: When the XmlReader is created by XmlSerializer, use
1126           Normalization==true by default.
1127
1128 2004-09-02  Lluis Sanchez Gual  <lluis@novell.com>
1129
1130         * ReflectionHelper.cs, SoapReflectionImporter.cs, XmlReflectionImporter.cs: 
1131           In CheckSerializableType, add the option of ignoring types with private
1132           constructors. Some kind of lists can be deserialized
1133           even if the constructor is private. See bug #61464.
1134         * SerializationCodeGenerator.cs, XmlSerializationReaderInterpreter.cs:
1135           Before creating a list, check that it has a public constructor.
1136         * TypeData.cs: Added HasPublicConstructor property.
1137
1138 2004-09-01  Lluis Sanchez Gual  <lluis@novell.com>
1139
1140         * SerializationCodeGenerator.cs: Generate correct "HasValue" check for
1141           value list serialization.
1142         * XmlSchemaImporter.cs: Added some null checks.
1143
1144 2004-08-25  Lluis Sanchez Gual  <lluis@novell.com>
1145
1146         * SerializationCodeGenerator.cs, XmlSerializationReaderInterpreter.cs: 
1147           When deserializing an encoded method response, assign to the return value
1148           the first element of the message, whatever it is. The return type doesn't
1149           need to be Object, it seems to be true for all return types.
1150           
1151 2004-07-26  Lluis Sanchez Gual  <lluis@ximian.com>
1152
1153         * MapCodeGenerator.cs: CreateFieldMember now adds the field to the class,
1154           no need to add it after the call.
1155         * SoapSchemaImporter.cs: Implemented 2.0 constructors.
1156
1157 2004-07-23  Lluis Sanchez Gual  <lluis@novell.com>
1158
1159         * CodeGenerationOptions.cs: Made the class internal for the 1.1 profile.
1160         * ImportContext.cs: Implemented.
1161         * MapCodeGenerator.cs, SoapCodeExporter.cs, XmlCodeExporter.cs: Added new
1162           options for 2.0. Implemented support for generating properties instead of
1163           fields.
1164         * XmlSchemaImporter.cs: Added support for sharing types.
1165
1166 2004-07-15  Lluis Sanchez Gual  <lluis@novell.com>
1167
1168         * TypeTranslator.cs, XmlCustomFormatter.cs: Added support for base64. This
1169           xsd type is not part of the last schema specification, but the google api
1170           uses it and ms.net accepts it.
1171
1172 2004-07-12  Lluis Sanchez Gual  <lluis@ximian.com>
1173
1174         * ReflectionHelper.cs: Fixed bug when registering a map as exported.
1175           Thanks to Juan C. Olivares.
1176
1177 2004-07-10  Lluis Sanchez Gual  <lluis@ximian.com>
1178
1179         * CodeExporter.cs: Added private constructor.
1180         * CodeGenerationOptions.cs: Set the correct enum values.
1181         * CodeIdentifier.cs: Added private constructor.
1182         * SchemaImporter.cs: Added internal constructor.
1183         * XmlMapping.cs, XmlSerializer.cs: 2.0 api fix.
1184         * XmlMemberMapping.cs, XmlSchemaImporter.cs, XmlSerializationWriter.cs: Added 2.0 stubs.
1185         * XmlSchemaProviderAttribute.cs, XmlSerializerAssemblyAttribute.cs,
1186           XmlSerializerVersionAttribute.cs: Set correct attribute usage.
1187         * XmlSerializationReader.cs: Added missing setter for DecodeName.
1188
1189 2004-07-08  Lluis Sanchez Gual  <lluis@ximian.com>
1190
1191         * XmlSerializer.cs: Fix fix.
1192
1193 2004-07-08  Lluis Sanchez Gual  <lluis@ximian.com>
1194
1195         * IXmlSerializerImplementation.cs: Compile as internal in NET_1_1.
1196         * ReflectionHelper.cs: New method for generating map keys.
1197         * SerializationCodeGenerator.cs: Added support for generating the serializer
1198           contract class, needed for 2.0.
1199         * SerializationSource.cs: Use Type[] instead of ArrayList for storing
1200           extra types.
1201         * SoapReflectionImporter.cs, XmlReflectionImporter.cs: Assign extra types 
1202           as Type[]. Added check that makes sure that enums being serialized are
1203           public.
1204         * XmlMapping.cs: Added internal GetKey method.
1205         * XmlSerializer.cs: Added support for IXmlSerializerImplementation.
1206           Added first bits to support loading of serializers from pre-generated
1207           assemblies.
1208         * XmlSerializerFactory.cs: Mostly implemeted.
1209
1210 2004-07-02  Lluis Sanchez Gual  <lluis@ximian.com>
1211
1212         * CodeIdentifier.cs: Removed constructor for NET_2_0.
1213         * SoapCodeExporter.cs, SoapSchemaImporter.cs, XmlCodeExporter.cs, 
1214           XmlMapping.cs, XmlMemberMapping.cs, XmlReflectionImporter.cs,
1215           XmlSchemaExporter.cs, XmlSchemaImporter.cs, XmlSchemas.cs,
1216           XmlSerializationReader.cs, XmlSerializationWriter.cs, XmlSerializer.cs,
1217           XmlSerializerNamespaces.cs: Added 2.0 stubs.
1218         * XmlMembersMapping.cs, XmlTypeMapping.cs: 2.0 fixage.
1219         * IXmlTextParser.cs, CodeExporter.cs, CodeGenerationOptions.cs,
1220           ImportContext.cs, SchemaImporter.cs, SchemaImporterExtension.cs,
1221           SchemaImporterExtensionCollection.cs, XmlDeserializationEvents.cs,
1222           XmlSchemaProviderAttribute.cs, XmlSerializationGeneratedCode.cs,
1223           XmlSerializerAssemblyAttribute.cs, XmlSerializerFactory.cs,
1224           XmlSerializerVersionAttribute.cs: New files. More 2.0 stubs.
1225
1226 2004-07-02  Lluis Sanchez Gual  <lluis@ximian.com>
1227
1228         * SerializationCodeGenerator.cs: Generate check that the object being 
1229           serialized has a known type. Little cast fix.
1230         * XmlCustomFormatter.cs: Little fix in Single conversion.
1231
1232 2004-07-01  Lluis Sanchez Gual  <lluis@ximian.com>
1233
1234         * TypeData.cs: In the constructor, set the correct xml type name if the
1235           type is an array (for example, instead of StringCollection, use
1236           ArrayOfString).
1237
1238 2004-06-22  Lluis Sanchez Gual  <lluis@ximian.com>
1239
1240         * ReflectionHelper.cs: Correctly detect private types.
1241         * XmlCodeExporter.cs: Implemented missing method.
1242         * XmlSchemaImporter.cs: Allow import of root primitive types.
1243
1244 2004-06-18  Atsushi Enomoto  <atsushi@ximian.com>
1245
1246         * CodeIdentifier.cs, CodeIdentifiers.cs, MapCodeGenerator.cs,
1247           SerializationCodeGenerator.cs, SerializationSource.cs,
1248           TypeTranslator.cs, XmlAttributeOverrides.cs, XmlCustomFormatter.cs,
1249           XmlSerializationReader.cs, XmlSerializationWriter.cs,
1250           XmlSerializer.cs, XmlTypeMapMemberElement.cs, XmlTypeMapping.cs
1251           : Globalization fixes.
1252             In XmlCustomFormatter.GenerateToXmlString() time was not
1253             generated correctly.
1254             Replaced all CRLF XmlAttributeOverrides.cs into LF.
1255
1256 2004-06-13  Gert Driesen <drieseng@users.sourceforge.net>
1257
1258         * XmlSerializationWriter.cs: changed signature of protected method
1259         FromByteArrayBase64 to match MS.NET
1260
1261 2004-06-10  Lluis Sanchez Gual <lluis@ximian.com>
1262
1263         * MapCodeGenerator.cs, SoapCodeExporter.cs: Generate the same XmlInclude
1264           attributes that MS.NET generates.
1265         * SerializationCodeGenerator.cs: Avoid duplicate generation of maps in the
1266           same reader/writer.
1267         * XmlCodeExporter.cs: Added support for ignore flag in maps and members.
1268         * XmlReflectionImporter.cs: Changed GetReflectionMembers to match
1269           MS.NET member ordering. Patch by David Taylor.
1270         * XmlSchemaImporter.cs: When generating a choice member, set the ignore
1271           flag. The generated enum must also not be included in the schema.
1272         * XmlTypeMapMember.cs: Added ignore flag.
1273         * XmlTypeMapping.cs: The AttributeMembers property now returns the 
1274           attributes in the correct order.
1275
1276 2004-06-03  Gert Driesen <drieseng@users.sourceforge.net>
1277
1278         * XmlSerializationReader.cs: added missing protected members
1279         to fix API compatibility with MS.NET
1280         * XmlSerializationWriter.cs: added missing protected members
1281         to fix API compatibility with MS.NET
1282
1283 2004-06-02  Lluis Sanchez Gual <lluis@ximian.com>
1284
1285         * XmlSerializationReader.cs: Support schamea instance namespaces other than
1286           the 2001 one when reading the xsi type.
1287         * MapCodeGenerator.cs: Take into account that the root namespace and element
1288           name may have changed from one export to another of the same type. In
1289           this case the class attributes need to be regenerated.
1290         * SoapCodeExporter.cs, XmlCodeExporter.cs: Take the enum name from XmlType,
1291           not ElementName. Idem for namespace.
1292         * XmlReflectionImporter.cs: Set nullable property of XmlTypeMapping.
1293         * XmlRootAttribute.cs: Default value for nullable is true.
1294         * XmlSchemaImporter.cs: The root name for a class may change in some
1295           scenarios (for example, when the type is initially exported as part of
1296           another type and later exported as a root type).
1297         * XmlSerializationReader.cs: In GetXsiType(), if the type attribute is not
1298           found using the standard namespace, try getting the type using
1299           the 2000/10 and 1999 namespaces.
1300         * XmlTypeMapping.cs: Added IsNullable property. Updated SetRoot method ;-)
1301
1302 2004-05-26  Lluis Sanchez Gual <lluis@ximian.com>
1303
1304         * SerializationCodeGenerator.cs, XmlSerializationReaderInterpreter.cs:
1305           In encoded format, primitive types can be null. Read them using
1306           ReadReferencingElement, that already checks for the null tag.
1307
1308 2004-05-25  Lluis Sanchez Gual <lluis@ximian.com>
1309
1310         * XmlSerializationReader.cs: Check for empty element when reading an array
1311           element. This fixes bug #59003. Thanks Atsushi!
1312
1313 2004-05-07  Lluis Sanchez Gual <lluis@ximian.com>
1314
1315         * XmlSerializationWriter.cs: Implemented some missing methods.
1316           In .NET 1.0, encoded null elements use the attribute null="1", while in
1317           1.1 the attribute is nil="true".
1318         * XmlTypeMapping.cs: Little fix for nested classes.
1319
1320 2004-05-07  Lluis Sanchez Gual <lluis@ximian.com>
1321
1322         * XmlReflectionImporter.cs: Don't reset the internal tables at every
1323           ImportMembersMapping call. This fixes bug #58112. The problem is that
1324           it imported two different arrays (only different in the array item
1325           namespace) with the same name. Not sure what was this Reset needed for,
1326           everyting seems to work without it.
1327
1328 2004-05-05  Lluis Sanchez Gual <lluis@ximian.com>
1329
1330         * SerializationCodeGenerator.cs, XmlSerializationReaderInterpreter.cs: 
1331           When deserializing an encoded method response, if the return type of the
1332           method is Object, assign to it the first element of the message, whatever
1333           it is.
1334         * XmlSerializationReader.cs: 
1335         * SoapReflectionImporter.cs, XmlReflectionImporter.cs: Set IsReturnValue of
1336           the imported member.
1337         * TypeTranslator.cs: Added method to safely get a primitive TypeData.
1338         * XmlSerializationReader.cs: Don't throw an exception when the CLR type for
1339           a given xsi type is not found. Just read it as primitive type.
1340         * XmlTypeMapMember.cs: Added IsReturnValue property.
1341         * XmlTypeMapping.cs: Added ReturnMember property.
1342         * XmlSerializer.cs: Reference System.Data when compiling the serializer.
1343
1344 2004-05-05  Lluis Sanchez Gual <lluis@ximian.com>
1345
1346         * SerializationCodeGenerator.cs, XmlSerializationReaderInterpreter.cs: 
1347           When reading an object using the typeof(object) map, an emty xsi:type 
1348           means that it has to read the contents into an XmlNode[].
1349         * TypeData.cs: Return the correct full name for inner classes.
1350         * XmlSchemaImporter.cs: Improved detection of types that represent 
1351           "anyType", and must be mapped to XmlElement, XmlNode or Object.
1352         * XmlSerializationReader.cs: In GetXsiType(), find the type attribute using
1353           the correct namespace.
1354           In ReadTypedPrimitive(), read the element as XmlNode[] if the type is
1355           not known.
1356
1357 2004-05-05  Atsushi Enomoto  <atsushi@ximian.com>
1358
1359         * XmlSerializationWriter.cs : It do not have to handle schema
1360           namespace as special one.
1361
1362 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
1363
1364         * XmlSerializationReaderInterpreter.cs: Removed the check for null 
1365           AttributeMembers collection. Even if there are no attribute members,
1366           attributes need to be read.
1367
1368 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
1369
1370         * XmlSerializationReader.cs: In ReadSerializable(), take into account that
1371           the IXmlSerializable object may not read all the EndElement it read.
1372           This fixes bug #57413.
1373
1374 2004-05-03  Lluis Sanchez Gual <lluis@ximian.com>
1375
1376         * XmlSerializer.cs: Enable serializer generation by default.
1377
1378 2004-04-20  Lluis Sanchez Gual <lluis@ximian.com>
1379
1380         * TypeTranslator.cs: Mapped again anyUri, but now it is mapped to String.
1381         * XmlSchemaImporter.cs: If a map was initially imported as a class, but it
1382           turns out that it is an array, import it again as array. This fixes
1383           bug #57133.
1384
1385 2004-04-15  Lluis Sanchez Gual <lluis@ximian.com>
1386
1387         * XmlSchemaExporter.cs: When checking if a map has been exported or not,
1388           don't use type name for array types, since we can have different classes 
1389           that represent the same array type (for example StringCollection and 
1390           string[]).
1391
1392 2004-04-14  Lluis Sanchez Gual <lluis@ximian.com>
1393
1394         * TypeTranslator.cs, XmlCustomFormatter.cs: Removed map from Uri to anyUri,
1395           not present in MS.NET.
1396         * XmlSerializationWriter.cs: Improved error message.
1397
1398 2004-03-30  Lluis Sanchez Gual <lluis@ximian.com>
1399
1400         * SerializationCodeGenerator.cs, XmlReflectionImporter.cs, 
1401           XmlSerializationReader.cs, XmlSerializationReaderInterpreter.cs:
1402           Support deserialization of members of type XmlDocument. This fixes #56169.
1403
1404 2004-03-25  Lluis Sanchez Gual <lluis@ximian.com>
1405
1406         * SerializationCodeGenerator.cs: Generate an integer for unknown enum values.
1407           Use a special method to generate default values, since default enum values
1408           will come as integers, so a special cast is needed.
1409         * XmlSerializationReaderInterpreter.cs,
1410         * SerializationSource.cs, SoapAttributeAttribute.cs, SoapAttributeOverrides.cs,
1411           SoapAttributes.cs, SoapElementAttribute.cs, SoapEnumAttribute.cs, 
1412           SoapTypeAttribute.cs, XmlAnyElementAttribute.cs, XmlAnyElementAttributes.cs,
1413           XmlArrayAttribute.cs, XmlArrayItemAttribute.cs, XmlArrayItemAttributes.cs, 
1414           XmlAttributeAttribute.cs, XmlAttributeOverrides.cs, XmlAttributes.cs,
1415           XmlChoiceIdentifierAttribute.cs, XmlElementAttribute.cs, XmlElementAttributes.cs,
1416           XmlEnumAttribute.cs, XmlReflectionMember.cs, XmlRootAttribute.cs,
1417           XmlTextAttribute.cs, XmlTypeAttribute.cs: Had to change the implementation
1418           of SerializationSource. It can't keep and use the XmlAttributeOverride
1419           instances as key values, since those instances can be modified after the
1420           xml map has been generated. Now, SerializationSource generates a unique 
1421           string hash from XmlAttributeOverride and uses it for comparisons.
1422
1423 2004-03-24  Lluis Sanchez Gual <lluis@ximian.com>
1424
1425         * SerializationCodeGenerator.cs: Several fixes: generate valid names for 
1426           WriteRoot_ and ReadRoot_ methods. Cast result of ReadTypedPrimitive to
1427           the adequate type. Set the default value of members that do have a default
1428           value. Other minor fixes.
1429         * SoapReflectionImporter.cs, XmlReflectionImporter.cs: All maps must derive
1430           from typeof(object) map, even those that have another base class.
1431         * XmlCustomFormatter.cs: Fixed generation of conversion from char to string.
1432           It must serialize the char as number, not as character.
1433         * XmlSerializationReaderInterpreter.cs: Set the default value of members 
1434           that do have a default value.
1435         * XmlTypeMapping.cs: Added property MembersWithDefault, which returns a list
1436           of members that have a default value.
1437
1438 2004-03-15  Lluis Sanchez Gual  <lluis@ximian.com>
1439
1440         * XmlSchemaImporter.cs: Import IXmlSerializable types as DataSet, like in MS.NET.
1441           This fixes bug #55547.
1442
1443 2004-03-13  David Sheldon <dave-mono@earth.li>
1444
1445   * XmlSerializationWriter.cs: Implement WriteElementStringRaw with a
1446    byte [].
1447
1448 2004-03-13  David Sheldon <dave-mono@earth.li>
1449  
1450   * XmlTextAttribute.cs: Initialise dataType with zero-length string. 
1451    fixes test case that tests for this directly.
1452   * TypeTranslator.cs: Check for new zero-length dataType so we don't reject
1453    it. Treat it as null.
1454    
1455 2004-03-12  Lluis Sanchez Gual  <lluis@ximian.com>
1456
1457         * CodeIdentifier.cs: Limit the length of identifiers.
1458         * MapCodeGenerator.cs: Do not generate base class if it is an XmlNode.
1459           Generate types using GetDomType, so if the type is an array, it creates
1460           the correct combination of types.
1461         * SerializationCodeGenerator.cs, XmlTypeMapping.cs: When trying to parse
1462           an enum, if the string is empty and the enum has [Flags], then return 0
1463           as value. This fixes bug #55509.
1464         * XmlSchemaImporter.cs: Added check for redefines of attribute groups. They
1465           are not supported. Another check: a simple type cannot be enum if it does
1466           not have any enum facet.
1467           And another fix: use string as default type for attribtues.
1468         * XmlSchemas.cs: Fixed search for schema elements. An schema may import 
1469           other schemas. An imported schema would not be in the table, but its
1470           elements (although from another namespace) would be in the schema that 
1471           imported it. So, we need know to check for every schema in the table.
1472         * XmlSerializer.cs: Added environment variable to help debugging code 
1473           generator output.
1474
1475 2004-02-27  Lluis Sanchez Gual  <lluis@ximian.com>
1476
1477         * MapCodeGenerator.cs: Added IncludeMetadata property, which returns a list
1478           of XmlInclude attributes needed for the service class.
1479           IsMapExported: Removed check for object type, since it can now be exported.
1480           SetMapExported: Use the type name as key, since different importers may
1481           be used to create a map for the same type.
1482           GenerateClassInclude: Updated signature.
1483         * SoapCodeExporter.cs: Moved management of IncludeMetadata to MapCodeGenerator.
1484           GenerateClassInclude(): Updated signature.
1485         * SoapReflectionImporter.cs: Support SoapIncludeAttribute in array members.
1486           Implemented IncludeTypes.
1487         * XmlCodeExporter.cs: Moved management of IncludeMetadata to MapCodeGenerator.
1488           GenerateClassInclude(): Updated signature.
1489         * XmlMemberMapping.cs: Added missing property.
1490         * XmlReflectionImporter.cs: GetReflectionMembers must be private.
1491           Implemented IncludeTypes().
1492         * XmlSchemaExporter.cs: Added support for exporting typeof(object).
1493         * XmlSchemaImporter.cs: Changed the implementation of ImportDerivedTypeMapping.
1494           Now, it does a regular import and then assign the required base class to
1495           the imported map. In this way it is possible to assign a base type for a 
1496           map that was previously imported without a base type.
1497         * XmlTypeMapping.cs: Added internal method SetRoot().
1498
1499 2004-02-24  Lluis Sanchez Gual  <lluis@ximian.com>
1500
1501         * SerializationCodeGenerator.cs: Added support for generation of readers
1502           and writers for several maps in a single class. Added support for
1503           XmlMemberMapping. Fixed generation of serializers that use encoded format.
1504         * SoapAttributeAttribute.cs, SoapAttributeOverrides.cs, SoapAttributes.cs,
1505           SoapElementAttribute.cs, SoapEnumAttribute.cs, SoapTypeAttribute.cs, 
1506           XmlAnyElementAttribute.cs, XmlAnyElementAttributes.cs, XmlArrayAttribute.cs,
1507           XmlArrayItemAttribute.cs, XmlArrayItemAttributes.cs, XmlAttributeAttribute.cs,
1508           XmlAttributeOverrides.cs, XmlChoiceIdentifierAttribute.cs, XmlRootAttribute.cs,
1509           XmlElementAttribute.cs, XmlElementAttributes.cs, XmlEnumAttribute.cs,
1510           XmlReflectionMember.cs, XmlTextAttribute.cs, XmlTypeAttribute.cs:
1511           Added InternalEquals method.
1512         * XmlAttributes.cs: Removed a lot of unused code. Added InternalEquals method.
1513         * SoapReflectionImporter.cs: Set SerializationSource to generated maps.
1514         * XmlCustomFormatter.cs: Fixed little bug.
1515         * XmlMapping.cs: Added Source property. This a global identifier of the map.
1516         * XmlReflectionImporter.cs: Set SerializationSource to generated maps.
1517         * XmlSchemaImporter.cs: Set the correct value for IsNillable when importing
1518           mapping members.
1519         * XmlSerializationReaderInterpreter.cs, XmlSerializationWriter.cs: Minor fixes.
1520         * XmlSerializationWriterInterpreter.cs: WriteObject and WriteEnum were not
1521           correctly used.
1522         * XmlSerializer.cs: Added support for generation of serializers.
1523
1524 2004-02-18  Atsushi Enomoto  <atsushi@ximian.com>
1525
1526         * SerializationCodeGenerator.cs,
1527           SerializationCodeGeneratorConfiguration.cs:
1528           Added <namespaceImports> feature ("using XXX;" generation) support.
1529
1530 2004-02-17  Lluis Sanchez Gual  <lluis@ximian.com>
1531
1532         * XmlSerializationWriter.cs: When writing the root element, use a prefix
1533           if the namespace of the element is defined in the list of namespaces
1534           provided to the XmlSerializer. This fixes bug #54427.
1535
1536 2004-02-16  Lluis Sanchez Gual  <lluis@ximian.com>
1537
1538         * MapCodeGenerator.cs: Modified some methods to make them easier to reuse.
1539           Those are basically methods to add custom attributes to element and
1540           attribute members.
1541         * SoapCodeExporter.cs: Track changes in MapCodeGenerator.
1542         * XmlCodeExporter.cs: Better support for custom attribute generation for
1543           method parameters.
1544         * XmlCustomFormatter.cs: Added null check.
1545         * XmlSchemaImporter.cs: do not set IsOptionalValueType property to 
1546           attributes that are required.
1547         * XmlSerializationReaderInterpreter.cs: Method parameters may be serialized
1548           as attributes.
1549
1550 2004-02-11  Lluis Sanchez Gual  <lluis@ximian.com>
1551
1552         * MapCodeGenerator.cs: Changed some methods to make them easier to reuse.
1553         * TypeTranslator.cs: NMTOKENS, ENTITIES and IDREFS must be mapped to
1554           string, not string[].
1555         * XmlCodeExporter.cs: AddMappingMetadata(): improved attribute generation
1556           for array parameters. In general, improved generation of schema Form 
1557           property.
1558         * XmlMemberMapping.cs: Added Form property.
1559         * XmlReflectionImporter.cs: Types that inherit from other types cannot be
1560           simple types. Added a check for this.
1561         * XmlSchemaExporter.cs: several fixes: better generation of IsMixed and
1562           Form. The key used to determine if a map has been already generated must
1563           include the XmlType, since there can be two xml types with the same CLR
1564           type and namespace (for example, they may differ in the Form property).
1565         * XmlSchemaImporter.cs: When getting the TypeData for a schema element,
1566           also return the corresponding map. There can be two maps that have the
1567           same TypeData, so given a TypeData is not always possible to get the
1568           correct corresponding map (for example two arrays that only differ in the
1569           Form of the item).
1570         * XmlTypeMapping.cs: Added method to set if a map can represent a simple
1571           type or not.
1572
1573 2004-02-04  Lluis Sanchez Gual  <lluis@ximian.com>
1574
1575         * TypeTranslator.cs, XmlCustomFormatter.cs: Added support for the
1576           normalizedString schema type.
1577
1578 2004-02-04  Lluis Sanchez Gual  <lluis@ximian.com>
1579
1580         * XmlReflectionImporter.cs: Get the class members using the right order.
1581         * XmlSerializationWriterInterpreter.cs: Removed unneeded code.
1582           A member with the Any attribute can also contain text. Support this.
1583         * XmlTypeMapMemberElement.cs: Added CanBeText property.
1584
1585 2004-01-27  Lluis Sanchez Gual  <lluis@ximian.com>
1586
1587         * XmlSchemaImporter.cs: Redefinition of types are not supported. Added a
1588           check.
1589
1590 2004-01-27  Lluis Sanchez Gual  <lluis@ximian.com>
1591
1592         * MapCodeGenerator.cs: Added helper method for generating an attribute
1593           parameter of type enum.
1594         * XmlAttributeAttribute.cs: little fix.
1595         * XmlCodeExporter.cs: Support XmlAnyAttribute when generating attributes
1596           for method parameters.
1597         * XmlMemberMapping.cs: Improved support for members of type "any".
1598         * XmlReflectionImporter.cs: Improved assignment of the attribute form.
1599           If the namespace is explicitly specified, then the form should be
1600           qualified. Also fixed issues with the namespace assigned to attributes.
1601           This should fix bug #53384.
1602         * XmlSchemaExporter.cs: ExportMembersMapping(): improved support for
1603           methods that return values of type "any". Changed the methods
1604           AddSchemaArrayElement and AddSchemaElement, so instead of adding the
1605           element, return it, and the caller must add it to the collection.
1606           Other fixes in attribute generation.
1607         * XmlSchemaImporter.cs: ImportAnyType(): if a type name is provided,
1608           generate the AnyType mapping from the type described in the schema.
1609           Small fixes regarding IsMixed property of complex types (it means that
1610           the type can contain text, so the XmlTextAttribute must be generated).
1611         * XmlSerializationReaderInterpreter.cs: Reading of members by-order must
1612           be only used in the bare+encoded format.
1613
1614 2004-01-24  Lluis Sanchez Gual  <lluis@ximian.com>
1615
1616         * SoapReflectionImporter.cs: Types included with SoapInclude don't need
1617           to be derived types of the one that has the attribute.
1618         * XmlReflectionImporter.cs: Recursively register the derived maps of a given
1619           map to the parent map. This fixes #53246.
1620         * XmlSerializationWriter.cs: Some fixes regarding empty namespaces.
1621
1622 2004-01-22  Lluis Sanchez Gual  <lluis@ximian.com>
1623
1624         * XmlSerializationReaderInterpreter.cs: When deserializing an XmlElement,
1625           do not check the root element name, since it can be any name. This fixes
1626           bug #53201.
1627
1628 2004-01-20  Lluis Sanchez Gual  <lluis@ximian.com>
1629
1630         * XmlReflectionImporter.cs: Throw exception if a value type member has the
1631           IsNullable=true flag. This fixes bug #52906.
1632
1633 2004-01-20  Lluis Sanchez Gual  <lluis@ximian.com>
1634
1635         * MapCodeGenerator.cs, XmlSchemaImporter.cs: Attributes are allways optional,
1636           so a 'specified' member has always to be generated.
1637         * TypeData.cs: Fixed check for value type.
1638
1639 2004-01-20  Lluis Sanchez Gual  <lluis@ximian.com>
1640
1641         * XmlSerializationReaderInterpreter.cs, XmlSerializationWriterInterpreter.cs,
1642           XmlTypeMapMember.cs, MapCodeGenerator.cs, SoapCodeExporter.cs, TypeData.cs,
1643           XmlCodeExporter.cs, XmlReflectionImporter.cs, XmlSchemaExporter.cs,
1644           XmlSchemaImporter.cs, XmlSerializationReaderInterpreter.cs,
1645           XmlSerializationWriterInterpreter.cs, XmlTypeMapMember.cs:
1646           Added support for value specifiers members. This fixes bug #53024.
1647
1648 2004-01-20  Lluis Sanchez Gual  <lluis@ximian.com>
1649
1650         * XmlSchemaExporter.cs: Don't create referenced element if it has already
1651           been created (two types could be referencing the same schema element).
1652
1653 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
1654
1655         * XmlReflectionImporter.cs: Read IsNullable flag from XmlArrayAttribute.
1656         * XmlSerializationWriterInterpreter.cs: Interpret IsNullable flag for
1657           arrays. This fixes bug #53018.
1658
1659 2004-01-14  Lluis Sanchez Gual  <lluis@ximian.com>
1660
1661         * MapCodeGenerator.cs: Use type namespace instead of root namespace as
1662           default namespace for members.
1663         * XmlCodeExporter.cs: Fixed generation of XmlRootAttribute.
1664         * XmlReflectionImporter.cs: Fixed the assignment of root and type 
1665           namespaces.
1666         * XmlSchemaExporter.cs: Use type namespace instead of root namespace as
1667           default namespace for members. In AddSchemaElement, if the element is
1668           a root element never use a "ref" attribute.
1669         * XmlSchemaImporter.cs: Fixed issue when importing root elements.
1670
1671 2004-01-13  Lluis Sanchez Gual  <lluis@ximian.com>
1672
1673         * XmlReflectionImporter.cs, XmlSerializationWriterInterpreter.cs
1674         XmlTypeMapping.cs: more namespace fixes.
1675
1676 2004-01-13  Lluis Sanchez Gual  <lluis@ximian.com>
1677
1678         * XmlReflectionImporter.cs: type namespace must never be used as root
1679           namespace. This fixes bug #52772.
1680
1681 2004-01-08  Nick Drochak <ndrochak@ieee.org>
1682
1683         * XmlSchemaImporter.cs: Removed unused variable.
1684
1685 2004-01-07  Lluis Sanchez Gual  <lluis@ximian.com>
1686
1687         * XmlReflectionImporter.cs: Ignore Namespace property when applying
1688           the [XmlType] attribute to an enum. This fixes bug #52607.
1689
1690 2003-12-19  Lluis Sanchez Gual  <lluis@ximian.com>
1691
1692         * SerializationCodeGenerator.cs, XmlReflectionImporter.cs: Added internal
1693         option that allow serialization of private types.
1694         
1695 2003-12-18 Eran Domb <erand@mainsoft.com>
1696         
1697         * TypeTranslator.cs : Change primtive types map.
1698
1699 2003-12-18 Eran Domb <erand@mainsoft.com>
1700         
1701         * XmlReflectionImporter.cs (ImportListMapping): Adding the included types of the list as a derived
1702         classes of object.
1703
1704 2003-12-15  Lluis Sanchez Gual <lluis@ximian.com>
1705
1706         * XmlSchemaExporter.cs: AddSchemaElement, use XmlTypeMapElementInfo.IsPrimitive
1707           to check if a type is primitive, instead of Type.IsPrimitive, since CLR
1708           primitive types are not the same as XML primitive types. Patch proposed
1709           by Mordechai Taitelman. This fixes bug #52228.
1710         * XmlSerializationWriter.cs: Fixes in WriteNullTagEncoded and WriteNullTagLiteral.
1711
1712 2003-12-15  Lluis Sanchez Gual <lluis@ximian.com>
1713         
1714         * XmlReflectionImporter.cs: Little fix.
1715         
1716 2003-12-15  Lluis Sanchez Gual <lluis@ximian.com>
1717         
1718         * XmlReflectionImporter.cs: Type specified with XmlIncludeAttribute don't
1719           need to be derived types of the includer. This fixes bug #52152.
1720           Added null check for Name property of XmlEnumAttribute. This fixes
1721           bug #52155.
1722         * XmlSerializationReader.cs: Fixed some error messages.
1723         * XmlSerializationReaderInterpreter.cs: Check that the root element has
1724           the correct local name and namespace. This fixes bug #52038.
1725           Throw exception if enum value can't be parsed.
1726         * XmlTypeMapping.cs: Don't try to parse numeric enum values. This fixes
1727           bug #52041.
1728         
1729 2003-12-12  Lluis Sanchez Gual <lluis@ximian.com>
1730         
1731         * MapCodeGenerator.cs: Added support for [Flags] enum.
1732         * XmlCodeExporter.cs: Do not add XmlElement attributes if the member is Any.
1733         * XmlSchemaImporter.cs: Implemented ImportAnyType(). Improved import of
1734           encoded array type. Added support for enums with [Flags].
1735           In encoded format, unqualified types are schema types by default.
1736         
1737 2003-12-11  Lluis Sanchez Gual <lluis@ximian.com>
1738         
1739         * XmlCodeExporter.cs: Little fix.
1740         * XmlSchemaExporter.cs: In rpc format, make sure that parameters with the
1741           same name have the same type.
1742         * XmlSchemaImporter.cs: Support xml:lang.
1743         * XmlSerializationReader.cs, XmlSerializationWriterInterpreter.cs: 
1744           fixed wrong namespace for the arrayType attribute.
1745
1746 2003-12-08  Lluis Sanchez Gual <lluis@ximian.com>
1747
1748         * SoapReflectionImporter.cs, XmlMembersMapping.cs, XmlReflectionImporter.cs,
1749           XmlSchemaImporter.cs, XmlTypeMapElementInfo.cs, XmlTypeMapping.cs:
1750           When using rpc format on a web service, members don't need to have any
1751           specific namespace. Added a flag for turning namespace check on/off.
1752
1753 2003-11-27  Lluis Sanchez Gual <lluis@ximian.com>
1754
1755         * XmlSerializationReader.cs: Generate identifiers for arrays user a counter.
1756           delayedListFixups.Count cannot be used because elementes from
1757           delayedListFixups are deleted sometimes.
1758         
1759 2003-11-27  Lluis Sanchez Gual <lluis@ximian.com>
1760
1761         * XmlReflectionImporter.cs: Indexer properties must not be serialized.
1762           This fixes bug #51060.
1763
1764 2003-11-24  Lluis Sanchez Gual <lluis@ximian.com>
1765
1766         * XmlSerializationWriterInterpreter.cs: Applied patch by Eran Domb: 
1767           If type is Enum the code use type.GetElememtType() instead of 
1768           Enum.GetUnderlyingType().
1769
1770 2003-11-12  Lluis Sanchez Gual <lluis@ximian.com>
1771
1772         * XmlSerializationReader.cs, XmlSerializationWriter.cs, XmlSerializer.cs:
1773           Removed several TODOs already done.
1774
1775 2003-11-03  Lluis Sanchez Gual <lluis@ximian.com>
1776
1777         * XmlCustomFormatter.cs: Added support for anyUri type. This fixes
1778           bug #50041.
1779
1780 2003-10-20  Lluis Sanchez Gual <lluis@ximian.com>
1781
1782         * ReflectionHelper.cs: In CheckSerializableType() check that the type
1783           is public.
1784         * XmlSerializationWriter.cs: Added check for circular references.
1785           This fixes bug #49879.
1786
1787 2003-10-20  Lluis Sanchez Gual <lluis@ximian.com>
1788
1789         * ReflectionHelper.cs: Added check in CheckSerializableType(). Interfaces
1790           can't be serialized. This fixes bug #49878.
1791         * TypeData.cs: In ListItemType check that the collection has a valid
1792           Add method and report an error if not.
1793         * XmlReflectionImporter.cs: Added CheckSerializableType check call when
1794           reflecting a collection.
1795
1796 2003-10-18  Lluis Sanchez Gual <lluis@ximian.com>
1797
1798         * SoapReflectionImporter.cs: Support element references for enum values in
1799           encoding format. This fixes bug #49568.
1800         * XmlSerializationReaderInterpreter.cs: In encoded format, do not check
1801           the name and namespace of the wrapper element. MS.NET doesn't do it.
1802           This fixes bug #49729.
1803
1804 2003-10-15  Lluis Sanchez Gual <lluis@ximian.com>
1805
1806         * MapCodeGenerator.cs: Made MapCodeGenerator internal.
1807
1808 2003-10-15  Lluis Sanchez Gual <lluis@ximian.com>
1809
1810         * MapCodeGenerator.cs: New file. Moved here all code that is common
1811           between XmlCodeExporter and SoapCodeExporter.
1812         * SoapCodeExporter.cs: Implemented.
1813         * XmlCodeExporter.cs: Moved common code to MapCodeGenerator.
1814         * XmlSerializationReaderInterpreter.cs: Fixed problem when reading
1815           encoded bare parameter list.
1816         * XmlTypeMapping.cs: Added method for getting member element by index.
1817
1818 2003-10-14  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
1819
1820         * XmlSchemas.cs : Implemented IsDataSet().
1821
1822 2003-10-13  Lluis Sanchez Gual <lluis@ximian.com>
1823
1824         * SoapCodeExporter.cs: Initial implementation of AddMappingMetadata().
1825         * SoapReflectionImporter.cs, XmlReflectionImporter.cs, XmlSchemaImporter.cs: 
1826           in ImportMembersMapping, set pass the namespace to each XmlMemberMapping.
1827         * SoapSchemaExporter.cs: Some fixes in ExportMembersMapping.
1828         * XmlMemberMapping.cs: Fixed constructor. Now it takes the default namespace
1829           and whether it uses encoded or literal format.
1830         * XmlSchemaExporter.cs: Little fixes.
1831
1832 2003-10-10  Lluis Sanchez Gual <lluis@ximian.com>
1833
1834         * XmlSerializationReader.cs. Fixed bug #49510. An array element doesn't
1835           need to be of type SOAP-ENC:Array, it can be a restriction of it.
1836
1837 2003-10-10  Lluis Sanchez Gual <lluis@ximian.com>
1838
1839         * SoapReflectionImporter.cs, XmlReflectionImporter.cs: Fixed bug #49476.
1840           Read only properties are only serialized if the type is an array.
1841
1842 2003-10-09  Lluis Sanchez Gual <lluis@ximian.com>
1843
1844         * SoapReflectionImporter.cs, XmlReflectionImporter.cs, 
1845           SoapReflectionImporter.cs: Fixed bug #94694. Check for public constructor
1846           is not needed for value types.
1847
1848 2003-10-08  Lluis Sanchez Gual <lluis@ximian.com>
1849
1850         * XmlSerializer.cs, XmlSerializationWriter.cs: Fixed bug #49353
1851           (XmlSerializer.Serialize() handles namespace parameter incorrectly)
1852
1853 2003-10-05  Lluis Sanchez Gual <lluis@ximian.com>
1854
1855         * XmlReflectionImporter.cs, SoapReflectionImporter.cs: Fixed bug #49349
1856
1857 2003-10-04  Lluis Sanchez Gual <lluis@ximian.com>
1858
1859         * XmlSchemaExporter.cs: Keep track of elements being exported.
1860         * XmlSchemas.cs: Removed unneeded catch.
1861
1862 2003-10-01  Lluis Sanchez Gual <lluis@ximian.com>
1863
1864         * SerializationCodeGenerator.cs, XmlSerializationReaderInterpreter.cs: 
1865           Fixed handling of members with XmlTextAttribute that are arrays.
1866         * TypeData.cs: IsComplexType now returns true for XmlNode.
1867         * XmlSerializer.cs: Added check for null mapping in FromMappings.
1868         * XmlTypeMapping.cs: Added helper method FindTextElement.
1869
1870 2003-09-28  Lluis Sanchez Gual <lluis@ximian.com>
1871         
1872         * SoapReflectionImporter.cs, XmlReflectionImporter.cs, XmlSchemaExporter.cs:
1873           Added support for IncludeInSchema flag.
1874         * SoapSchemaImporter.cs: Implemented ImportDerivedTypeMapping method.
1875         * XmlCodeExporter.cs: Implemented AddMappingMetadata and AddMappingMetadata
1876           methods. Added support for IncludeInSchema flag.
1877         * XmlSchemaImporter.cs: Implemented ImportDerivedTypeMapping method.
1878           Added support for IncludeInSchema flag.
1879         * XmlTypeAttribute.cs: Set includeInSchema to true by default.
1880         * XmlTypeMapping.cs: Added IncludeInSchema property.
1881         
1882 2003-09-25  Lluis Sanchez Gual <lluis@ximian.com>
1883         
1884         * SoapIncludeAttribute.cs: Added AllowMultiple option. This fixes bug #48877.
1885
1886 2003-09-14  Lluis Sanchez Gual <lluis@ximian.com>
1887
1888         * XmlCustomFormatter.cs: added support for additional string types in
1889           GenerateToXmlString().
1890         * XmlSchemaExporter.cs: Fixed generation of XmlMembersMapping using 
1891           encoded format.
1892
1893 2003-09-11  Lluis Sanchez Gual <lluis@ximian.com>
1894
1895         * SoapSchemaImporter.cs: implemented.
1896         * XmlReflectionImporter.cs: Changed nullable default for array items to true.
1897         * XmlSchemaExporter.cs: Some fixes in the generation of encoded format schema.
1898         * XmlSchemaImporter.cs: more support for encoded format.
1899
1900 2003-09-04  Lluis Sanchez Gual <lluis@ximian.com>
1901
1902         * SerializationCodeGenerator.cs: Minor fixes.
1903         * SoapReflectionImporter.cs: More fixes.
1904         * SoapSchemaExporter.cs: implemented.
1905         * SoapSchemaImporter.cs: Initial implementation.
1906         * TypeTranslator.cs: new methods for dealing with encoded arrays: GetArrayName
1907           and ParseArrayType
1908         * XmlCodeExporter.cs: Fix. When exporting a map, export all derived maps.
1909         * XmlMemberMapping.cs: Minor fixes.
1910         * XmlMembersMapping.cs: added some convenient constructors.
1911         * XmlSchemaExporter.cs: Added support for encoded format.
1912         * XmlSchemaImporter.cs: Added support for encoded format. 
1913         * XmlSerializationReader.cs: changed some string literals by constants.
1914           Implemented ParseWsdlArrayType.
1915         * XmlSerializationReaderInterpreter.cs: Read typeArray attribute when serializing
1916           custom attributes.
1917         * XmlSerializationWriter.cs: Implemented WriteXmlAttribute.
1918         * XmlSerializationWriterInterpreter.cs: Use WriteXmlAttribute instead of
1919           WriteAttribute to write custom attributes.
1920         * XmlSerializer.cs: added some namespace constants.
1921         * XmlTypeMapping.cs: added GetSchemaArrayName method.
1922
1923 2003-09-01  Lluis Sanchez Gual <lluis@ximian.com>
1924
1925         * XmlSchemaImporter.cs: Implemented ImportMembersMapping.
1926         * XmlTypeMapMemberElement.cs: Little fix.
1927         * XmlTypeMapping.cs: Added AllElementInfos property in ClassMap.
1928         * XmlCustomFormatter.cs: Added GenerateToXmlString and GenerateFromXmlString
1929           methods.
1930         * SerializationCodeGenerator.cs, SerializationCodeGeneratorConfiguration.cs:
1931           Added.
1932
1933 2003-08-29  Lluis Sanchez Gual <lluis@ximian.com>
1934
1935         * SoapReflectionImporter.cs: Fixed construcion of XmlMemberMapping.
1936         * XmlMemberMapping.cs: Changed constructor.
1937         * XmlReflectionImporter.cs: Fixed construcion of XmlMemberMapping.
1938         * XmlSchemaImporter.cs: Implemented ImportMembersMapping().
1939         * XmlSerializationReaderInterpreter.cs: Added some helper methods. Changed visibility.
1940         * XmlSerializationWriterInterpreter.cs: Changed visibility.
1941
1942 2003-08-28  Lluis Sanchez Gual <lluis@ximian.com>
1943
1944         * XmlSerializer.cs: Fix in Deserialize() method.
1945
1946 2003-08-28  Lluis Sanchez Gual <lluis@ximian.com>
1947
1948         * XmlReflectionImporter.cs: Fill RelatedMaps property of the generated map.
1949         * XmlSchemas.cs: Find method: make sure the returned object belongs to
1950           the requested type.
1951         * XmlSerializationReader.cs: Removed unneded virtual ReadObject method.
1952           Add null checks for eventSource.
1953         * XmlSerializationReaderInterpreter.cs: ReadObject is not virtual any more.
1954         * XmlSerializationWriter.cs: In Initialize method, initialize the provided
1955           namespece declarations. Virtual method WriteObject not needed any more.
1956           In WriteStartElement, write the provided namespaces.
1957         * XmlSerializationWriterInterpreter.cs: Write object is not virtual any more.
1958           Added GetTypeMap method, that returns the map for a given type. Added some
1959           virtual methods, so writer behavior can be extended at several places by
1960           derived classes.
1961         * XmlSerializer.cs: Changed behavior to match what MS.NET does. The virtual 
1962           methods CreateReader and CreateWriter are not called unless no type or 
1963           type mapping was provided in the constructor.
1964
1965 2003-08-12  Lluis Sanchez Gual <lluis@ximian.com>
1966
1967         * XmlSchemaImporter.cs: ImportTypeMapping doesn't need to check if the
1968           schema type it is importing is a class or an array. It will always
1969           be a class.
1970
1971 2003-08-12  Lluis Sanchez Gual <lluis@ximian.com>
1972
1973         * XmlSerializationWriterInterpreter.cs: any element members can be serialized
1974           as text nodes. Support it.
1975
1976 2003-08-05  Lluis Sanchez Gual <lluis@ximian.com>
1977
1978         * CodeIdentifier.cs: Fixed MakeValid method.
1979         * TypeTranslator.cs: Added support for more primitive types. Added
1980           GetDefaultPrimitiveTypeData, which returns the type data to which a clr type
1981           maps by default.
1982         * XmlCodeExporter.cs: Generate XmlRoot attribute only if root element name and ns
1983           are different from the type ns and name.
1984           Generate class and field comments.
1985           Fixed default attribute generation. In elements with ref attribute, it has to be
1986           generated in the referred attribute.
1987         * XmlReflectionImporter.cs: Added check: simple type extensions can't add new elements.
1988           Added suport for text nodes in members of type "any".
1989         * XmlSchemaExporter.cs: Several fixes. Fixed generation of complex types with simple
1990           content.
1991         * XmlSchemaImporter.cs: Several fixes. The importer now collects documentation info.
1992         * XmlSerializationWriter.cs: WriteNamespaceDeclarations(): do not declare namespaces
1993           that have already been declared.
1994           WriteStartElement(): elements from schema namespace are always written with ns prefix.
1995         * XmlTypeMapMember.cs: Added documentation property.
1996         * XmlTypeMapping.cs: Added documentation property. Added property to check if a class map
1997           represents a simple type.
1998
1999 2003-08-05  Lluis Sanchez Gual <lluis@ximian.com>
2000
2001         * XmlSchemaImporter.cs: Implemented ImportTypeMapping and all needed parsing
2002           stuff.
2003         * SoapReflectionImporter.cs: Set the type namespace parameter when creating a map.
2004         * TypeData.cs: Added property that returns a TypeData that represents an array of
2005           the given TypeData.
2006         * TypeTranslator.cs: Added GetArrayName() method.
2007           Added TypeDatas for missing primitive types.
2008         * XmlCodeExporter.cs: Implemented ExportMembersMapping. Fixed generation of
2009           XmlRootAttribute. Added the namespace to all attributes being generated.
2010           Other fixes in the generation of code.
2011         * XmlReflectionImporter: store the namespace of the type in the maps.
2012         * XmlSchemaExporter.cs: Several fixes. Only set the "mixed" attribute if the
2013           class can generate text. Do not export inherited attributes of a class.
2014           Use the new root namespace stored in the map when generating the root element.
2015         * XmlSerializationWriter: Always write a prefix when writing a qname, even if the
2016           namespace is the default namespace.
2017         * XmlSerializationWriterInterpreter.cs: fixed missing "else".
2018         * XmlTypeMapElementInfo.cs: In DataTypeNamespace property, return the type
2019           namespace instead of the map namespace (which can be different if the type
2020           has a XmlRoot element).
2021         * XmlTypeMapMember.cs: Set the default value of the DefaultValue property
2022           to System.DBNull.Value.
2023         * XmlTypeMapMemberElement.cs: ElementInfo property: In the getter Create
2024           the collection if it has not yet been created.
2025         * XmlTypeMapping.cs: Added property XmlTypeNamespace which stores the namespace
2026           of the type. It may be different from the namespace of the map if the type
2027           has a XmlRoot element. Also added IsSimpleType property.
2028           In ClassMap, added AllMembers property.
2029         
2030 2003-07-30  Lluis Sanchez Gual <lluis@ximian.com>
2031
2032         * TypeData.cs: Added new constructor and variables to allow the creation of
2033           a TypeData without a Type. Added ListItemTypeData property.
2034         * XmlTypeMapping.cs: Added property for checking if a ListMap represents an
2035           array of arrays. Added also a property to get the nested array map.
2036         * XmlCodeExporter.cs: First implementation of code exporter.
2037
2038 2003-07-22  Lluis Sanchez Gual <lluis@ximian.com>
2039
2040         * TypeTranslator.cs: Added new primitive types: NMTOKEN and NCName.
2041         * XmlSerializationWriterInterpreter.cs: Write XmlAttributes with the prefix
2042           they have.
2043
2044 2003-07-15  Lluis Sanchez Gual <lluis@ximian.com>
2045
2046         * SoapReflectionImporter.cs, XmlReflectionImporter.cs: Avoid generating two
2047           maps with the same name and namespace. To avoid this, maps must be registered
2048           using the real map namespace, not the default namespace (the namespace can
2049           change if the type has a XmlType or SoapType attribute).
2050         * XmlArrayItemAttribute.cs: Set IsNullable to true by default.
2051         * XmlSchemaExporter.cs: Implemented method ExportMembersMapping.
2052           Other small fixes.
2053         * XmlSerializationWriterInterpreter.cs: GetStringValue: return null if the value
2054           is null.
2055
2056 2003-07-14  Lluis Sanchez Gual <lluis@ximian.com>
2057
2058         * SoapReflectionImporter.cs: Set the BaseMap property of map. Small fix.
2059         * TypeData.cs: IsComplexType now returns true for IXmlSerializable types.
2060         * XmlAttributes.cs: Fixed bug when reading the value of DefaultValueAttribute.
2061         * XmlReflectionImporter.cs: Set the BaseMap property of map. Several small fixes.
2062         * XmlSchemaExporter.cs: Implemented.
2063         * XmlSchemas.cs: Support schemas with TargetNamespace set to null.
2064         * XmlSerializationWriter.cs: FromXmlQualifiedName (): return null if the qname is null.
2065           GetNamespacePrefix (): no need to add xmlns attribute if namespace is null.
2066         * XmlSerializationWriterInterpreter.cs: Fixed management of default values.
2067           GetStringValue() returns null if the value is null, instead of empty string.
2068           (attributes with null values are not written).
2069         * XmlTypeMapElementInfo.cs: added IsTextElement and IsUnnamedAnyElement properties.
2070         * XmlTypeMapMemberAttribute.cs: added DataTypeNamespace and removed DataType.
2071           DataType value can is now in TypeData.
2072         * XmlTypeMapMemberElement.cs: Small fix.
2073         * XmlTypeMapping.cs: Added FindMember method and BaseMap property.
2074
2075 2003-07-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2076
2077         * AssemblyInfo.cs: Removed
2078
2079 2003-07-9  Lluis Sanchez Gual <lluis@ximian.com>
2080
2081         * XmlSerializationWriter.cs: WriteStartElement(): Do not write xsd and xsi 
2082           namespace declarations if they have already been defined.
2083
2084 2003-07-2  Lluis Sanchez Gual <lluis@ximian.com>
2085
2086         * XmlSerializationReaderInterpreter.cs: Use the parameter type when getting the Add method
2087           for adding elements to a list.
2088
2089 2003-06-31  Lluis Sanchez Gual <lluis@ximian.com>
2090
2091         * SoapReflectionImporter.cs, XmlReflectionImporter.cs: Fixed so XmlIncludeAttribute and 
2092           SoapIncludeAttribute are now transitive (if class A includes class B, and B includes C, then 
2093           A includes C).
2094
2095 2003-06-30  Lluis Sanchez Gual <lluis@ximian.com>
2096
2097         * SoapReflectionImporter.cs, XmlReflectionImporter.cs, XmlTypeMapping.cs: 
2098           Added support for serialization of enums with the Flags attribute.
2099
2100 2003-06-30  Lluis Sanchez Gual <lluis@ximian.com>
2101
2102         * SoapReflectionImporter.cs: Fix support for DataType in class members.
2103         * TypeData.cs: Don't use "Index" name to get indexer property. Indexer properties
2104           can have other names.
2105         * TypeTranslator.cs, XmlCustomFormatter.cs: Added support for "time" and "data" xml types.
2106         * XmlReflectionImporter.cs, XmlTypeMapElementInfo.cs, XmlSerializationReader.cs,
2107           XmlSerializationWriter.cs, XmlTypeMapElementInfo.cs, XmlTypeMapping.cs: 
2108           Fix support for DataType in class members.
2109         * XmlSerializationReaderInterpreter.cs, XmlSerializationWriterInterpreter.cs: 
2110           Added support for array of primitive types in attributes.
2111
2112 2003-06-28  Lluis Sanchez Gual <lluis@ximian.com>
2113
2114         * TypeData.cs: Type of item of ICollections is now taken from the Item(int) property. Add() can
2115           be overlodaded, so it is not good for this.
2116         * XmlSerializationWriterInterpreter.cs: Fix ambiguity bug when getting Item property of a collection.
2117
2118 2003-06-24  Lluis Sanchez Gual <lluis@ximian.com>
2119
2120         * XmlTypeMapElementInfo.cs: no need to compare nesting level in Equals.
2121         * XmlReflectionImporter.cs: Changed nullable default. Assign member's namespace to an
2122           array if the namespace is not specified in XmlArrayItemAttribute.
2123
2124 2003-06-17  Lluis Sanchez Gual <lluis@ximian.com>
2125
2126         * XmlReflectionImporter.cs: Reset internal tables for each ImportMembersMapping call.
2127         * XmlSerializationReader.cs: GetXsiType(): use current reader.namespaceUri if namespace
2128           is not specified in the xsi attribute.
2129         * XmlSerializationReaderInterpreter.cs: Fixed bug when reading an empty array from an empty element.
2130         * XmlSerializationWriterInterpreter.cs: Added null value check when writting an array.
2131         
2132 2003-06-16  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2133
2134         * XmlSerializationReader.cs : Synchronous fix with 
2135           XmlElement.GetAttribute(name, ns) fix for GetNullAttr().
2136         * added XmlTypeMapMemberNamespace.cs.
2137         * XmlReflectionImporter,
2138           XmlSerializationReaderInterpreter.cs,
2139           XmlSerializationWriterInterpreter.cs,
2140           XmlTypeMapping.cs : support for XmlNamespaceDeclarationAttribute.
2141
2142 2003-06-16  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2143
2144         * XmlSerializationWriter.cs : some QName handling fix.
2145
2146 2003-06-13  Lluis Sanchez Gual <lluis@ximian.com>
2147
2148         * XmlSerializationReader.cs: Fixed error message.
2149         * XmlSerializationReaderInterpreter.cs: Fixed bug when reading XmlQualifiedNames as attributes
2150           Thanks to Atsushi!
2151         * XmlSerializationWriter.cs: Null check in FromXmlQualifiedName.
2152
2153 2003-06-13  Lluis Sanchez Gual <lluis@ximian.com>
2154
2155         * XmlSerializationReader.cs: Fixed implementation of ReadElementQualifiedName() and ReadTypedPrimitive().
2156         * XmlSerializationReaderInterpreter.cs: Improved serialization of XmlQualifiedNames.
2157         * XmlSerializationWriter.cs: implemented methods for reading XmlQualifiedNames.
2158         * XmlSerializationWriterInterpreter.cs: Improved deserialization of XmlQualifiedNames.
2159
2160 2003-06-13  Lluis Sanchez Gual <lluis@ximian.com>
2161
2162         * SchemaTypes.cs: Changed DataSet type for a more generic XmlSerializable.
2163         * SoapReflectionImporter.cs: tiny fix.
2164         * XmlReflectionImporter.cs, TypeData.cs, XmlSerializationWriterInterpreter.cs,
2165           XmlSerializationReaderInterpreter.cs: Added support for IXmlSerializable.
2166         * XmlSerializationReader.cs: Fixed implementation of ReadSerializable().
2167         * XmlSerializationWriter.cs: implemented WriteSerializable ().
2168
2169 2003-06-12  Lluis Sanchez Gual <lluis@ximian.com>
2170
2171         * XmlAnyElementAttribute.cs, XmlArrayItemAttribute.cs: Added AllowMultiple flag.
2172         * XmlReflectionImporter.cs, XmlSerializationWriterInterpreter.cs,
2173           XmlSerializationReaderInterpreter.cs, XmlTypeMapElementInfo.cs,
2174           XmlTypeMapMemberElement.cs, XmlTypeMapping.cs: Added support for XmlTextAttribute.
2175         * XmlSerializationWriter.cs: small fix.
2176
2177 2003-06-11  Lluis Sanchez Gual <lluis@ximian.com>
2178
2179         * XmlReflectionImporter.cs: Added support for XmlIgnoreAttribute in enum members.
2180           Added support for DefaultValueAttribute.
2181         * XmlSerializationWriterInterpreter.cs: Added support for DefaultValueAttribute. Fixed bug when writting
2182           the value of an enum.
2183         * XmlTypeMapMember.cs: Added DefaultValue attribute.
2184         * XmlTypeMapping.cs: EnumMap.GetXmlName and GetXmlValue, so they can now deal with
2185           integer values.
2186
2187 2003-06-11  Lluis Sanchez Gual <lluis@ximian.com>
2188
2189         * XmlSerializationReader.cs: Minor fix.
2190
2191 2003-06-11  Lluis Sanchez Gual <lluis@ximian.com>
2192
2193         * XmlSerializationReader.cs, XmlSerializationReaderInterpreter.cs: Minor fixes.
2194
2195 2003-06-10  Lluis Sanchez Gual <lluis@ximian.com>
2196
2197         * SoapReflectionImporter.cs: Added check: some overrides cannot be applied to primitive types.
2198         * XmlAttributes.cs: Default value of XmlDefaultValue changed to System.DBNull.Value
2199         * XmlCustomFormatter.cs: small fixes.
2200         * XmlReflectionImporter.cs: Added check: some overrides cannot be applied to primitive types.
2201         * XmlSerializationWriter.cs: Implemented TopLevelElement().
2202           WriteNamespaceDeclarations(): Fixed (the hashtable contains XmlQualifiedNames, not strings).
2203           WriteXsiType(): It is not necessary to add the namespace declaration, this will now be done by XmlWriter.
2204         * XmlSerializationWriterInterpreter.cs: Call TopLevelElement() when writing classes or arrays as
2205           root elements.
2206
2207 2003-06-05  Lluis Sanchez Gual <lluis@ximian.com>
2208
2209         * SoapReflectionImporter.cs: implemented.
2210         * TypeTranslator.cs: added IsPrimitive() method
2211         * TypeMapping.cs: Added RelatedMaps property that returns all maps directly or indirectly
2212           used by that one. Also added Format property, that can be literal or encoded.
2213         * XmlReflectionImporter.cs: little fixes. Moved some methods to ReflectionHelper.
2214         * XmlReflectionMember.cs: added constructor that accepts SoapAttributes
2215         * XmlSerializationReader.cs: implemented many methods needed to support encoded format.
2216         * XmlSerializationReaderInterpreter.cs: added support for encoded format.
2217         * XmlSerializationWriter.cs: added support for encoded format.
2218         * XmlSerializationWriterInterpreter.cs: added support for encoded format.
2219         * XmlTypeMapElementInfo.cs: added some properties needed to support encoded format
2220         * XmlTypeMapMemberAttribute.cs: added MappedType property (enum values can be attributes, 
2221           and a map is needed for them).
2222         * XmlTypeMapMemberElement.cs: small fixes.
2223         * XmlTypeMapping.cs: added some properties and methods needed to support encoded format
2224         * ReflectionHelper.cs: added. Has some methods shared by the reflection importers.
2225
2226 2003-06-01  Miguel de Icaza  <miguel@ximian.com>
2227
2228         * XmlSerializationReader.cs (UnknownAttribute, UnknownNode,
2229         UnknownElement): Add line number information.
2230
2231 2003-05-29  Lluis Sanchez Gual <lluis@ximian.com>
2232
2233         * TypeData.cs, TypeTranslator.cs: Renamed some properties.
2234         * XmlCustomFormatter.cs: Fixed bug in serialization of chars. Support for byte[].
2235         * XmlMapping.cs: Added internal property.
2236         * XmlMemberMapping.cs, XmlMembersMapping.cs: Implemented.
2237         * XmlReflectionImporter.cs: Implemented importing of XmlMembersMapping. Several fixes.
2238         * XmlReflectionMember.cs: XmlAttributes are now created by default
2239         * XmlSerializationReader.cs, XmlSerializationWriter.cs: Several fixes.
2240         * XmlSerializationReaderInterpreter.cs, XmlSerializationWriterInterpreter.cs, XmlSerializer.cs: 
2241           Implemented support for XmlMembersMapping.
2242         * XmlTypeMapping.cs: Property ObjectMap moved to XmlMapping.
2243
2244 2003-05-28  Lluis Sanchez Gual <lluis@ximian.com>
2245
2246         * TypeData.cs, TypeTranslator.cs: Added support for enums. Added method for translating
2247           from xml type to clr type.
2248         * XmlCustomFormatter.cs: Fixed bug in serialization of chars. Support for byte[].
2249         * XmlReflectionMember.cs: Added default constructor.
2250         * XmlSerializationReader.cs: Implemented ReadTypedPrimitive(), ToByteArrayBase64().
2251         * XmlSerializationWriter.cs: Several fixes.
2252         * XmlSerializationReaderInterpreter.cs, XmlReflectionImporter.cs, XmlSerializationWriterInterpreter.cs
2253           XmlTypeMapMember.cs, XmlTypeMapMemberElement.cs, XmlTypeMapping.cs:
2254           Added support for enums. Added support for XmlElement and XmlNode.
2255           Support for XmlAnyAttributeAttribute and XmlAnyElementAttribute. Many fixes.
2256
2257 2003-05-26  Lluis Sanchez Gual <lluis@ximian.com>
2258
2259         * TypeData.cs, TypeTranslator.cs: Implemented some methods.
2260         * XmlCustomFormatter.cs: Added formatting methods.
2261         * XmlReflectionImporter.cs, XmlSerializer.cs: New implementation.
2262         * XmlReflectionMember.cs: Added new constructor.
2263         * XmlSerializationReader.cs, XmlSerializationWriter.cs: Implemented some methods.
2264         * XmlSerializationWriterInterpreter.cs, XmlSerializationReaderInterpreter.cs
2265           XmlTypeMapElementInfo.cs, XmlTypeMapMember.cs, XmlTypeMapMemberAttribute.cs
2266           XmlTypeMapMemberElement.cs, XmlTypeMapping.cs: Added
2267
2268 2003-05-10  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2269
2270         * Added TypeTableEntry.cs.
2271         * TypeTranslator.cs : changed for non-static use.
2272         * XmlAttributes.cs : XmlType attribute support for GetAttributeName() 
2273           and GetElementName(). Bugfix so that if any XmlElementAttribute 
2274           exists after non-typed XmlElementAttribute then it might be ignored.
2275           Added GetElementIsNullable().
2276         * XmlSerializer.cs :
2277           Introduced TypeTablePool and TypeTableEntry and erased ambiguous 
2278           Object memberObj[4].
2279           Deserialize() now uses XmlReader.Depth to check its depth.
2280           Serialize() for non-XmlReader arguments now always write xmldecl.
2281           SerializeBuiltin() now explicitly requires Type to support xsi:nil,
2282           and handles XmlQualifiedName.
2283           Separated SerializeType () from Serialize().
2284           Separated WriteCollectionElementMember(), IsFieldTypeSerializable(),
2285           IsPropertyTypeSerializable() from SerializeMembers().
2286           SerializeMembers() is now capable of null value and actual type,
2287           which should be included by XmlIncludeAttribute and so on.
2288           Renamed SerializeArray() to SerializeArrayContent(), and added
2289           SerializeCollectionContent().
2290           SerializeMembers() now requries XmlSerializerNamespaces (not used yet).
2291           FillTypeTable() is now aware of XmlInclude attributes.
2292           FillEnum() should not have different type table content from others.
2293
2294 2003-05-09  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2295
2296         * XmlSerializer.cs : this time, only replaced spaces with tabs.
2297
2298 2003-05-05  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2299
2300         * ChangeLog : Added missing ChangeLog of 2003-04-25.
2301         * XmlCustomFormatter.cs : Fixed FromXmlNmTokens() to contain 
2302           separators. Added experimental method ToEnum().
2303         * XmlSerializationReader.cs : unconfirmed implementation of
2304           ReadSerializable() and ToEnum().
2305         * XmlSerializationWriter.cs : fixed WriteAttribute() so that if value 
2306           is null then no output will be written.
2307           Fixed WriteStartElement(), WriteElement*() and WriteEmptyTag() 
2308           to use custom formatted name.
2309
2310 2003-05-02  Miguel de Icaza  <miguel@ximian.com>
2311
2312         * XmlReflectionImporter.cs: one of theImportTypeMapping mappings
2313         had a void return value.
2314
2315 2003-04-26  Miguel de Icaza  <miguel@ximian.com>
2316
2317         * XmlIncludeAttribute.cs: Make XmlIncludeAttribute have the
2318         `AllowMultiple' flags.  
2319
2320 2003-04-25  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2321
2322         * TypeTranslator.cs : patch by Erik LeBel. Array consideration.
2323         * XmlReflectionImporter.cs : patch by Erik LeBel. 
2324           Now uses XmlRootAttribute to determine element name.
2325
2326 2003-03-17  Miguel de Icaza  <miguel@ximian.com>
2327
2328         * XmlSerializer.cs: Do not use Bubblesort, use ArrayList.Sort.
2329         Kill Bublesort.
2330
2331 2003-03-22  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2332
2333         * XmlSerializer.cs : patch by Sean Cier. Serialize() other than 
2334           XmlWriter argument should call WriteEndDocument.
2335
2336 2003-03-19  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2337
2338         * XmlSerializer.cs : Serialize() don't write xmldecl when WriteState is
2339           not WriteState.Start, and never call WriteEndDocument().
2340
2341 2003-03-12  Elan Feingold <efeingold@mn.rr.com>
2342
2343         * XmlCustomFormatter.cs: Correct signature, Implement
2344         ToByteArrayBase64 
2345
2346         * XmlSerializationWriter.cs: Fix prototype.
2347
2348         * XmlSerializer.cs: Implements Deserialize().
2349
2350 2003-02-16  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2351
2352         * XmlSerializer.cs : serializing now works for interface member.
2353
2354 2003-01-26  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
2355
2356         * XmlSerializer.cs : some fix handling xml node object more correct.
2357
2358 2003-01-16  Ajay kumar Dwivedi <adwiv@yahoo.com>
2359         * XmlSerializer.cs: Array serialization for 1D arrays works
2360         * TypeTranslator: Added for translations`
2361
2362 2002-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2363
2364         * XmlCustomFormatter.cs: finished.
2365         * XmlSerializationReader.cs: implemented some more methods.
2366
2367 2002-09-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2368
2369         * XmlSerializationReader.cs: implemented a few methods.
2370
2371         * XmlAnyElementAttribute.cs:
2372         * XmlArrayAttribute.cs:
2373         * XmlChoiceIdentifierAttribute.cs:
2374         * XmlElementAttribute.cs:
2375         * XmlMemberMapping.cs:
2376         * XmlMembersMapping.cs: class status based fixes.
2377
2378 2002-09-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2379
2380         * CodeIdentifiers.cs:
2381         * XmlSchemaExporter.cs:
2382         * XmlSchemaImporter.cs:
2383         * XmlSchemas.cs:
2384         * XmlSerializationWriteCallback.cs:
2385         * XmlSerializationWriter.cs:
2386         * XmlSerializer.cs:
2387         * XmlSerializerNamespaces.cs: some class status based fixed and
2388         implemented a couple of methods.
2389
2390         * SoapSchemaExporter.cs: stubbed out.
2391
2392 2002-08-24  Tim Coleman <tim@timcoleman.com>
2393         * SoapCodeExporter.cs:
2394                 Fix return value of ExportTypeMapping.
2395         * XmlCustomFormatter.cs:
2396                 Change methods to be internal instead of public.
2397         * XmlSerializationWriter.cs:
2398                 Modify GetPrimitiveTypeName to build on linux.
2399                 Modify GetQualifiedName to return an incrementing prefix
2400                 instead of the same one all the time (still need to manage
2401                 conflicts)
2402                 Modify WriteElementString to only do special stuff is XsiType
2403                 is not defined.
2404                 Modify WriteTypedPrimitive to use FromXmlQualifiedName if it's
2405                 an XmlQualifiedName.
2406
2407 2002-08-22  Tim Coleman <tim@timcoleman.com>
2408         * XmlSerializationReader.cs:
2409                 Some implementation
2410         * XmlSerializationWriter.cs:
2411                 More implementation
2412         * XmlCustomFormatter.cs:
2413                 Implemented this class.
2414
2415 2002-08-20  Tim Coleman <tim@timcoleman.com>
2416         * XmlSerializationWriter.cs:
2417                 Some implementation.
2418
2419 2002-08-19  Tim Coleman <tim@timcoleman.com>
2420         * XmlSerializer.cs:
2421                 New stubs added.
2422         * XmlSerializationWriter.cs:
2423                 New stubs added.
2424
2425 2002-08-14  Tim Coleman <tim@timcoleman.com>
2426         * XmlSerializer.cs:
2427                 More reformatting of source code so I can
2428                 better understand what it does.
2429
2430 2002-08-06  Tim Coleman <tim@timcoleman.com>
2431         * XmlSerializer.cs:
2432                 Some reformatting of code for readability.
2433                 Modify to correctly serialize ICollection objects
2434                 such as the BindingCollection of a ServiceDescription
2435                 for example.
2436
2437 2002-08-03  Tim Coleman <tim@timcoleman.com>
2438         * XmlSerializer.cs: 
2439                 Changed Implements() to check based on name rather
2440                 than FullName.  FullName was never working correctly.
2441
2442 2002-07-26  Tim Coleman <tim@timcoleman.com>
2443         * XmlSerializer.cs:
2444                 The constructor now looks for an XmlRootAttribute attribute
2445                 if one is not passed in.  Various changes to make it emit
2446                 proper XML, such as handling an element without a namespace
2447                 prefix, and using WriteEndDocument where it should be.
2448
2449 2002-07-24  Tim Coleman <tim@timcoleman.com>
2450         * CodeIdentifier.cs:
2451         * IXmlSerializable.cs:
2452         * XmlSerializationCollectionFixupCallback.cs:
2453         * XmlSerializationFixupCallback.cs:
2454         * XmlSerializationReadCallback.cs:
2455         * XmlSerializationReader.cs:
2456         * XmlSerializationWriteCallback.cs:
2457                 Add new classes.
2458         * XmlSchemas.cs
2459         * CodeIdentifiers.cs:
2460                 Implement some of these classes
2461         * XmlCodeExporter.cs:
2462                 Fix return type of a function
2463
2464 2002-07-24  Tim Coleman <tim@timcoleman.com>
2465         * SoapReflectionImporter.cs:
2466                 New class added to build
2467                 System.Web.Services.Description.ServiceDescription.cs
2468
2469 2002-07-22  Tim Coleman <tim@timcoleman.com>
2470         * CodeIdentifiers.cs:
2471         * SoapCodeExporter.cs:
2472         * SoapSchemaExporter.cs:
2473         * XmlCodeExporter.cs:
2474         * XmlMemberMapping.cs:
2475         * XmlMembersMapping.cs:
2476         * XmlReflectionImporter.cs:
2477         * XmlReflectionMember.cs:
2478         * XmlSchemaExporter.cs:
2479         * XmlSchemaImporter.cs:
2480         * XmlSchemas.cs: 
2481                 New stubbs added to aid in the linux build of
2482                 System.Web.Services.
2483
2484 2002-07-05  Ajay kumar Dwivedi <adwiv@yahoo.com>
2485         
2486         * XmlSeriailizer: Serialize method can serialize XmlSchema perfectly.
2487
2488         * XmlSerializerNamespaces: Reverted to use of a single Hashtable.
2489
2490 2002-07-02  Ajay kumar Dwivedi <adwiv@yahoo.com>
2491         
2492         * XmlSeriailizer: Updated Serialize() method.
2493
2494 2002-06-27 Ajay kumar Dwivedi <adwiv@yahoo.com>
2495         * XmlSerializer: Serialize() method Partially Implemented.
2496
2497 2002-06-20 Ajay kumar Dwivedi <adwiv@yahoo.com>
2498
2499         * Soap & XmlOverrides: Implemented using TypeMember as key with
2500           suggestions from Rafael.