XML serialization and deserialization
An object instance is serialized to a serial format, such as an eXtensible Markup Language (XML) document, based on a mapping between an arbitrary annotated source code file and a schema. The arbitrary annotated source code contains at least one programming type that describes a shape of an object instance and the schema describes a format of a document having a serial format. The mapping defines a correspondence between the shape of the object instance and the format of the document having the serial format. Subsequently, an object instance is converted to the serial format by converting public properties, public fields and method parameters of the object instance to a document having the serial format based on the mapping. Once the mapping is defined, an XML document can also be converted to an object instance based on the mapping.
Latest Microsoft Patents:
A portion of the disclosure of this patent document contains material that is subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all copyright rights whatsoever.
1. Field of the Invention
The invention relates to a method for converting an object instance into a serial format and for creating object instances based on a serially-formatted description of data. More particularly, the present invention relates to a method for serializing an object instance into an eXtensible Markup Language (XML) document or deserializing an XML document into an object instance.
2. Background of the Prior Art
Simple Object Access Protocol (SOAP) is conventionally used for a first program to communicate information to a second program that may be running simultaneously on the same computer as the first program or on two different computers that may or may not be running the same operating system. In that regard, SOAP is used for encoding, or serializing, defined data structures. For example, SOAP specifies exactly how an HTTP header and an XML file are serialized so that one program can send a request to another program, passing information in the request.
Nevertheless, what is needed is a way to serialize an object having an arbitrary structure into an XML document so that the structure and the information contained in the object can be communicated between two programs that may be running simultaneously on the same computer or may be running on different computers that may or may not be running different operating systems.
BRIEF SUMMARY OF THE INVENTIONThe present invention provides a way to serialize an object having an arbitrary structure into an XML document so that the structure and the information contained in the object can be communicated between two programs that may be running simultaneously on the same computer, or that may be running on different computers that may or may not be running different operating systems. Additionally, the present invention can be used by a single program to save data for later use, such as after the computer on which the program is running has been turned off and then turned back on.
The advantages of the present invention are provided by a method for serializing an object instance to a serial format in which a mapping is generated between an arbitrary annotated source code file and a schema. The mapping is an internal structure used by the present invention for defining a correspondence between the shape of an object instance and the format of the document having the serial format. The arbitrary annotated source code contains programming types that describe the shape of an object instance, and the schema describes the format of a document having a serial format, such as XML. The mapping can be generated based either on an arbitrary annotated source code file or the pattern of a defined schema. After the mapping has been generated, an object instance corresponding to the arbitrary annotated source code is converted to the serial format based on the mapping by converting public properties, public fields and method parameters of the object instance to a document having the serial format. The serial format contains a shape of each class of the object instance and contains data contained within the object instance. According to the invention, the object instance is preferably converted to an XML document, although the present invention could convert an object instance to a document having a serial format other than XML, such as a custom binary format. Moreover, once the mapping has been defined, an XML document can be converted to an object instance based on the mapping.
XML schema documents and source code can also be generated from the mapping. The source code generated from the mapping describes only the data portions of programming types and does not include any logic or algorithmic statements.
The present invention is illustrated by way of example and not limitation in the accompanying figures in which like reference numerals indicate similar elements and in which:
The present invention may be more readily described with reference to
A basic input/output system 160 (BIOS), containing the basic routines that help to transfer information between elements within computer 100, such as during start-up, is stored in ROM 140. The computer 100 also includes a hard disk drive 170 for reading from and writing to a hard disk (not shown), a magnetic disk drive 180 for reading from or writing to a removable magnetic disk 190, and an optical disk drive 191 for reading from or writing to a removable optical disk 192 such as a CD ROM or other optical media. Hard disk drive 170, magnetic disk drive 180, and optical disk drive 191 are connected to the system bus 130 by a hard disk drive interface 192, a magnetic disk drive interface 193, and an optical disk drive interface 194, respectively. The drives and their associated computer-readable media provide nonvolatile storage of computer readable instructions, data structures, program modules and other data for personal computer 100. It will be appreciated by those skilled in the art that other types of computer readable media that can store data that is accessible by a computer, such as magnetic cassettes, flash memory cards, digital video disks, Bernoulli cartridges, random access memories (RAMs), read only memories (ROMs), and the like, may also be used in the example operating environment.
A number of program modules can be stored on hard disk drive 170, magnetic disk 190, optical disk 192, ROM 140 or RAM 150, including an operating system 195, one or more application programs 196, other program modules 197, and program data 198. A user can enter commands and information into computer 100 through input devices such as a keyboard 101 and pointing device 102. Other input devices (not shown) may include a microphone, joystick, game pad, satellite dish, scanner or the like. These and other input devices are often connected to processing unit 110 through a serial port interface 106 that is coupled to the system bus, but may be connected by other interfaces, such as a parallel port, game port or a universal serial bus (USB). Further still, these devices may be coupled directly to system bus 130 via an appropriate interface (not shown). A monitor 107 or other type of display device is also connected to system bus 130 via an interface, such as a video adapter 108. In addition to the monitor, personal computers typically include other peripheral output devices (not shown), such as speakers and printers.
Computer 100 can operate in a networked environment using logical connections to one or more remote computers, such as a remote computer 109. Remote computer 109 can be a server, a router, a network PC, a peer device or other common network node , and typically includes many or all of the elements described above relative to computer 100, although only a memory storage device 111 has been illustrated in FIG. 1. The logical connections depicted in
When used in a LAN networking environment, computer 100 is connected to local area network 112 through a network interface or adapter 114. When used in a WAN networking environment, personal computer 100 typically includes a modem 115 or other device for establishing a communications over wide area network 113, such as the Internet. Modem 115, which may be internal or external, is connected to system bus 130 via the serial port interface 106. In a networked environment, program modules depicted relative to personal computer 100, or portions thereof, may be stored in a remote memory storage device.
It will be appreciated that the network connections shown are exemplary and other techniques for establishing a communications link between the computers can be used. The existence of any of various well-known protocols such as TCP/IP, Ethernet, FTP, HTTP and the like is presumed, and the system can be operated in a client-server configuration to permit a user to retrieve web pages from a web-based server. Any of various conventional web browsers can be used to display and manipulate data on web pages.
A primary aspect of the invention provides that when a schema for a document having a serial format is known, the public properties, public fields and method parameters of an object can be converted to a document having the serial format for storage or for transport. Accordingly, deserialization of a document having a serial format recreates an object-in its original state as long as the public properties and public fields of the object comprise the entire state of the object. Preferably, the present invention serializes an instance of an object to an XML document, and deserializes an XML document to an instance of an object.
A schema contains information about how the XML should look, or be arranged, when data is serialized. A programming type (a class) contains information about how the object should look, or be arranged, when deserialized. Thus, a class annotated with attributes contains information about what the object instance will look like and about how the data should be serialized into XML. Through custom attributes, these two sets of information are merged into mapping 203. It should be noted, though, that a complete mapping cannot be made solely by importing (i.e., analyzing) a schema because a schema does not contain complete information about what programming types should be created when serializing. Only the annotated source code has both sets of information. Nevertheless, it is possible to generate a mapping for the appropriate programming types using a set of predefined rules that primarily concern naming and that relate the schema to selected programming types when generating source code from a schema. Types generated from schema will have “default” names, that is, names that are usually the same names used in the schema. Another exemplary rule relates to how arrays are represented. For example, an array in code can be represented by using a conventional array or by using a collection. Each representation could be serialized in the same way in XML.
An XmlSerializer 206 and related tools, such as an XML Schema Definition (xsd.exe) tool, provide a bridge between programming language constructs/XSD schema (i.e., annotated code 204/XML schema 205) and an object instance/XML document (i.e., object instance 201/XML document 202) at both design time and run time. The XmlSerializer 206 is generated on demand the first time it is necessary to serialize or deserialize an object instance of a given type.
When the design starting point is a given schema 205 that follows the XML Schema Definition (XSD) language that is proposed by the W3C, the XML Schema Definition (xsd.exe) tool is used for importing schema 205 and for exporting source code 204 based on schema 205. When the design starting point is annotated source code 204, annotated source code 204 is compiled at 207 to produce compiled source code 208. That is, the data in an object is described using programming language constructs such classes, fields, properties, primitive types, or arrays. Customized classes, annotated with attributes, can be also be created by the present invention. A mapping 203 is generated by reflection at 209 based on compiled annotated code 208.
Reflection is a facility provided by some programming systems, such as the Common Language Runtime (CLR) provided by Microsoft of Redmond, Wash. in the .NET Framework, for code to inspect the nature of types (classes) available on the system. For example, a programmer can write code that queries the system for a list of methods defined on a given type. The information returned would include the names of the methods, their return types, and the names and types of parameters to the methods. Reflection can also be used to determine what properties and fields exist on a type, or what types have been defined on a system.
The Common Language Runtime provided by Microsoft for the .NET environment allows code to be annotated with “custom attributes,” also called “metadata.” The annotations are expressed by a programmer in source code. When compiled, the annotations are stored as additional information about the classes, methods, fields, properties and parameters defined in the source code. The Runtime may then use the additional information natively, or programs can use reflection to obtain the information.
Returning to
In either design situation, i.e., starting with a given schema or starting with annotated source code, the classes are annotated with custom attributes that are used by an XmlSerializer 206 for mapping between a XSD schema system to a Common Language Runtime (CLR) environment. The CLR environment is a runtime environment and is part of the .NET framework provided by Microsoft of Redmond, Wash. The CLR provides such features as cross-language integration and cross-language exception handling among other features, for developing and executing .NET applications.
At run time, instances of classes contained within an object instance 201 are serialized by XmlSerializer 206 into an XML document 202 based on mapping 203. Similarly, an XML document 202 is deserialized by XmlSerializer 206 into a run time object instance 201 based on mapping 203. In this regard, XmlSerializer 206 provides complete and flexible control over how XML is encoded into classes. For example, a public field or public property can be encoded as an attribute or an element. An XML namespace can be specified, and an element name or attribute name can be specified when a field or property name is inappropriate. Only the shape of an object class and the data contained in the object is contained in the serialized data. The type identity and assembly information is not included in the serialized data because only public properties and public fields are serialized by XmlSerializer 206. In situations when non-public, i.e., private, data is to be serialized, a conventional binary formatting method is preferred.
The present invention provides the advantages of working with strongly-typed classes while still having the flexibility of XML. For example, by using fields or properties of type XmlElement, XmlAttribute or XmlNode in strongly typed classes, parts of the XML document instance can be read directly into XML objects. Attributes for the application programming interface (API) for XmlSerializer 206 for controlling XML output and XML input are set forth in the following table:
The XmlAnyElementAttribute or XmlAnyAttributeAttribute attributes can be applied to fields or properties that return arrays of XmlElement, XmlAttribute or XmlNode objects for reading unmapped elements and attributes into these fields or properties. Thus, documents can be processed that have additional elements and attributes that were added after design time and that were not known when the strongly-typed classes were designed.
When a property or field returns a complex object (such as an array or a class instance), XmlSerializer 206 converts the complex object to an element nested within the main XML document. For example, the first class in the following exemplary C# code returns an instance of the second class:
The serialized XML output provided by XmlSerializer 206, given an instance of the classes MyContainer and MyObject, will be:
For this example, “My String” is a particular value the class ObjectName in the given instance of the classes MyContainer and MyObject.
When only the states of objects are saved, the class does not need to be modified. When, however, XML documents that conform to an exact XML schema are to be read or written, the XML output of XmlSerializer 206 can be controlled by setting selected attributes of the public properties and fields of the class. As shown in the following exemplary C# code, XmlAttributeAttribute is used for specifying that the Qty field should be encoded as an XML attribute having the name Quantity. Additionally, XmlElementAttribute is used for specifying that the Name field should be encoded as an XML element having the name ProductName.
After serialization by XmlSerializer 206, the XML code appears as:
When XmlSerializer 206 deserializes an instance of the class Order, the ElementName and AttributeName properties describe how to treat the properties named Qty and Name so that XmlSerializer 206 accurately reconstructs the object with the correct field and property values.
The following exemplary code also illustrates that each public field or public property of an object can be controlled by attributes:
creates the following XML (in the file referred to as po.xml):
Notice the following general features of source code annotation:
-
- Classes, properties, fields, methods, parameters, and other language elements can be annotated with “custom attributes.”
- In the C# language, the syntax for annotating these language elements is to place the name of a custom attribute inside square brackets just before the item being annotated. Additional data is provided to the custom attribute inside parentheses following the attribute name.
System.XmlSerialization.XmlSerializer is the main class used for XML Serialization. The previous example illustrates how to use System.XmlSerialization.XmlSerializer for serializing an object instance to XML by calling the Serialize method. Similarly, an object can be deserialized using the Deserialize method, which takes a stream from which to read the XML document and returns the deserialized object.
An exemplary use of the XML Definition Tool (Xsd.exe) could be that of a developer tasked with developing an application for processing XML documents that must conform to a specific XML schema (.xsd) document, such as a particular purchase order. Orders that conform to the XML schema are processed and a confirmation reply is sent to each customer. The specific XML schema is passed to the XML Schema Definition tool (Xsd.exe) as an argument, and the XML Schema Definition tool creates a set of classes that are precisely matched to the specified XML schema. According to the invention, the XML Schema Definition tool processes only schemas that conform to the www.w3.org Proposed Recommendation XMLSchema specification set forth at http://www.w3.org/2001/XMLSchema. The classes having methods, properties, or fields are annotated, as required, by the reflection portion of the invention (i.e., reflection 209 in
Xsd.exe will produce the following schema for the classes used in the previous example:
Similarly, running xsd.exe on that schema would produce classes that look substantially like the classes originally written for the example.
The application for processing the XML documents conforming to a specific XML purchase order schema is then created using XmlSerializer 206 for reading and processing XML documents, and for generating new XML documents confirming orders. To do this, XmlSerializer 206 serializes and deserializes the classes created by the XML Schema Definition tool.
Xml Serialization can serialize the parameters of a method in much the same way that a class is serialized. For example, Xml Serialization of attributes for Web Services also allows flexible sets of Web Services to be created and easily shape the Simple Object Access Protocol (SOAP) that a Web Service expects and responds with. There are two sets of Xml Serialization attributes for Web Services: one attribute set for services described literally by an XSD document, and another attribute set for services that use the SOAP encoding, as defined in Section 5 of the SOAP spec, http://www.w3.org/TR/SOAP/.
For literal services, the attributes listed above can be used for controlling the shape, or arrangement, of the XML document that is being sent to a web service. For example, the following C# code:
creates the following Xml for SOAP:
For encoded SOAP, the Soap*Attributes found within System.Xml.Serialization can be used for controlling the shape of the XML. For instance, the following C# code:
creates the following SOAP:
While the invention has been described with respect to specific examples including presently preferred modes of carrying out the invention, those skilled in the art will appreciate that there are numerous variations and permutations of the above described systems and techniques that fall within the spirit and scope of the invention as set forth in the appended claims.
Claims
1. A method for serializing an object instance to a serial format, the method comprising steps of:
- generating a mapping between an arbitrary annotated source code file and a schema, the arbitrary annotated source code file containing at least one programming type that describes a shape of an object instance and the schema describing a format of a document having a serial format, the mapping defining a correspondence between the shape of the object instance and the format of the document having the serial format; and
- converting an object instance corresponding to the arbitrary annotated source code to the serial format by converting at least one of a public property, a public field and a method parameter of the object instance to a document having the serial format based on the mapping.
2. The method according to claim 1, wherein the step of converting the object instance to the document having the serial format converts the object instance to an eXtensible Markup Language (XML) document.
3. The method according to claim 1, wherein the serial format contains a shape of each class of the object instance and contains data contained within the object instance.
4. The method according to claim 1, wherein the step of generating the mapping generates the mapping based on the arbitrary annotated source code file.
5. The method according to claim 4, wherein the step of generating the mapping between the arbitrary annotated source code file and the schema includes steps of:
- compiling the arbitrary annotated source code file; and
- generating the mapping between the arbitrary annotated source code file and the schema based on the complied arbitrary annotated source code file using reflection.
6. The method according to claim 1, wherein the step of generating the mapping generates the mapping based on a pattern of the schema.
7. The method according to claim 1, wherein the schema is an eXtensible Markup Language (XML) schema (XSD) and the document in the serial format is an XML document,
- the method further comprising a step of converting the XML document to the object instance based on the mapping generated between the arbitrary annotated source code file and the XML schema.
8. The method according to claim 1, wherein the arbitrary annotated source code file includes custom attributes that control a format of the object when the object is converted to the serial format.
9. A method for converting a document in a serial format to an object instance, the method comprising steps of:
- generating a mapping between an arbitrary annotated source code file and a schema, the mapping defining a correspondence between a shape of an object instance and a format of a document having a serial format; and
- converting a document having the serial format to an object instance based on the mapping, the document in the serial format containing at least one of a public property, a public field and a method parameter of the object instance.
10. The method according to claim 9, wherein the document in the serial format is an eXtensible Markup Language (XML) document.
11. The method according to claim 9, wherein the step of generating the mapping generates the mapping based on the arbitrary annotated source code file.
12. The method according to claim 9, wherein the arbitrary annotated code includes custom attributes that control a format of the object.
13. The method according to claim 9, wherein the step of generating the mapping between the arbitrary annotated source code file and the schema includes steps of:
- compiling the arbitrary annotated source code file; and
- generating the mapping between the arbitrary annotated source code file and the schema based on the complied arbitrary annotated source code file using reflection.
14. The method according to claim 9, wherein the step of generating the mapping generates the mapping based on a pattern of the schema.
15. The method according to claim 9, further comprising a step of converting an object instance to a document in a serial format based on the mapping generated between the arbitrary annotated source code file and the schema.
16. The method according to claim 15, wherein the step of converting the object instance to a document in the serial format converts the object instance to an eXtensible Markup Language (XML) document.
17. A computer-readable medium containing computer-executable instructions for performing steps comprising:
- generating a mapping between an arbitrary annotated source code file and a schema, the arbitrary annotated source code containing at least one programming type that describes a shape of an object instance and the schema describing a format of a document having a serial format, the mapping defining a correspondence between the shape of the object instance and the format of the document having the serial format; and
- converting an object instance corresponding to the arbitrary annotated source code to the serial format by converting at least one of a public property, a public field and a method parameter of the object instance to a document having the serial format based on the mapping.
18. The computer-readable medium according to claim 17, wherein the step of converting the object instance to the document having the serial format converts the object instance to an eXtensible Markup Language (XML) document.
19. The computer-readable medium according to claim 17, wherein the serial format contains a shape of each class of the object instance and contains data contained within the object instance.
20. The computer-readable medium according to claim 17, wherein the step of generating the mapping generates the mapping based on the arbitrary annotated source code file.
21. The computer-readable medium according to claim 20, wherein the step of generating the mapping between the arbitrary annotated source code file and the schema includes steps of:
- compiling the arbitrary annotated source code file; and
- generating the mapping between the arbitrary annotated source code file and the schema based on the complied arbitrary annotated source code file using reflection.
22. The computer-readable medium according to claim 17, wherein the step of generating the mapping generates the mapping based on a pattern of the schema and based on at least one predetermined rule relating the schema to at least one selected programming type.
23. The computer-readable medium according to claim 17, wherein the schema is an eXtensible Markup Language (XML) schema (XSD) and the document in the serial format is an XML document,
- the method further comprising a step of converting the XML document to the object instance based on the mapping generated between the arbitrary annotated source code file and the XML schema.
24. The computer-readable medium according to claim 17, wherein the arbitrary annotated source code includes custom attributes that control a format of the object when the object is converted to the serial format.
25. A computer-readable medium containing computer-executable instructions for performing steps comprising:
- generating a mapping between an arbitrary annotated source code file and a schema, the mapping defining a correspondence between a shape of an object instance and a format of a document having a serial format; and
- converting a document having the serial format to an object instance based on the mapping, the document in the serial format containing at least one of a public property, a public field and a method parameter of the object instance.
26. The computer-readable medium according to claim 25, wherein the document in the serial format is an eXtensible Markup Language (XML) document.
27. The computer-readable medium according to claim 25, wherein the step of generating the mapping generates the mapping based on the arbitrary annotated source code file.
28. The computer-readable medium according to claim 25, wherein the arbitrary annotated code includes custom attributes that control a format of the object.
29. The computer-readable medium according to claim 25, wherein the step of generating the mapping between the arbitrary annotated source code file and the schema includes steps of:
- compiling the arbitrary annotated source code file; and
- generating the mapping between the arbitrary annotated source code file and the schema based on the complied arbitrary annotated source code file using reflection.
30. The computer-readable medium according to claim 25, wherein the step of generating the mapping generates the mapping based on a pattern of the schema.
31. The computer-readable medium according to claim 25, further comprising a step of converting an object instance to a document in a serial format based on the mapping generated between the arbitrary annotated source code file and the schema.
32. The computer-readable medium according to claim 25, wherein the step of converting the object instance to a document in the serial format converts the object instance to an eXtensible Markup Language (XML) document.
33. A method for generating a mapping for serializing an object into a document having a serial format and for deserializing a document having a serial format into an object, the method comprising steps of:
- generating a schema corresponding to an annotated source code file, the annotated source code file containing at least one programming type that describes a shape of an object instance, and the schema describing a format of a document having a serial format; and
- generating a mapping between the arbitrary annotated source code file and the schema, the mapping defining a correspondence between the shape of the object instance and the format of the document having the serial format.
34. The method according to claim 33, wherein the document having the serial format is an eXtensible Markup Language (XML) document.
35. The method according to claim 33, wherein the step of generating the mapping between the annotated source code file and the schema includes steps of:
- compiling the annotated source code file; and
- generating the mapping between the annotated source code file and the schema based on the complied annotated source code file using reflection.
36. The method according to claim 33, wherein the step of generating the mapping generates the mapping based on a pattern of the schema.
37. The method according to claim 33, wherein the schema is an eXtensible Markup Language (XML) schema (XSD) and the document in the serial format is an XML document.
38. The method according to claim 33, wherein the arbitrary annotated source code includes custom attributes that control a format of the object when the object is converted to the serial format based on the mapping.
39. A computer-readable medium having computer-executable instructions for performing the steps of claim 33.
40. A method for serializing and deserializing an object, the method comprising steps of:
- generating a schema corresponding to an annotated source code file, the annotated source code file containing at least one programming type that describes a shape of an object instance, and the schema describing a format of a document having a serial format; and
- converting an object instance corresponding to the annotated source code to the serial format by converting at least one of a public property, a public field and a method parameter of the object instance to a document having the serial format based on a mapping.
41. The method according to claim 40, wherein the schema is an eXtensible Markup Language (XML) schema (XSD) and the document in the serial format is an XML document,
- the method further comprising a step of converting the XML document to the object instance based on the mapping generated between the arbitrary annotated source code file and the XML schema.
42. A computer-readable medium having computer-executable instructions for performing the steps of claim 41.
43. The method according to claim 40, wherein the annotated source code includes custom attributes that control a format of the object when the object is converted to the serial format.
44. The method according to claim 40, further comprising a step of generating a mapping between the annotated source code file and the schema, the mapping defining a correspondence between the shape of the object instance and the format of the document having the serial format.
45. The method according to claim 44, wherein the step of generating the mapping between the arbitrary annotated source code file and the schema includes steps of:
- compiling the arbitrary annotated source code file; and
- generating the mapping between the arbitrary annotated source code file and the schema based on the complied arbitrary annotated source code file using reflection.
46. The method according to claim 40, wherein the step of converting the object instance to the document having the serial format converts the object instance to an eXtensible Markup Language (XML) document.
47. The method according to claim 40, wherein the serial format contains a shape of each class of the object instance and contains data contained within the object instance.
48. A method for generating source code based on a schema, the method comprising steps of:
- importing a schema describing a format of a document having a serial format; and
- generating source code based on the imported schema, the generated source code containing at least one programming type that describes a shape of an object instance and is related to the serial format of a document described by the schema.
49. The method according to claim 48, further comprising a step of
- generating a mapping based on the schema, the mapping defining a correspondence between the shape of the object instance and the format of the document having the serial format, and
- wherein the step of generating the source code is based on the generated mapping.
50. The method according to claim 49, wherein the step of generating the mapping generates the mapping based on a pattern of the schema.
51. The method according to claim 48, wherein the schema is an eXtensible Markup Language (XML) schema (XSD) and the document in the serial format is an XML document.
52. The method according to claim 48, wherein the serial format contains a shape of each class of an object instance corresponding to the generated source code.
53. A computer-readable medium having computer-executable instructions for performing the steps of claim 48.
54. A method for generating a schema based on source code, the method comprising steps of:
- importing an annotated source code file containing at least one programming type that describes a shape of an object instance; and
- generating a schema based on the imported annotated source code, the generated schema describing a format of a document having a serial format.
55. The method according to claim 54, wherein the step of importing the annotated source code file includes steps of:
- compiling the annotated source code file; and
- generating a mapping based on the compiled annotated source code file using reflection.
56. The method according to claim 54, wherein the schema is an eXtensible Markup Language (XML) schema (XSD) and the document in the serial format is an XML document.
57. The method according to claim 56, wherein the serial format contains a shape of each class of the object instance.
58. A computer-readable medium having computer-executable instructions for performing the steps of claim 54.
5748890 | May 5, 1998 | Goldberg et al. |
5812996 | September 22, 1998 | Rubin et al. |
5897622 | April 27, 1999 | Blinn et al. |
5940075 | August 17, 1999 | Mutschler, III et al. |
5953524 | September 14, 1999 | Meng et al. |
5961601 | October 5, 1999 | Iyengar |
5983227 | November 9, 1999 | Nazem et al. |
5991802 | November 23, 1999 | Allard et al. |
6014666 | January 11, 2000 | Helland et al. |
6032207 | February 29, 2000 | Wilson |
6076108 | June 13, 2000 | Courts et al. |
6108717 | August 22, 2000 | Kimura et al. |
6178461 | January 23, 2001 | Chan et al. |
6185608 | February 6, 2001 | Hon et al. |
6205480 | March 20, 2001 | Broadhurst et al. |
6212192 | April 3, 2001 | Mirashrafi et al. |
6230160 | May 8, 2001 | Chan et al. |
6247044 | June 12, 2001 | Gosling et al. |
6253228 | June 26, 2001 | Ferris et al. |
6292933 | September 18, 2001 | Bahrs et al. |
6351767 | February 26, 2002 | Batchelder et al. |
6370561 | April 9, 2002 | Allard et al. |
6373841 | April 16, 2002 | Goh et al. |
6397253 | May 28, 2002 | Quinlan et al. |
6405241 | June 11, 2002 | Gosling et al. |
6460141 | October 1, 2002 | Olden |
6480894 | November 12, 2002 | Courts et al. |
6487665 | November 26, 2002 | Andrews et al. |
6557038 | April 29, 2003 | Becker et al. |
6622168 | September 16, 2003 | Datta |
6654932 | November 25, 2003 | Bahrs et al. |
6675228 | January 6, 2004 | Bahrs et al. |
20010054020 | December 20, 2001 | Barth et al. |
20020008703 | January 24, 2002 | Merrill et al. |
20030009519 | January 9, 2003 | Gosling et al. |
20030009567 | January 9, 2003 | Farouk |
20030018827 | January 23, 2003 | Gutherie et al. |
20030025728 | February 6, 2003 | Ebbo et al. |
20030028565 | February 6, 2003 | Landsman et al. |
20030074634 | April 17, 2003 | Emmelmann |
01111679 | December 2000 | EP |
WO 9821651 | May 1998 | WO |
WO 9844695 | October 1998 | WO |
WO 9934288 | July 1999 | WO |
- Wu, Dapeng; Hou, Yiwci Thomas; Zhang, Ya-Qin; “Scalable Video Transport over Wireless IP Networks”; IEEE 2000; pp. 1185-1191.
- Dobson, Rick; “Data Binding in Dynamic HTML”; DBMS Mar. 1998 pp. 47-52.
- Penn, Gerald; Hu, Jianying; Luo, Hengbin; McDonald, Ryan; “Flexible Web Document Analysis for Delivery to Narrow-Bandwidth Devices”; IEEE 2001; pp. 1074-1078.
- Esposito, Dino; “Heaven Sent”; Developer Network Journal issue Mar./Apr. 23, 2001 pp. 18-24.
- Hovanes, Michael E.; Deal, John R. Grizz; Rowberg, Alan H.; “Seamless Multiresolution Display of Portable Wavelet-Compressed Images” Journal of Digital Imaging, vol. 12, No. 2, suppl May 1, 1999, pp. 109-111.
- Ingham; David B; “W3Objects: A Distributed Object-Oriented Web Server” Object-Oriented Web Servers and data Modeling Workshop, Sixth International World Wide Web Conference, Apr. 7, 1997, Santa Clara, CA 4 pages.
- Kunz, T.; El Shentenawy, M.; Gaddah, A.; Hafez, R.; Image Transcoding for Wireless WWW Access: The User Perspective; Multimedia Computing and Netorking 2002, Proceedings of SPIE vol. 467 (2002) pp. 28-33.
- “OOP Launches Hammock at JavaOne” http://www.oop.com/pr2000_06_08.jsp?gui=Plain Jun. 8, 2000, 1 page.
- “Hammock: Think of it as Swing for the Web”; Jul. 14, 2000; 10 pages.
- Hammond, Eric “Hammock Swings through Web interfaces” www.infoworld.com/articles/mt/xml/00/07/17/000717mthammock.xml; Jul. 14, 2000; 3 pages.
- Duan, Nick N.; “Distributed Database Access in a Corporate Environment Using Java” Bell Atlantic Corporation; 1996; 8 pages.
- Nadamoto, Akiyo; Kondo, Hiroyuki; Tanaka, Katsumi; “WebCarousel: Restructuring Web Search Results for Passive Viewing in Mobile Environments” IEEE 2001 p. 164-165.
- Developing ASP-Based Applications: Microsoft 1996, 5 pages.
- “ColdFusion: Web Application Server”; Allair Corp; www.allair.com; 1995-1999; 28 pages.
- “Alterego Networks Introduces First Mobile Web Server for Enterprises, Telcos and Providers”; Redwood City, CA; Nov. 14, 2000; 3 pages.
- “Bluestone Software Layes Foundation for Internet Operating Environment with Total-E-Server . . . ” Screaming Media, Business Wire; Jun. 5, 2000; 3 pages.
- Stewart, Tony; “The Document as Application: Issues and Implications” GCA XML Europe 1999; pp. 575-599.
- Franklin, Keith; “Supercharge Data Binding”; Visual Basic Programmer's Journal, Mar. 2000; 7 pages.
- Shapiro, Marc; “A Binding Protocol for Distributed Shared Objects” Presented at 14th International Conference on Distributed Comp. Sys.; Jun. 21-24, 1994; 17 pages.
- “Best Practices for Creating Adaptive User Interfaces with the Mobile Internet Toolkit”; Microsoft Corporation, Jan. 2002; 15 pages.
- “Best Practices for the Microsoft Mobile Internet Toolkit Image Control”; Microsoft Corporation, Feb. 2002.
- Marshall, James; “HTTP Made Really Easy: A Practical Guide to Writing Clients and Servers”; Aug. 15, 1997; 14 pages.
- Chapter 3, “Mechanics of Developing JavaScript Applications”; Server-Side Javascript Guide; Online! 1999; pp 51-108 www.developer.netscape.com/docs/mauals/ssjs/1_4/ssjs.pdf.
- Chapter 6, “Session Mangement Service”; Server Side Javascript Guide; Online! pp 125-166 www.developer.netscape.com/docs/manuals/ssjs/1_4/ssjs.pdf.
- Anderson, Richard; Homer, Alex; Howard, Rob; Sussman, Dave; “A Preview of Active Server Pages+”; Copyright 2000, Wrox Press, pp. 1-73.
- “HTML Encyclopaedia”; http://www.scit.wlv.ac.uk/encyc/form.html; 1995-1998 2 pages.
- “A Brief History of Hypertext” Microsoft Corporation, 1996, 1 page.
- Frost, Jim; “Windows NT Security”; May 4, 1995; 7 pages; http://world.std.com/˜jimf/papers/nt-security/nt-security.html.
- Davulcu, Hasan; Freire, Juliana; Kifer, Michael; Ramakrishnan, I.V.; “A Layered Architecture for Querying Dynamic Web Content”; ACM 1999; pp. 491-502.
- Kitayama, Fumihiko; Hirose, Shin-Ichi; Kondoh, Goh; Kuse, Kazushi; “Design of a Framework for Dynamic Content Adaptation to Web-Enabled Terminals and Enterprise Applications”; IEEE 1999, pp. 72-79.
- European Search Report 01111678.7-2201.
- European Search Report 01111680.3-2201.
- European Search Report 01111681.1-2201.
- European Search Report 01111682.9-2201.
- Solomon, David A. “Inside Windows NT, Second Edition”; Microsoft Press 1998; pp. 310-319.
- Custer, Helen; “Inside Windows NT”; Microsoft Press 1993; pp. 74-81.
Type: Grant
Filed: Jun 29, 2001
Date of Patent: May 24, 2005
Assignee: Microsoft Corporation (Redmond, WA)
Inventors: Keith W. Ballinger (North Bend, WA), Erik B. Christensen (Seattle, WA), Stefan H. Pharies (Seattle, WA)
Primary Examiner: Sanjiv Shah
Application Number: 09/894,829