US 7,581,177 B1Grant
Conversion of structured documents
Issue Date:2009-08-25
•22 Claims
•15 Drawing Sheets
Abstract
An upgrade module is used to convert arbitrary XML documents into a form compatible with the processing expectations of a particular processing mechanism. In one implementation, the upgrade module can be used to convert XML documents pertaining to an earlier version of the processing mechanism to a form compatible with a later version of the processing mechanism. The processing mechanism can pertain to a solution module that transforms an input XML document into an electronic form. The upgrade module can be automatically generated when a user makes changes to the electronic form in a manner that affects the schema of the electronic form, or which affects other aspects of the electronic form. The upgrade module can be implemented as an Extensible Stylesheet Language Transformation (XSLT) file.
Metadata
Assignee
- Microsoft Corporation
Inventors
- Laurent Mollicone
- Andrew P. Begun
- Ned B. Friend
- Stephen J. Mooney
Application Information
Application Number:US 10/632,437
Filing Date:2003-08-01
Priority Date:2003-08-01
Art Unit:2176
Classifications
IPC:
G06F17/00
Patent Drawings (15 sheets)
Description
Technical Field
[0001] This invention relates to upgrading documents so that the documents are compatible with a version of a document processing mechanism that is used to process the documents. In a more particular implementation, this invention relates to upgrading arbitrary markup language documents so that the documents match a version of a document processing mechanism used to display and edit the markup language documents. In this disclosure, the term “upgrading” has broad connotation, encompassing any kind of modification of a document.
Background
[0002] A document created using a particular version of a document processing mechanism often cannot be satisfactorily processed by later versions of the document processing mechanism. For example, documents created using a particular version of a word processing application or a spreadsheet application (referred to as “original documents”) often cannot be adequately processed by later versions of these applications. For instance, the original documents may lack information that is needed to fully exploit enhanced functionality provided by the later developed versions of the applications. This can result in the suboptimal rendering of the original documents in the later developed versions of these applications, or in extreme cases, the inability to render any information gleaned from the original documents. And even if the original documents can be displayed, these documents may exhibit suboptimal behavior when processed by later versions of these applications.
[0003] Applications developed specifically to render and process markup language documents share the above shortcomings. A typical application includes an Extensible Stylesheet Language (XSL) processor that transforms a document expressed in the Extensible Markup Language (XML) to a document expressed in some presentation-oriented markup language, such as Hypertext Markup Language (HTML). The XSL processor uses a collection of XSL files in transforming XML into HTML, wherein these files effectively specify the appearance of the document as rendered using HTML. The XSL files might have been specifically developed to process particular kinds of XML documents characterized by a specified schema. Subsequently, a developer may have made significant changes in the XSL files to enable processing of new kinds of XML documents having new characteristics, possibly governed by a new schema. Due to these changes, the XSL processor might not be able to satisfactorily process the kinds of XML documents for which it was originally designed. The presentation of the original XML documents using the upgraded XSL files may produce errors, or may be completely proscribed.
[0004] FIG. 1 illustrates a conventional strategy for addressing the above-noted problems. FIG. 1 specifically addresses the case of a program-oriented application, such as a word processor (rather than a declarative-oriented rendering mechanism, such as a markup language browser). In this environment, an application program is upgraded from an application version V1 102 to an application version V2 104. Application version V2 104 may include additional functionality compared to application version V1 102, or may omit certain functionality present in the application version V1 102.
[0005] In the scenario shown in FIG. 1 , a document 106 has been generated by application version V1 102, and it is subsequently desired to process this document 106 using application version V2 104 and render this document 106 on a display device 108. The conventional strategy for handling this task is to provide conversion logic 110. The conversion logic 110 converts the document 106 into a form suitable for processing by application version V2 104 and for presentation on the display device 108. The conversion logic 110 can be implemented as add-on code associated with application version V2 104.
[0006] The above strategy has a number of drawbacks. The conversion logic 110 is specifically tailored to translate information produced by application version V1 102 into information expected by application version V2. Hence, the characteristics of the conversion logic 110 are specifically predicated on a detailed comparison between application versions V1 and V2 (102, 104). As such, the conversion logic 110 might not be able to satisfactorily process documents produced by other sources, and it might not be able to process documents in conjunction with other versions of document processing mechanisms. For example, the conversion logic 110 might not be able to process a document produced by some other predecessor version of the application, such as an application version V0.5, etc. Further, the conversion logic 110 may no longer provide satisfactory results for documents 106 produced by application version V1 102 when the application program is upgraded in the future to a later version—say, for example, version V3. In summary, the conversion logic 110 cannot, and was never intended to, handle documents having arbitrary form and content. In other words, the conversion logic 110 is narrowly tailored to the task of translating between applications V1 102 and V2 104. Markup language processors (e.g., browsers) often resort to a similar tactic to that shown in FIG. 1 , and therefore suffer from the same shortcomings discussed above.
[0007] In the traditional approach, a developer would address these problems by adding modules to the conversion logic 110 to address different permutations in document conversion scenarios. This has drawbacks, because it requires the developers to develop new code each time the processing environment changes.
[0008] Based on the foregoing, there is an exemplary need in the art for a more efficient and flexible technique for upgrading documents so that they are compatible with current versions of document processing mechanisms, such as markup language document processing mechanisms.
Summary
[0009] According to one exemplary implementation, a method is described for upgrading documents for processing by processing functionality. The method includes: (a) inputting a structured document having particular features associated therewith into a particular version of the processing functionality; (b) determining whether each of the particular features matches a set of expected features associated with the particular version of the processing functionality; and (c) modifying the particular features of the input structured document so that the particular features match the set of expected features to thereby provide a modified structured document. After the above-described modification, the method includes: (d) transforming the modified structured document into another document suitable for presentation; (e) displaying the other document suitable for presentation using the processing functionality to provide a displayed document; and (f) editing the displayed document.
[0010] The input structured document can be expressed in the extensible markup language (XML). The other document can be expressed in the hypertext markup language (HTML). In one implementation, the operation of modifying is implemented using an upgrade module that provides a transformation function using extensible stylesheet language (XSL).
[0011] The above-referenced determining of whether each of the particular features matches a set of expected features associated with the particular version of the processing functionality can include determining whether the input structured document contains each node expected by the particular version of the processing functionality. The above-referenced modifying of the particular features of the input structured document to produce the modified structured document can include: (c1) creating each node expected by the particular version of the processing functionality to provide created nodes; (c2) copying node content from the input structured document into corresponding created nodes in the modified structured document for those nodes in the input structured document that have counterpart nodes expected by the particular version of the processing functionality; and (c3) creating default node content in corresponding nodes in the modified structured document for those created nodes that do not have counterpart nodes in the input structured document.
[0012] In one case, the above-referenced “expected features” are specified by a schema associated with the particular version of the processing functionality. In another case, the above-referenced “expected features” are specified by some information other than the schema associated with the particular version of the processing functionality (such as aspects pertaining to the visual presentation of the document that are not dictated by the schema).
[0013] According to another exemplary implementation, a method is described for generating an upgrade module for upgrading documents for processing by processing functionality. The method includes: (a) determining whether a particular version of the processing functionality has been created that warrants generation of the upgrade module; and (b) generating the upgrade module if the creation of the particular version warrants the generation of the upgrade module.
[0014] Related apparatus and computer readable media are also described herein, as well as additional subject matter.
Brief Description of the Drawings
[0015] FIG. 1 shows a known technique for upgrading documents produced by a version V1 of an application so that the documents are compatible with a version V2 of the application.
[0016] FIG. 2 shows a data processing application including functionality for upgrading arbitrary markup language documents so that these documents are compatible with a current version of the data processing application.
[0017] FIG. 3 shows an exemplary architecture of a solution file used, in part, to configure a solution module shown in FIG. 2 .
[0018] FIG. 4 shows an upgrade generation module used in the data processing I application of FIG. 2 to generate an upgrade module.
[0019] FIG. 5 shows three exemplary scenarios involving the upgrading of documents.
[0020] FIG. 6 shows an exemplary apparatus for implementing the data processing application shown in FIG. 2 .
[0021] FIG. 7 shows an exemplary user interface (UI) window for designing an electronic form.
[0022] FIG. 8 shows another user interface window for modifying the electronic form created using the user interface window shown in FIG. 7 .
[0023] FIG. 9 shows an overview of a procedure used to upgrade documents.
[0024] FIGS. 10-12 show additional details regarding the processing steps in the procedure shown in FIG. 9 .
[0025] FIG. 13 shows the use of an exemplary XSL upgrade module to convert an input XML document into a transformed XML document.
[0026] FIG. 14 shows an exemplary computing environment for implementing the data processing application shown in FIGS. 2 and 6 .
[0027] The same numbers are used throughout the disclosure and figures to reference like components and features. Series 100 numbers refer to features originally found in FIG. 1 , series 200 numbers refer to features originally found in FIG. 2 , series 300 numbers refer to features originally found in FIG. 3 , and so on.
Detailed Description
[0028] This disclosure pertains to the visual rendering and editing of structured documents using a data processing application. To provide a concrete framework for discussion, this disclosure will specifically describe the transformation of hierarchically organized data expressed in a markup language into an electronic form that can be visually rendered and edited by an end user. Exemplary forms include a timesheet, work order, travel log, and so on. However, the concepts described herein also have application to other data processing applications besides electronic forms processing.
[0029] The terms “upgrade” and “version” have broad connotation as used in this disclosure. “Upgrading” a document refers generally to modifying the document in any manner to suit expectations of a current manifestation (e.g., version) of the document processing application. In one case, an upgrade refers to a scenario in which a user modifies a document produced by an earlier version of a document processing application to be compatible with a later developed, more enhanced, version of the data processing application. However, the term “upgrade” can also refer to modifying a document produced by a later version of the document processing application so that it is compatible with an earlier version of the document processing application. Accordingly, the term “upgrade” as used herein is value-neutral; it could refer to changes that are considered “better” and “worse” than an original version depending on one's particular data processing requirements and objectives. In still a broader interpretation, the term “upgrade” can refer to the modification of any kind of document produced by any kind of initial document processing application, where such initial document processing application is not considered a predecessor or successor to a current version of a document processing application. And indeed, the initial document need not even be “produced” per se; for instance, the functionality described herein can be used to convert a document that is completely blank or a document that contains completely random information into a format expected by a current version of a document processing application. Due to the liberal interpretation of the term “upgrade,” the term “version” should also be understood to have broad connotation as used herein. The term “version” generally refers to any class or kind of document.
[0030] The above-noted flexibility of the data processing application highlights one of its principal merits. The data processing application can transform an arbitrary structured document (e.g., a markup language document) so that it conforms to the processing requirements of a current version of a data processing application. In this sense, in one implementation, the data processing application uses a transformation mechanism that is stateless. It is stateless in the sense that it does not require prior knowledge or consideration of the kind of documents that are fed into it.
[0031] The above-described property and additional features of the data processing application will be explained in the following disclosure. This disclosure is organized as follows. Section A of this disclosure describes an exemplary design strategy used by a data processing application that includes upgrade functionality. Section B describes an exemplary implementation of the design strategy discussed in Section A. Section C describes an exemplary method of operation of the implementation described in Section B. And Section D describes an exemplary computing environment that can be used to provide the implementation described in Section B.
[0032] A. Exemplary Design Strategy
[0033] Overview of Exemplary Data Processing Application
[0034] FIG. 2 shows an overview of a data processing application 200 for rendering and editing structured documents. To provide a concrete framework for discussion, the upgrading of structured documents is described in the context of the data processing application 200 shown in FIG. 2 . However, the upgrading mechanism can be implemented in many different kinds of systems and environments besides the data processing application 200 shown in FIG. 2 . Prior to describing the upgrading mechanism itself, the following section describes various features of the data processing application 200.
[0035] By way of overview, the data processing application 200 processes structured data 202 expressed in a markup language, transforms this structured data 202 using a solution module 204 to produce transformed information, and presents a rendering of a visual surface 206 on an output device based on the transformed information. An editing user 208 interacts with the visual surface 206, as indicated by arrow 210, using, for instance keyboard 212, mouse device 214, or some other input device. The visual surface 206 can constitute the presentation of a form having data entry fields associated with the structured data 202. In this case, the editing user 208's interaction can involve filling information into the entry fields of the form, such as by entering information into various text boxes, check boxes, etc.
[0036] Each of the above-described principal features—structured data 202, solution module 204, and visual surface 206—will be described in greater detail below.
[0037] To begin with, the structured data 202 can be represented in the Extensible Markup Language (XML). XML is a subset of the Standard Generalized Markup Language (SGML) that enables developers to create customized tags that describe the meaning of data, as opposed to the presentation of data. An XML document is composed of XML elements, each of which includes a start tag (such as <author>), an end tag (such as </author>), and information between the two tags (which is referred to as the content of the elements). An element may include any number (including zero) of name-value pairs (referred to as attributes) related by an equal sign that modifies certain features of the element (such as MONTH=“May”). As shown in FIG. 2 , the elements in an XML document have a hierarchical relationship to each other that can be represented as a data tree 216. The elements in the data tree 216 are also commonly referred to as “nodes.” A so-called XML schema (not illustrated in FIG. 2 ) provides a formal specification that defines the types of elements and the organization of elements that should appear in an XML document in order for that document to be considered so-called well formed.
[0038] The solution module 204 includes transformation functionality 218. The purpose of the transformation functionality 218 is to transform the structured data 202 into the visual surface 206. The transformation functionality 218 can perform this task using so-called style sheets, such as style sheets provided by Extensible Stylesheet Language Transformation (XSLT). XSLT transforms the XML data into a format appropriate for presentation, such as the Hypertext Markup Language (HTML), Extensible Hypertext Markup Language (XHTML), Dynamic HTML (DHTML), etc. In other words, documents expressed in XML include tags that are particularly tailored to convey the meaning of the data in the documents. The XSLT conversion converts the XML documents into another markup language in which the tags pertain to the visual presentation of the information contained in the documents. (To facilitate discussion, the following description assumes the use of HTML to render the documents; however, other presentation-oriented markup languages can be used to render the documents.) Because HTML is a markup language, it can be conceptualized as a view tree 220 that includes a hierarchical organization of nodes, as in the case of data tree 216. The reader is referred to the World Wide Web Consortium's (W3C) specifications for background information regarding XML and XSL.
[0039] Nodes in the view tree 220 can be mapped (i.e., associated) to corresponding nodes in the data tree 216. Further, nodes in the data tree 216 can be mapped to corresponding nodes in the view tree 220. The mapping of nodes in the view tree 220 to nodes in the data tree 216 allows the solution module 204 to correlate editing operations performed on the visual surface 206 to corresponding nodes in an XML document. This allows the solution module 204 to store information entered by the editing user 208 into the XML document during an editing session. Additional information regarding the mapping functionality of the data processing application 200 can be found in the commonly assigned U.S. patent application entitled, “Mapping Between Structured Data and a Visual Surface,” filed on the same day as the present application, which names Prakash Sikchi, Evgeny N. Veselov, and Stephen J. Mooney as inventors.
[0040] The visual surface 206 itself has an appearance that is determined by both the information contained in the structured data 202 as well as the effects of the XSLT transformation provided by the transformation functionality 218. Generally, in the case of electronic forms, the visual surface 206 typically includes a hierarchical structure which is related to the hierarchical structure in the structured data 202. For instance, an exemplary electronic form 222 includes multiple sections pertaining to different topics that reflect the topics in the structured data 202. (However, it is not necessary to have a one-to-one direct correspondence between the organization of the structured data 202 and the organization of the visual surface 206; in other words, the transformation of the structured data 202 to the visual surface 206 is generally considered non-isomorphic). Each section in the exemplary electronic form 222 can include one or more data entry fields for received input from the editing user 208, such as data entry field 224. The data entry fields are also referred to herein as “editing controls.” Different graphical components can be used to implement the editing controls, including text boxes, drop-down list boxes, lists boxes, option buttons (also referred to as radio buttons), check boxes, and so on. FIGS. 7 and 8 , to be described in turn, provide an example of the visual appearance of an electronic form as it is being designed and modified, respectively.
[0041] The functionality of the solution module 204 is defined, in part, by a solution file, such as exemplary solution file 226 stored in storage 228. The solution file 226 essentially constitutes an electronic form template, providing all of the semantic information required to transform the structured data 202 into the visual surface 206. Different XML documents may have been created by, or otherwise refer to, different electronic form templates. Accordingly, different XML documents may have different solution files associated therewith. Various techniques can be used to retrieve a solution file that is associated with a particular XML document. For instance, an appropriate solution file can be retrieved based on URN (Uniform Resource Name) or URL (Uniform Resource Locator) information contained in the header of an input XML document. That header information links the input document to a corresponding solution file.
[0042] Jumping ahead briefly in the sequence of figures, FIG. 3 shows an exemplary organization of the solution file 226. The solution file 226 itself can include a collection of files (302, 304, 306, 308, and 310) that together provide all of the semantic information required to transform the structured data 202 into the visual surface 206. This collection of files can be packaged together. In one exemplary implementation, this collection of files is referred to using an extension .xsn. A form definition file 302, also called a manifest file, forms the centerpiece of the collection. The form definition file 302 contains information about all of the other files in the solution module 204. This file 302 is assigned the exemplary extension .xsf. A schema file 304 is used to constrain and validate the structured data 302. This file is assigned the exemplary extension .xsd. View files 306 provide presentation logic files that are used to present, view, and transform the structured data 302. These files therefore implement the transformation functionality 218 discussed in connection with FIG. 2 . The view files 306 can include multiple files corresponding to multiple possible views (i.e., visual surfaces 206) that the user 208 can select from. The view files 306 are assigned the exemplary extension .xsl. A default data file 308 contains default data that can be displayed in a view for fields that have not been explicitly defined by the user 208. This file 308 is assigned the exemplary extension .xml. Finally, business logic files 310 provide programming code used to implement specific editing behavior, data validation, event handlers, control of data flow, and other features. Such programs can be written in any kind of language, such as the scripting language provided by Microsoft JScript® or VBScript. In this case, these files are assigned the exemplary extensions .js or .vb (for JScript and VBScript, respectively).
[0043] With the above introduction, the focus will now turn to the mechanism provided in the data processing application 200 for upgrading documents.
[0044] Overview of Upgrade Strategy
[0045] Returning to FIG. 2 , when the solution module 204 that produces the electronic form 222 was initially created, the design functionality provided by the data processing application 200 would have generated an XSLT file that implemented the necessary mapping between the structured data 202 and the visual surface 206. This XSLT file is referred to as XSLT-V1. Subsequently, assume that a designing user modified the electronic form 222 and associated solution module 204 in a significant way, such as by deleting data entry fields, adding data entry fields, and so on. Such a change would have the effect of also modifying the schema 304 on which the underlying structured data 202 is based. Accordingly, such a change might warrant changing both the schema 304 associated with the solution module 204 and the XSLT files associated with the solution module 204. As explained above, the schema 304 provides information regarding the general organization and content of structured data 202 as expected by the solution module 204, while the XSLT files provide information regarding how to map the structured data 202 into a desired visual presentation. FIG. 2 specifically illustrates the inclusion of a second version of the XSLT files (i.e., XSLT-V2 230) to handle the above identified change in the electronic form 222.
[0046] FIG. 2 shows exemplary documents that can be processed using the version V2 of the solution module 204 (that uses XSLT-V2 230). A first group of documents 232 pertain to documents created using the current version (V2) of the solution module 204. Hence, these documents are referred to as XML-V2 documents (where the suffix V2 indicates that they were created using version V2 of the solution module 204). A second group of documents 234 pertain to documents created using the first version (V1) of the solution module 204. Hence, these documents are referred to as XML-V1 documents. But as noted above, the solution module 204 is not limited to processing documents that were generated by some version of the solution module 204. The solution module 204 can process any kind of documents, including, in extreme cases, a document produced by an application having virtually no relationship to the solution module 204 and the corresponding electronic form 222. Or indeed, a completely blank document or document containing random nodes can be effectively processed by the solution module 204. A group of documents 236 labeled “XML-arbitrary” is included in FIG. 2 to highlight the ability of the data processing application 200 to process completely arbitrary input documents. For the purposes of illustration, FIG. 2 shows that the particular structured data 202 corresponds to an XML-V1 document produced by a first version of the solution module 204.
[0047] An upgrade module 238 allows the solution module 204 to transform the XML-V1 structured data 202 into a format compatible with version V2 of the solution module By way of overview, the upgrade module 238 performs this task by modifying the XML-V1 structured data 202 so that it conforms to the expectations of the V2 solution module 204. Such “expectations” may pertain to schema-type expectations that are specified in the schema 304 of the solution module 204. Other “expectations” may pertain to aspects which are considered important to the visual appearance and/or behavior of the V2 version of the electronic form 222, but might not be dictated by the schema 304 of the solution module 204. The upgrade module 238 is shown as being encompassed by the transformation functionality 218 because it can be implemented as an XSL transformation file. Namely, the upgrade module 238 works by transforming the XML-V1 structured data 202 into another XML document that is compatible with the V2 version of the solution module 204.
[0048] An upgrade generation module 240 performs the task of generating the upgrade module 238. The upgrade generation module 240 can be triggered to perform this task when the designing user makes a significant change to the electronic form 222. This will prompt the design aspects of the data processing application 200 to generate an XSL file that will convert an input arbitrary XML document into an XML document that is compatible with the expectations of the new version of the solution module 204. In another implementation, the upgrade generation module 240 can generate the upgrade module 238 automatically in any editing circumstance, that is, regardless of the assessed significance of the change.
[0049] Finally, an optional “when-to-upgrade” module 242 determines when to apply the upgrade module 238. The when-to-upgrade module 242 may specify that the upgrade module 238 is to be applied to only documents applied to a range of versions, such as versions 2.0 to 3.3, etc. Information regarding the version of an input document can be gleaned from header information contained in the XML document. This module 242 is optional, however, in the sense that the solution module 204 has the capability of processing any structured document produced by any version of any application, and therefore does not require prior knowledge of the version of the input document.
[0050] Advancing to FIG. 3 once again, this figure shows that the upgrade module 238 can be implemented as an XSLT file 306. The XSLT file 306 also includes the XSLT-V2 230 that implements the transformation of the structured data 202 into the visual surface 206. The when-to-apply module 242 can be implemented as part of the form definition files 302. This implementation is exemplary; other data processing applications can implement the upgrading mechanism in different ways than is shown in FIGS. 2 and 3 .
[0051] FIG. 4 illustrates the logic underlying the upgrade generation module 240. As noted above, the upgrade generation module 240 generates the upgrade module 238 in response to the changed expectations of the solution module 204. A set of expectations 402 in FIG. 4 reflects this concept. As noted above, these expectations 402 can be grouped into two categories. Schema expectations 404 refer to expectations that are dictated by the schema 304 of the new version of the form 222. Other expectations 406 pertain to features of the electronic form 222 that are considered important to the designing user, but are not necessarily dictated by the schema 304. Additional details regarding the second category 406 of expectations will be described shortly. In another implementation, the upgrade generation module 240 can generate the upgrade module 238 in all circumstances.
[0052] FIG. 5 shows three different scenarios (502, 504, 506) that illustrate the operation of the upgrade module 238. All three of these scenarios (502, 504, 506) reflect changes made to an input XML document to accommodate expectations specified by the schema 304 of the solution module 204. Once again, the schema 304 specifies the structure of the XML document that the solution module 204 is expecting to receive and process to create the electronic form 222.
[0053] To begin with, scenario 502 shows the case where the input document 508 represents a document produced by a first version of the solution module 204, and is therefore labeled XML-V1. XML-V1 508 includes a series of nodes that reflect information contained in the document, including nodes R (i.e., signifying the root), B, C, and D. Schema 510 reflects the schema expectations of the version V2 of the solution module 204. The schema 510 corresponds to the nodes in XML-V1 508, except that a new node A has been added. This new node may reflect a new data entry field added to the electronic form 222 by the designing user. In other words, the new node may reflect a new piece of information that is being collected by the electronic form 222. The upgrade module 238 comes into play by creating a new XML document 512 containing created nodes that reflect the expectations of version V2 of the solution module 204. In the new document 512, the contents of nodes R, B, C, and D are copied from the source document XML-V1 508 into the new document 512. In addition, the upgrade module 238 creates new node A, and may assign a default value to this node.
[0054] Scenario 504 represents the case where the document XML-V1 514 contains nodes R, A, B, C, and D, but the schema 516 of version V2 of the solution module 204 omits node A. This change may indicate that the designing user has subsequently modified the electronic form 222 to delete a data entry field. This change indicates that a piece of information is no longer being collection via the electronic form 222. In this situation, the upgrade module 238 comes into play by creating a new XML document 518 that contains nodes R, B, C, and D having content copied from the same-named nodes in document XML-V1 514, but that fails to create node A (because this node is not specified in the schema 516), and thus effectively deletes node A from the input document XML-V1 514.
[0055] Scenario 506 describes the case where the input document XML-V1 520 again includes nodes R, A, B, C, and D. In this case, however, the designing user has renamed node A as node E, and this is reflected in the schema 522. This might correspond to the case where the designing user has renamed a data entry field in the electronic form 222. For example, the designing user might have changed the name of a text entry field from “automobile” to “car,” etc. The upgrade module 238 addresses this case by creating nodes R, B, C, and D having content copied from the same-named nodes in the document XML-V1 520. This yields XML document 524. However, because it does not find node A in the schema 522, the upgrade module 238 does not create this node, and thus effectively deletes it. On the other hand, the upgrade module 238 sees the new node E in the schema 522, and thus adds node E to the transformed XML document 524. This is merely one way to handle the case where nodes are renamed.
[0056] In other cases, the upgrade module 204 can incorporate functionality having the necessary intelligence to detect that a node in the input XML document reflects an identical node in the schema which has been simply renamed (that is, without having to execute the above-described deleting/adding procedure). For example, the structure of an input document can be compared with the structure of a document expected by a current version of an application (e.g., as reflected by the schema associated with the current version). The comparison may reveal a close match between a collection of nodes in the input document and a collection of nodes in the expected structure. The comparison may further reveal a positional correspondence between unmatched nodes in the input document and unmatched nodes in the expected structure. In this circumstance, there is a significant probability that these positionally related unmatched nodes reflect nodes that have simply been renamed. A rule can therefore be fashioned to detect the above-noted pattern and interpret it as a node rename. More generally, other kinds of analysis strategies may be used to detect other commonly encountered conversion pattern scenarios. These strategies can generally rely on positional and inferential analysis of node structure and content, as well as a wide variety of other analysis techniques. Some strategies can be fashioned to reflect common patterns and rules found in particular document processing environments. In another implementation, it is also possible to modify the upgrade module 238 such that it is based on some knowledge of the schema of the input XSL-V1 document; however, this solution to the problem has the drawback of making the upgrade module 238 no longer stateless.
[0057] The scenarios (502, 504, 506) shown in FIG. 5 are highly simplified examples of the transformation functionality provided by the upgrade module 238. In actual cases, the leaf nodes shown in the trees would likely contain a series of child nodes, which, in turn, might include other respective series of child nodes. In this case, the algorithm described in FIG. 5 is performed recursively to process all of these child nodes. Basically, nodes that are expected by version V2 of the solution module 204, but are missing in the structured data 202, are added by the upgrade module 238, and nodes that are not expected by version V2 of the solution module 204, yet are contained in the structured data 202, are essentially deleted.
[0058] The upgrade module 238 can perform other kinds of transformations besides adding and deleting nodes. Some of these other transformations may reflect the dictates of the schema 304 associated with version V2 of the solution module 204. Other transformations may not reflect the dictates of the schema 304; for instance, these other transformations may pertain to visual or behavioral features of the electronic form 222 that the designing user would like duplicated in earlier versions (e.g., V1) of the form 222's documents.
[0059] For instance, version V1 of the electronic form 222 might have specified that a certain data entry field was optional. The schema corresponding to version V would therefore contain information indicating that a node corresponding to this data entry field was optional. As a result of this optional status, some XML documents produced by version V1 may contain this optional node, while others may not. A subsequent second version V2 of the electronic form 222 might have modified the electronic form 222 to make the optional data entry field mandatory. However, this change might not have been propagated to a corresponding change in the schema file 304. As such, the V2 version of the solution module 204 can still “legally” process documents produced by version V1 of the electronic form 222 that lack the optional node, as these documents still conform to the schema (where this node is indicated as optional). This, however, might result various problems with the visual presentation of the electronic form 222. To prevent this from happening, the upgrade module 238 can also modify an input XML document such that it is conformant with the optional status of various nodes specified in the V2 version of the solution module 204, but not necessarily dictated by the schema 304 of the V2 version of the solution module 204.
[0060] In another example, the V2 version of the solution module 204 can capture information regarding the minimum and/or maximum number of nodes of a particular kind that is expected by the V2 version. This numeric information is referred to as cardinality information. In this case, the upgrade module 238 can be used to enforce this expectation by modifying an input document so that it conforms to the cardinality expectations of the V2 version of the solution module 204.
[0061] In another example, the V2 version of the solution module 204 can capture information regarding default values associated with nodes that are expected by the V2 version. In this case, the upgrade module 238 can be used to supply or modify default values in an input document so that this document conforms to the default value expectations of the V2 version of the solution module 204.
[0062] In another example, the V2 version of the solution module 204 might specify that certain data entry fields must contain a value—namely, that these data entry field values are mandatory. In this case, the upgrade module 238 can be used to modify the mandatory status of values associated with nodes in the input document so that this document conforms with the mandatory status expectations of the V2 version of the solution module 204.
[0063] In another example, the V2 version of the solution module 204 might specify that certain formatting applies data entry fields, such as rich text formatting. Rich text formatting requires the capture of formatting information using a data structure. In this case, the upgrade module 238 can be used to modify the formatting of the input document so that it conforms with selected formatting expectations of the V2 version of the solution module 204. However, in general, changes in formatting are considered relatively minor. Hence, many formatting changes are not “enforced” by the upgrade module 238.
[0064] The above-identified expectations are merely illustrative. Different business environments may warrant the use of the upgrade module 238 to enforce a different collection of expectations.
[0065] B. Exemplary Apparatus for Implementing Upgrade Technique
[0066] FIG. 6 shows an overview of an exemplary apparatus 600 for implementing the data processing application 200 shown in FIG. 1 . The apparatus 600 includes a computer 602 that contains one or more processing units 604 and memory 606. Among other information, the memory 606 can store an operating system 608 and the above-described data processing application 200, identified in FIG. 6 as a forms application 610. The forms application 610 can include data files 612 for storing the structured XML data 202, and solution module(s) 614. As noted above, a solution module 614 comprises logic that specifies the appearance and behavior of the visual surface 206 (as was described in connection with FIG. 2 ). The logic provided by solution module 614 is, in turn, determined, in part, by a solution file (such as a solution file 226 composed of the files shown in FIG. 3 ). The computer 602 is coupled to a collection of input devices 616, including the keyboard 212, mouse device 214, as well as other input devices 618. The computer 602 is also coupled to a display device 620.
[0067] In one exemplary implementation, the forms application 610 includes a design mode and an editing mode. The design mode presents design UI 622 on the display device 620 for interaction with a designing user 624. The editing mode presents editing UI 626 on the display device 620 for interaction with the editing user 208. In the design mode, the forms application 610 creates an electronic form 628, or modifies the structure of the electronic form 628 in a way that affects its basic schema. In other words, the design operation produces the solution module 614 that furnishes the electronic form 628. In the editing mode, the editing user 208 uses the electronic form 628 for its intended purpose—that is, by entering information into the electronic form 628 for a business-related purpose or other purpose.
[0068] In the design mode, the forms application 610 can be configured to depict the electronic form 628 under development using a split-screen display technique. More specifically, a forms view portion 630 of the design UI 622 is devoted to a depiction of the normal appearance of the electronic form 628. A data source view portion 632 of the visual surface is devoted to displaying a hierarchical tree 634 that conveys the organization of data fields in the electronic form 628.
[0069] FIG. 7 shows design UI that illustrates the allocation of the visual surface 206 into the forms view portion 630 and the data source view portion 632. As described above, the forms view portion 630 contains a depiction of the normal appearance of the form 628—in this case, exemplary form 702. The form 702 includes a plurality of text box entry fields (e.g., fields 704 and 706). Field 704 is labeled First Name; it allows for entry of an individual's first name. Field 706 is labeled Last Name; it allows for entry of an individual's family name. The data source view portion 632 includes the hierarchical tree 634 showing the nested layout of the text fields (704 and 706) presented in the form 702.
[0070] The forms application 610 offers multiple techniques for creating the electronic form 702. According to one technique, the electronic form 702 can be created from scratch by building the electronic form 702 from successively selected editing controls. The exemplary electronic form 702 shown in FIG. 7 is entirely constructed using the text entry boxes (704 and 706), but other electronic forms can include other kinds of entry fields (i.e., editing controls), such as drop-down list boxes, list boxes, option button, check boxes, and so on.
[0071] Once a form has been created, its design (and associated schema) can be further modified. FIG. 8 shows one exemplary technique for performing this operation. In this technique, the designing user 624 can activate UI functionality 802. This functionality 802 allows the designing user 624 to modify the electronic form 702 that was previously created (in FIG. 7 ), to thereby produce new electronic form 804. There are a myriad of ways that the designing user 624 can decide to modify a prior electronic form, such as by adding data entry fields, deleting existing data entry fields, renaming data entry fields, changing the type of editing control assigned to the data entry fields, changing the layout of data entry fields or other features of the electronic form, or making changes to other properties of the electronic form. In the exemplary case shown in FIG. 8 , the designing user 624 has decided to add a new data entry field 806 to the electronic form 804 (for entering an individual's age). If the designing user 624 makes changes to the form view portion 630, then corresponding changes will be reflected in the data source view 632. In the present scenario, this is reflected by the introduction of the additional node 808 in the data source view 632.
[0072] The changes illustrated in FIG. 8 will warrant making a change to the schema 304 of the solution module 204 associated with this form 804. These changes will also warrant making changes to the XSLT used to create the visual appearance of the electronic form 804. But other changes made to the form 804 might not require modification of the schema 304, as noted in Section A of this disclosure.
[0073] In summary, form 702 shown in FIG. 7 can be referred to as version V1 having a corresponding V1 solution module 204. Form 804 shown in FIG. 8 can be referred to as version V2 having a corresponding V2 solution module 204. Accordingly, documents created using the electronic form 702 can be called XML-V1 documents. Documents created using the electronic form 804 can be called XML-V2 documents. By virtue of the changes shown in FIG. 8 , the forms application 610 also produces an upgrade module The upgrade module 238 is specifically adapted to transform an arbitrary XML document into an XML document that conforms to expectations associated with electronic form 804 and its corresponding V2 solution module 204.
[0074] More specifically, suppose that the editing user 208 makes a request to display and/or edit a particular XML-V1 document. In one implementation, this would prompt the forms application 610 to locate the solution module 204 corresponding to the version V2 of the solution module 204, as this is the most current version. More specifically, the XML-V1 document contains information that identifies a particular kind of form in its header. The forms application 610 can be configured to retrieve the most current version of the solution module 204 corresponding to the kind of form identified in the XML-V1 document's header.
[0075] Having retrieved the V2 solution module 204, the forms application 610 proceeds to transform the XML-V1 document into an XML document which conforms to the expectations of the V2 solution module 204. The following flow charts provide additional details regarding the operations performed in generating and applying the upgrade module 238.
[0076] C. Exemplary Method of Operation
[0077] Overview of Procedure
[0078] FIG. 9 shows an overview of a procedure 900 for creating and applying the version upgrade module 238. To begin with, step 902 entails creating version V1 of a solution module 204. To provide a concrete example, this step 902 can correspond to the creation of the electronic form 702 shown in FIG. 7 , which is accompanied by the creation of a corresponding V1 solution module 204. Step 904 entails creating an XML document using the electronic form 702 and associated V1 solution module 204. Since this document is created with version V1 of the electronic form 702, it is referred to as XML-V1.
[0079] In step 906, the designing editing user 624 creates a version V2 of the electronic form, corresponding, in one example, to the electronic form 804 shown in FIG. 8 . This step 906 can entail adding data entry fields to the electronic form 702, deleting data entry fields, changing the properties of existing data entry fields (such as changing the optional status of data entry fields), and so on. The changes made by the designing user 624 may be significant or relatively minor. If the changes are deemed significant, then step 908 entails generating an upgrade module 238 associated with the changes. If the changes are deemed relatively minor, the forms application 610 will not generate an upgrade module. As previously described, a significant change in an electronic form may pertain to a change in the form's schema, or may pertain to an important aspect of its visual appearance or behavior that is not necessarily dictated by the schema. A relatively minor change might reflect a small change to the appearance of the form, such as a change in the formatting applied to the form. Generally, the decision of when to generate the upgrade module 238 can be tailored to address the requirements and objectives of a particular business environment. FIG. 10 provides additional details regarding the generation of the upgrade module 238. In another implementation, an upgrade module 238 is generated in all circumstances, e.g., even for relatively minor changes.
[0080] In step 910, the editing user 208 attempts to display the XML-V1 document. In step 912, the forms application 610 determines what technique to use to display the XML-V1 document. In one case, the forms application 610 retrieves the version V2 of the solution module 204 corresponding to form 802 shown in FIG. 8 . In another case, the forms application 610 will apply a custom script to display the XML-V1 document, or will use some other technique to render the XML-V1 document. FIG. 11 provides additional details regarding the selection of a technique used to render the XML-V1 document.
[0081] Finally, in step 914, the forms application 610 displays the XML-V1 document using the technique determined in step 912. FIG. 12 provides additional details regarding a procedure used to display the XML-V1 document by applying the upgrade module 238 provided by the V2 solution module 204.
[0082] Generation of the Upgrade Module
[0083] FIG. 10 shows additional details regarding the procedure 908 used to generate the upgrade module 238 (where procedure 908 corresponds to the step 908 shown in FIG. 9 ). In step 1002, the forms application 610 determines whether the designing user 624 has made a change to the electronic form (e.g., the electronic form 702) that warrants generating an upgrade module 238. Once again, a change that affects the schema 304 of a solution module 204 would generally warrant the generation of an upgrade module 238. Other changes may trigger the generation of an upgrade module 238 even though they do not affect the schema 304 of the solution module 204. In step 1004, if the changes are deemed significant, then the forms application 610 generates the upgrade module 238. In step 1006, if the changes are deemed to be minor, then no upgrade module 238 is generated. As stated above, this functionality can be omitted from the forms application 610. For instance, the forms application 610 can be configured to generate the upgrade module 238 in all circumstances, or based on some other criteria than that described above.
[0084] Selection of Document Processing Technique
[0085] FIG. 11 shows additional details regarding the procedure 912 used to select a technique for processing the XML-V1 document (where procedure 912 corresponds to the step 912 shown in FIG. 9 ).
[0086] In step 1102, the forms application 610 determines whether it should display the XML-V1 document using an upgrade module 238 associated with a later version of the electronic form, such as version V2 of the electronic form. More specifically, in one implementation, the XML-V1 document has header information that specifies a solution module 204 that should be used to render the document. In response to a user's request to render the XML-V1 document, the forms application 610 retrieves an appropriate solution module 204 based on the header information in the XML-V1 document. The retrieved solution module 204 contains an upgrade module 238 as well as the when-to-apply module 242. The when-to-apply module 242 determines whether to apply the upgrade module 238 to the input document, such as, in this case, the XML-V1 document. An exemplary excerpt of instructions provided by the when-to-apply module 242 is as follows:
[0087] <xsf:documentVersionUpgrade>
-
- [0088] <xsf:useTransform transform=“upgrade.xsl”
- [0089] minVersionToUpgrade=“1.0” maxVersionToUpgrade=“1.9”>
- [0090] </xsf:useTransform>
[0091] </xsf:documentversionUpgrade>
[0092] These instructions state that the upgrade module 238 is to be applied to versions within a specified range, i.e., between minVersionToUpgrade and maxVersionToUpgrade. In this case, the minVersionToUpgrade is identified as version 1.0, and the maxVersionToUpgrade is specified as version 1.9. Since the user is attempting to render a document (XML-V1) produced by version V1, then the forms application 610 will apply the upgrade module 238 to this version. Step 914 involves displaying the XML-V1 document using the upgrade module 238. Details of step 914 are presented in FIG. 12 .
[0093] In addition, the forms application 610 provides other techniques for processing the XML-V1 document. For instance, in step 1106, the forms application 610 determines whether the retrieved solution module 204 has been configured to apply a special script to convert the XML-V1 document into a format compatible with the retrieved solution module 204. Such a script can be created by a designing user and stored in the business logic 310 of the solution module 204. The forms application 610 can automatically access and apply the script in response to an editing user's request to edit the XML-V1 input document. Step 1108 represents the application of the custom script to the XML-V1 document.
[0094] In another case, as reflected in step 1110, the forms application 610 can apply a custom XSL upgrade module to the inputted document (XML-V1), rather than the upgrade module 238 that was automatically generated by the forms application 610 when the designing user 624 made a change in the electronic form. If this technique is activated, in step 1112, the forms application 610 applies the custom XSL module to the is input document.
[0095] In another case, as reflected in step 1114, the forms application 610 can process the XML-V1 document without first transforming this document using any upgrade module. In this case, as reflected in step 1116, the XML-V1 document is displayed as if it was a document created by a later version (e.g., version V2), which is not the case. This might result in one or more anomalies in the visual presentation of the electronic form, and one or more anomalies in the behavior of the thus displayed form.
[0096] Finally, step 1118 indicates that the forms application 610 can render the XML-V1 document using still additional techniques. Generally, as was assumed in the above discussion, the forms application 610 can be configured to automatically select any of the options shown in FIG. 11 . This can be performed by reading and applying selection preferences specified by the user in advance. In another implementation, the forms application 610 can provide a menu at runtime which identifies the various document processing options available to the editing user 208. This gives the editing user 208 the option of selecting a strategy at that time.
[0097] The Operation of the Upgrade Module
[0098] FIG. 12 describes a procedure 914 used to render a document using an upgrade module 238. This procedure corresponds to step 914 shown in FIGS. 9 and 11 . To provide a concrete example, the procedure 914 will be described in the context of the scenario illustrated in FIGS. 7 and 8 . In this scenario, version V1 of the electronic form 702 includes nodes corresponding to First Name and Last name (associated with data entry fields 704 and 706, respectively). The electronic form 702 is modified as shown in FIG. 8 to produce version V2 of the electronic form 804 that contains the additional node related to Age (associated with data entry field 806). In the case shown in FIG. 12 , the editing user 208 is seeking to render a document produced by version V1 of the is electronic form 702 (i.e., an XML-V1 document) using version V2 of the solution module 204.
[0099] More specifically, the procedure 914 focuses on an exemplary routine 1202 for processing a single leaf node that is expected by version V2 of the solution module 204. As indicated by loop 1204, the routine 1202 is repeated a plurality of times for individual nodes expected by version V2 of the solution module 204. That is, for instance, some of the nodes expected by version V2 include a collection of child nodes associated therewith. Also, these child nodes may have their own respective child nodes. Nodes that have a plurality of nodes associated therewith are referred to as container nodes. The loop 1204 generally indicates that the routine 1202 is repeated for individual nodes within a container.
[0100] Generally, routine 1202 processes an XML-V1 document by making reference to the expectations of version V2 of the solution module 204 to produce a modified document. For a single expected node, step 1206 of the routine 1202 creates a corresponding node in the modified document. That is, if the schema of the version V2 of the solution module 204 indicates that a node is expected, then the routine 1202 creates this node. A node that is present in the XML-V1 document that is not expected by the V2 schema is not created, and thus is effectively deleted.
[0101] Step 1208 determines whether the node created in step 1206 has a counterpart node in the XML-V1 document. If so, in step 1210, the routine 1202 copies the content of the counterpart XML-V1 node into the node created in step 1206. If step 1208 is answered in the negative, then a step 1212 can add default content to the node created in step 1206. In other words, assume that the XML-V1 document omits a node that is expected by the V2 version. In this case, the routine 1202 will add that node to the modified document in step 1206, and then assign a default value to that node in step 1212.
[0102] Once again, the loop 1204 indicates that the routine 1202 is repeated a plurality of times for additional nodes expected by version V2 of the solution module 204.
[0103] As a result of the above-described processing, an XML-V1 document can be successfully processed using the XSLT associated with version V2 of the solution module 204. In effect, the upgrade module 238 internally transforms the XML-V1 document into an XML-V2 document. The same procedure can be performed to transform any input document, such as, in one case, an input document that has a completely arbitrary form relative to the schema of the version V2.
[0104] In the exemplary context of FIGS. 7 and 8 , the upgrade procedure has the effect of adding an age node to the XML-V1 document before it is transformed by the XSLT associated with version V2 of the solution module 204. FIG. 13 illustrates the transformation produced by the upgrade module in this case. In that figure, an input XML-V1 document 1302 is input to a V2 solution module 204. The input document 1302 does not contain a node for Age. In response, the V2 solution module 204 applies the XSL upgrade module 1304. Instructions 1306 in the upgrade module 1304 are specifically responsible for adding an age node to the input XML-V1 document 1302. The upgrade module 1304 has the end effect of producing XML-transformed document 1308. The resultant XML-transformed document 1308 contains an element 1310 pertinent to the added age node. This new node is also assigned the default age of “18,” as specified by the upgrade module 1304.
[0105] The procedure 914 shown in FIGS. 12 and 13 emphasized the processing of added and deleted nodes. These are changes that are dictated by the schema 304 of version V2 of the solution module 204. However, the upgrade module 238 can also transform input documents so that they satisfy other expectations associated with the electronic form 222 that are not necessarily dictated by its schema 304. These other aspects might pertain to the visual presentation of the electronic form 222 or its editing behavior, and so on.
[0106] D. Exemplary Computer Environment
[0107] FIG. 14 illustrates one example of a computing environment 1400 within which the above-described forms application 610 can be either fully or partially implemented. The computing environment 1400 includes the general purpose computer 602 and display device 620 discussed in the context of FIG. 6 . However, the computing environment 1400 can include other kinds of computer and network architectures. For example, although not shown, the computer environment 1400 can include hand-held or laptop devices, set top boxes, programmable consumer electronics, mainframe computers, gaming consoles, etc. Further, FIG. 14 shows elements of the computer environment 1400 grouped together to facilitate discussion. However, the computing environment 1400 can employ a distributed processing configuration. In a distributed computing environment, computing resources can be physically dispersed throughout the environment.
[0108] Exemplary computer 602 includes one or more processors or processing units 604, a system memory 606, and a bus 1402. The bus 1402 connects various system components together. For instance, the bus 1402 connects the processor 604 to the system memory 606. The bus 1402 can be implemented using any kind of bus structure or combination of bus structures, including a memory bus or memory controller, a peripheral bus, an accelerated graphics port, and a processor or local bus using any of a variety of bus architectures. For example, such architectures can include an Industry Standard Architecture (ISA) bus, a Micro Channel Architecture (MCA) bus, an Enhanced ISA (EISA) bus, a Video Electronics Standards Association (VESA) local bus, and a Peripheral Component Interconnects (PCI) bus also known as a Mezzanine bus.
[0109] Computer 602 can also include a variety of computer readable media, including a variety of types of volatile and non-volatile media, each of which can be removable or non-removable. For example, system memory 606 includes computer readable media in the form of volatile memory, such as random access memory (RAM) 1404, and non-volatile memory, such as read only memory (ROM) 1406. ROM 1406 includes an input/output system (BIOS) 1408 that contains the basic routines that help to transfer information between elements within computer 602, such as during start-up. RAM 1404 typically contains data and/or program modules in a form that can be quickly accessed by processing unit 604.
[0110] Other kinds of computer storage media include a hard disk drive 1410 for reading from and writing to a non-removable, non-volatile magnetic media, a magnetic disk drive 1412 for reading from and writing to a removable, non-volatile magnetic disk 1414 (e.g., a “floppy disk”), and an optical disk drive 1416 for reading from and/or writing to a removable, non-volatile optical disk 1418 such as a CD-ROM, DVD-ROM, or other optical media. The hard disk drive 1410, magnetic disk drive 1412, and optical disk drive 1416 are each connected to the system bus 1402 by one or more data media interfaces 1420. Alternatively, the hard disk drive 1410, magnetic disk drive 1412, and optical disk drive 1416 can be connected to the system bus 1402 by a SCSI interface (not shown), or other coupling mechanism. Although not shown, the computer 602 can include other types of computer readable media, such as magnetic cassettes or other magnetic storage devices, flash memory cards, CD-ROM, digital versatile disks (DVD) or other optical storage, electrically erasable programmable read-only memory (EEPROM), etc.
[0111] Generally, the above-identified computer readable media provide non-volatile storage of computer readable instructions, data structures, program modules, and other data for use by computer 602. For instance, the readable media can store the operating system 608, one or more application programs 1422 (such as the forms application 610), other program modules 1424, and program data 1426.
[0112] The computer environment 1400 can include a variety of input devices. For instance, the computer environment 1400 includes the keyboard 212 and a pointing device 214 (e.g., a “mouse”) for entering commands and information into computer 602. The computer environment 1400 can include other input devices (not illustrated), such as a microphone, joystick, game pad, satellite dish, serial port, scanner, card reading devices, digital or video camera, etc. Input/output interfaces 1428 couple the input devices to the processing unit 604. More generally, input devices can be coupled to the computer 602 through any kind of interface and bus structures, such as a parallel port, serial port, game port, universal serial bus (USB) port, etc.
[0113] The computer environment 1400 also includes the display device 620. A video adapter 1430 couples the display device 620 to the bus 1402. In addition to the display device 620, the computer environment 1400 can include other output peripheral devices, such as speakers (not shown), a printer (not shown), etc.
[0114] Computer 602 can operate in a networked environment using logical connections to one or more remote computers, such as a remote computing device 1432. The remote computing device 1432 can comprise any kind of computer equipment, including a general purpose personal computer, portable computer, a server, a router, a network computer, a peer device or other common network node, etc. Remote computing device 1432 can include all of the features discussed above with respect to computer 602, or some subset thereof.
[0115] Any type of network can be used to couple the computer 602 with remote computing device 1432, such as a local area network (LAN) 1434, or a wide area network (WAN) 1436 (such as the Internet). When implemented in a LAN networking environment, the computer 602 connects to local network 1434 via a network interface or adapter 1438. When implemented in a WAN networking environment, the computer 602 can connect to the WAN 1436 via a modem 1440 or other connection strategy. The modem 1440 can be located internal or external to computer 602, and can be connected to the bus 1402 via serial I/O interfaces 1442 other appropriate coupling mechanism. Although not illustrated, the computing environment 1400 can provide wireless communication functionality for connecting computer 602 with remote computing device 1432 (e.g., via modulated radio signals, modulated infrared signals, etc.).
[0116] In a networked environment, the computer 602 can draw from program modules stored in a remote memory storage device 1444. Generally, the depiction of program modules as discrete blocks in FIG. 14 serves only to facilitate discussion; in actuality, the programs modules can be distributed over the computing environment 1400, and this distribution can change in a dynamic fashion as the modules are executed by the processing unit 604.
[0117] Wherever physically stored, one or more memory modules 606, 1414, 1418, 1444, etc. can be provided to store the forms application 610.
[0118] Although the invention has been described in language specific to structural features and/or methodological acts, it is to be understood that the invention defined in the appended claims is not necessarily limited to the specific features or acts described. Rather, the specific features and acts are disclosed as exemplary forms of implementing the claimed invention.
Claims
What is claimed is:
1. A method for upgrading documents for processing by a solution module associated with a markup language schema, comprising:
creating a structured document using a first version of the solution module;
inputting the structured document having particular data entry fields associated therewith into a particular version of the solution module, wherein the particular version is different from the first version of the solution module;
accessing upgrade functionality for:
determining whether each of the particular data entry fields matches expected data entry fields associated with the particular version of the solution module, wherein the determining further comprises determining whether the input structured document lacks data entry fields that were previously classified as optional but are no longer classified as optional in the particular version of the solution module; and
modifying the particular data entry fields of the input structured document so that the particular data entry fields match the expected data entry fields to thereby provide a modified structured document that is compatible with the particular version of the solution module, wherein said modifying occurs prior to transforming the modified structured document into a format suitable for visual presentation on a display device.
2. A method according to claim 1, further comprising:
transforming the modified structured document into another document suitable for presentation;
displaying the another document suitable for presentation using the particular version of the solution module to provide a displayed document; and receiving edits to the displayed document.
3. The method according to claim 1, wherein the input structured document is expressed in a markup language that uses tags pertaining to subject matter fields in the input structured document.
4. The method according to claim 3, wherein the input structured document is expressed in extensible markup language (XML).
5. The method according to claim 2, wherein the another document suitable for presentation is expressed in a markup language that uses tags pertaining to visual features associated with the presentation of the another document.
6. The method according to claim 5, wherein the another document suitable for presentation is expressed in hypertext markup language (HTML).
7. The method according to claim 1, wherein the modifying uses an upgrade module that provides a transformation function using extensible stylesheet language (XSL).
8. The method according to claim 2, wherein the another document suitable for presentation comprises an electronic form having at least one user data entry field therein.
9. The method according to claim 1, wherein the determining of whether each of the particular data entry fields matches expected data entry fields associated with the particular version of the solution module comprises:
determining whether the input structured document contains each of the data entry fields expected by the particular version of the solution module.
10. The method according to claim 9, wherein the modifying of the particular data entry fields of the input structured document to produce the modified structured document comprises:
creating each of the data entry fields expected by the particular version of the solution module to provide created data entry fields;
copying data entry fields content from the input structured document into corresponding created data entry fields in the modified structured document for those data entry fields in the input structured document that have counterpart data entry fields expected by the particular version of the solution module; and
creating default data entry fields content in corresponding data entry fields in the modified structured document for those created data entry fields that do not have counterpart data entry fields in the input structured document.
11. The method according to claim 1, wherein the modifying of the particular data entry fields of the input structured document to produce the modified structured document comprises:
creating new data entry fields in the modified structured document providing that the new data entry fields are lacking in the input structured document and providing that the new data entry fields are required in the particular version of the solution module although considered optional by its schema.
12. The method according to claim 1, wherein the expected data entry fields are specified by a schema associated with the particular version of the solution module.
13. The method according to claim 1, wherein the expected data entry fields are specified by some information other than a schema associated with the particular version of the solution module.
14. The method according to claim 1, wherein the input structured document corresponds to a markup language document generated by an earlier version of the solution module compared to the particular version.
15. The method according to claim 1, wherein the input structured document corresponds to a markup language document generated by a later version of the solution module compared to the particular version.
16. The method according to claim 1, wherein the modifying is performed using an upgrade module, and wherein the upgrade module is developed without knowledge of any requirements of any input structured document.
17. The method according to claim 1, wherein the modifying of the particular data entry fields of the input structured document to produce the modified structured document comprises:
creating new data entry fields in the modified structured document providing that the new data entry fields are lacking in the input structured document and providing that the new data entry fields are required in the particular version of the solution module.
18. The method according to claim 1, wherein the modifying of the particular data entry fields of the input structured document to produce the modified structured document comprises:
omitting from the modified structured document existing data entry fields in the input structured document that are not required in the particular version of the solution module.
19. A method for generating an upgrade module for upgrading documents for processing by a solution module associated with a markup language schema, comprising:
determining whether a particular version of the solution module has been created that warrants generation of the upgrade module;
when the determination indicates that generation of the upgrade module is warranted, generating the upgrade module;
configuring the upgrade module to modify an input structured document having particular data entry fields associated therewith to create an updated document which conforms to expected data entry fields associated with the particular version of the solution module;
modifying the input structured document to create new data entry fields in the updated document provided that the new data entry fields are required in the particular version of the solution module even if the new data entry fields are considered optional by its schema; and
displaying the updated document on a display device.
20. The method of claim 19, wherein the upgrade module is generated using extensible stylesheet language (XSL).
21. The method according to claim 19, further comprising:
configuring the upgrade module to modify the particular data entry fields in the input structured document such that the updated document conforms to the expected data entry fields associated with the particular version of the solution module.
22. The method according to claim 19, further comprising:
configuring the upgrade module to omit data entry fields in
the input structured document from the updated document such that the updated document conforms to the expected data entry fields associated with the particular version of the solution module.
Patent Citations (649)
| Patent | Date | Inventor | Cited By |
|---|---|---|---|
| US4201978(A) | 1980-05-01 | Nally | Applicant |
| US4498147(A) | 1985-02-01 | Agnew et al. | Applicant |
| US4514800(A) | 1985-04-01 | Gruner et al. | Applicant |
| US4564752(A) | 1986-01-01 | Lepic et al. | Applicant |
| US4641274(A) | 1987-02-01 | Swank | Applicant |
| US4674040(A) | 1987-06-01 | Barker et al. | Applicant |
| US4739477(A) | 1988-04-01 | Barker et al. | Applicant |
| US4815029(A) | 1989-03-01 | Barker et al. | Applicant |
| US4847749(A) | 1989-07-01 | Collins et al. | Applicant |
| US4910663(A) | 1990-03-01 | Bailey | Applicant |
| US4933880(A) | 1990-06-01 | Borgendale et al. | Applicant |
| US4962475(A) | 1990-10-01 | Hernandez et al. | Applicant |
| US5025484(A) | 1991-06-01 | Yamanari et al. | Applicant |
| US5072412(A) | 1991-12-01 | Henderson, Jr. et al. | Applicant |
| US5179703(A) | 1993-01-01 | Evans | Examiner |
| US5187786(A) | 1993-02-01 | Densmore et al. | Applicant |
| US5191645(A) | 1993-03-01 | Carlucci et al. | Applicant |
| US5195183(A) | 1993-03-01 | Miller et al. | Applicant |
| US5204947(A) | 1993-04-01 | Bernstein et al. | Applicant |
| US5206951(A) | 1993-04-01 | Khoyi et al. | Applicant |
| US5218672(A) | 1993-06-01 | Morgan et al. | Applicant |
| US5222160(A) | 1993-06-01 | Sakai et al. | Applicant |
| US5228100(A) | 1993-07-01 | Takeda et al. | Applicant |
| US5237680(A) | 1993-08-01 | Adams et al. | Applicant |
| US5249275(A) | 1993-09-01 | Srivastava | Applicant |
| US5274803(A) | 1993-12-01 | Dubin et al. | Applicant |
| US5297249(A) | 1994-03-01 | Bernstein et al. | Applicant |
| US5297283(A) | 1994-03-01 | Kelly, Jr. et al. | Applicant |
| US5313631(A) | 1994-05-01 | Kao | Applicant |
| US5313646(A) | 1994-05-01 | Hendricks et al. | Applicant |
| US5317686(A) | 1994-05-01 | Salas et al. | Applicant |
| US5333317(A) | 1994-07-01 | Dann | Applicant |
| US5339423(A) | 1994-08-01 | Beitel et al. | Applicant |
| US5339424(A) | 1994-08-01 | Fushimi | Applicant |
| US5341478(A) | 1994-08-01 | Travis, Jr. et al. | Applicant |
| US5369766(A) | 1994-11-01 | Nakano et al. | Applicant |
| US5369778(A) | 1994-11-01 | San Soucie et al. | Applicant |
| US5371675(A) | 1994-12-01 | Greif et al. | Applicant |
| US5377323(A) | 1994-12-01 | Vasudevan | Applicant |
| US5379419(A) | 1995-01-01 | Hefferman et al. | Applicant |
| US5381547(A) | 1995-01-01 | Flug et al. | Applicant |
| US5390325(A) | 1995-02-01 | Miller | Applicant |
| US5408665(A) | 1995-04-01 | Fitzgerald | Applicant |
| US5410646(A) | 1995-04-01 | Tondevold et al. | Applicant |
| US5410688(A) | 1995-04-01 | Williams et al. | Applicant |
| US5412772(A) | 1995-05-01 | Monson | Examiner |
| US5434975(A) | 1995-07-01 | Allen | Applicant |
| US5436637(A) | 1995-07-01 | Gayraud et al. | Applicant |
| US5438659(A) | 1995-08-01 | Notess et al. | Applicant |
| US5440744(A) | 1995-08-01 | Jacobson et al. | Applicant |
| US5446842(A) | 1995-08-01 | Schaeffer et al. | Applicant |
| US5455875(A) | 1995-10-01 | Chevion et al. | Applicant |
| US5459865(A) | 1995-10-01 | Heninger et al. | Applicant |
| US5481722(A) | 1996-01-01 | Skinner | Applicant |
| US5497489(A) | 1996-03-01 | Menne | Applicant |
| US5504898(A) | 1996-04-01 | Klein | Applicant |
| US5517655(A) | 1996-05-01 | Collins et al. | Applicant |
| US5535389(A) | 1996-07-01 | Elder et al. | Applicant |
| US5542070(A) | 1996-07-01 | LeBlanc et al. | Applicant |
| US5550976(A) | 1996-08-01 | Henderson et al. | Applicant |
| US5551035(A) | 1996-08-01 | Arnold et al. | Applicant |
| US5555325(A) | 1996-09-01 | Burger | Applicant |
| US5566330(A) | 1996-10-01 | Sheffield | Applicant |
| US5572643(A) | 1996-11-01 | Judson | Applicant |
| US5572648(A) | 1996-11-01 | Bibayan | Applicant |
| US5577252(A) | 1996-11-01 | Nelson et al. | Applicant |
| US5581686(A) | 1996-12-01 | Koppolu et al. | Applicant |
| US5581760(A) | 1996-12-01 | Atkinson et al. | Applicant |
| US5600789(A) | 1997-02-01 | Parker et al. | Applicant |
| US5602996(A) | 1997-02-01 | Powers, III et al. | Applicant |
| US5608720(A) | 1997-03-01 | Biegel et al. | Applicant |
| US5625783(A) | 1997-04-01 | Ezekiel et al. | Applicant |
| US5627979(A) | 1997-05-01 | Chang et al. | Applicant |
| US5630126(A) | 1997-05-01 | Redpath | Applicant |
| US5634121(A) | 1997-05-01 | Tracz et al. | Applicant |
| US5634124(A) | 1997-05-01 | Khoyi et al. | Applicant |
| US5640544(A) | 1997-06-01 | Onodera et al. | Applicant |
| US5644738(A) | 1997-07-01 | Goldman et al. | Applicant |
| US5649099(A) | 1997-07-01 | Theimer et al. | Applicant |
| US5659729(A) | 1997-08-01 | Nielsen | Applicant |
| US5664178(A) | 1997-09-01 | Sinofsky | Applicant |
| US5668966(A) | 1997-09-01 | Ono et al. | Applicant |
| US5669005(A) | 1997-09-01 | Curbow et al. | Applicant |
| US5682536(A) | 1997-10-01 | Atkinson et al. | Applicant |
| US5689667(A) | 1997-11-01 | Kurtenbach | Applicant |
| US5689703(A) | 1997-11-01 | Atkinson et al. | Applicant |
| US5704029(A) | 1997-12-01 | Wright, Jr. | Applicant |
| US5706501(A) | 1998-01-01 | Horikiri et al. | Applicant |
| US5717939(A) | 1998-02-01 | Bricklin et al. | Applicant |
| US5721824(A) | 1998-02-01 | Taylor | Applicant |
| US5740439(A) | 1998-04-01 | Atkinson et al. | Applicant |
| US5742504(A) | 1998-04-01 | Meyer et al. | Applicant |
| US5745683(A) | 1998-04-01 | Lee et al. | Applicant |
| US5745712(A) | 1998-04-01 | Turpin et al. | Applicant |
| US5748807(A) | 1998-05-01 | Lopresti et al. | Applicant |
| US5758184(A) | 1998-05-01 | Lucovsky et al. | Applicant |
| US5758358(A) | 1998-05-01 | Ebbo | Applicant |
| US5761408(A) | 1998-06-01 | Kolawa et al. | Applicant |
| US5761683(A) | 1998-06-01 | Logan et al. | Applicant |
| US5764984(A) | 1998-06-01 | Loucks | Applicant |
| US5764985(A) | 1998-06-01 | Smale | Applicant |
| US5778372(A) | 1998-07-01 | Cordell et al. | Applicant |
| US5778402(A) | 1998-07-01 | Gipson | Applicant |
| US5784555(A) | 1998-07-01 | Stone | Applicant |
| US5790796(A) | 1998-08-01 | Sadowsky | Applicant |
| US5798757(A) | 1998-08-01 | Smith | Applicant |
| US5801701(A) | 1998-09-01 | Koppolu et al. | Applicant |
| US5802304(A) | 1998-09-01 | Stone | Applicant |
| US5806079(A) | 1998-09-01 | Rivette et al. | Applicant |
| US5815830(A) | 1998-09-01 | Anthony | Applicant |
| US5826265(A) | 1998-10-01 | Van Huben et al. | Applicant |
| US5835777(A) | 1998-11-01 | Staelin | Applicant |
| US5838906(A) | 1998-11-01 | Doyle et al. | Applicant |
| US5842018(A) | 1998-11-01 | Atkinson et al. | Applicant |
| US5845077(A) | 1998-12-01 | Fawcett | Applicant |
| US5845090(A) | 1998-12-01 | Collins, III et al. | Applicant |
| US5854630(A) | 1998-12-01 | Nielsen | Applicant |
| US5859973(A) | 1999-01-01 | Carpenter et al. | Applicant |
| US5862372(A) | 1999-01-01 | Morris et al. | Applicant |
| US5862379(A) | 1999-01-01 | Rubin et al. | Applicant |
| US5864819(A) | 1999-01-01 | De Armas et al. | Applicant |
| US5907704(A) | 1999-05-01 | Gudmundson et al. | Applicant |
| US5910895(A) | 1999-06-01 | Proskauer et al. | Applicant |
| US5911776(A) | 1999-06-01 | Guck | Applicant |
| US5915112(A) | 1999-06-01 | Boutcher | Applicant |
| US5922072(A) | 1999-07-01 | Hutchinson et al. | Applicant |
| US5928363(A) | 1999-07-01 | Ruvolo | Applicant |
| US5929858(A) | 1999-07-01 | Shibata et al. | Applicant |
| US5940075(A) | 1999-08-01 | Mutschler, III et al. | Applicant |
| US5950010(A) | 1999-09-01 | Hesse et al. | Applicant |
| US5956481(A) | 1999-09-01 | Walsh et al. | Applicant |
| US5963964(A) | 1999-10-01 | Nielsen | Applicant |
| US5973696(A) | 1999-10-01 | Agranat et al. | Applicant |
| US5974454(A) | 1999-10-01 | Apfel et al. | Applicant |
| US5982370(A) | 1999-11-01 | Kamper | Applicant |
| US5983348(A) | 1999-11-01 | Ji | Applicant |
| US5987480(A) | 1999-11-01 | Donohue et al. | Applicant |
| US5991710(A) | 1999-11-01 | Papineni et al. | Applicant |
| US5991731(A) | 1999-11-01 | Colon et al. | Applicant |
| US5991877(A) | 1999-11-01 | Luckenbaugh | Applicant |
| US5995103(A) | 1999-11-01 | Ashe | Applicant |
| US5999740(A) | 1999-12-01 | Rowley | Applicant |
| US6005570(A) | 1999-12-01 | Gayraud et al. | Applicant |
| US6014135(A) | 2000-01-01 | Fernandes | Applicant |
| US6016520(A) | 2000-01-01 | Facq et al. | Applicant |
| US6026379(A) | 2000-02-01 | Haller et al. | Applicant |
| US6026416(A) | 2000-02-01 | Kanerva et al. | Applicant |
| US6031989(A) | 2000-02-01 | Cordell | Applicant |
| US6035297(A) | 2000-03-01 | Van Huben et al. | Applicant |
| US6044205(A) | 2000-03-01 | Reed et al. | Applicant |
| US6052531(A) | 2000-04-01 | Waldin et al. | Applicant |
| US6052710(A) | 2000-04-01 | Saliba et al. | Applicant |
| US6054987(A) | 2000-04-01 | Richardson | Applicant |
| US6072870(A) | 2000-06-01 | Nguyen et al. | Applicant |
| US6078326(A) | 2000-06-01 | Kilmer et al. | Applicant |
| US6078327(A) | 2000-06-01 | Liman et al. | Applicant |
| US6078924(A) | 2000-06-01 | Ainsbury et al. | Applicant |
| US6081610(A) | 2000-06-01 | Dwork et al. | Applicant |
| US6084585(A) | 2000-07-01 | Kraft et al. | Applicant |
| US6088708(A) | 2000-07-01 | Burch et al. | Applicant |
| US6091417(A) | 2000-07-01 | Lefkowitz | Applicant |
| US6094657(A) | 2000-07-01 | Hailpern et al. | Applicant |
| US6097382(A) | 2000-08-01 | Rosen et al. | Applicant |
| US6098081(A) | 2000-08-01 | Heidorn et al. | Applicant |
| US6108637(A) | 2000-08-01 | Blumenau | Applicant |
| US6108783(A) | 2000-08-01 | Krawczyk et al. | Applicant |
| US6115646(A) | 2000-09-01 | Fiszman et al. | Applicant |
| US6121965(A) | 2000-09-01 | Kenney et al. | Applicant |
| US6122647(A) | 2000-09-01 | Horowitz et al. | Applicant |
| US6144969(A) | 2000-11-01 | Inokuchi et al. | Applicant |
| US6151624(A) | 2000-11-01 | Teare et al. | Applicant |
| US6154128(A) | 2000-11-01 | Wookey et al. | Applicant |
| US6163772(A) | 2000-12-01 | Kramer et al. | Applicant |
| US6167521(A) | 2000-12-01 | Smith et al. | Applicant |
| US6167523(A) | 2000-12-01 | Strong | Applicant |
| US6182094(B1) | 2001-01-01 | Humpleman et al. | Applicant |
| US6182095(B1) | 2001-01-01 | Leymaster et al. | Applicant |
| US6188401(B1) | 2001-02-01 | Peyer | Applicant |
| US6191797(B1) | 2001-02-01 | Politis | Applicant |
| US6192367(B1) | 2001-02-01 | Hawley et al. | Applicant |
| US6195661(B1) | 2001-02-01 | Filepp et al. | Applicant |
| US6199204(B1) | 2001-03-01 | Donohue | Applicant |
| US6209128(B1) | 2001-03-01 | Gerard et al. | Applicant |
| US6216152(B1) | 2001-04-01 | Wong et al. | Applicant |
| US6219698(B1) | 2001-04-01 | Iannucci et al. | Applicant |
| US6225996(B1) | 2001-05-01 | Gibb et al. | Applicant |
| US6235027(B1) | 2001-05-01 | Herzon | Applicant |
| US6253366(B1) | 2001-06-01 | Mutschler, III | Applicant |
| US6253374(B1) | 2001-06-01 | Dresevic et al. | Applicant |
| US6263313(B1) | 2001-07-01 | Milsted et al. | Applicant |
| US6266810(B1) | 2001-07-01 | Tanaka et al. | Applicant |
| US6268852(B1) | 2001-07-01 | Lindhorst et al. | Applicant |
| US6272506(B1) | 2001-08-01 | Bell | Applicant |
| US6275227(B1) | 2001-08-01 | DeStefano | Applicant |
| US6275599(B1) | 2001-08-01 | Adler et al. | Applicant |
| US6279042(B1) | 2001-08-01 | Ouchi | Applicant |
| US6281896(B1) | 2001-08-01 | Alimpich et al. | Applicant |
| US6282711(B1) | 2001-08-01 | Halpern et al. | Applicant |
| US6286033(B1) | 2001-09-01 | Kishinsky et al. | Applicant |
| US6292897(B1) | 2001-09-01 | Gennaro et al. | Applicant |
| US6297819(B1) | 2001-10-01 | Furst | Applicant |
| US6300948(B1) | 2001-10-01 | Geller et al. | Applicant |
| US6307955(B1) | 2001-10-01 | Zank et al. | Applicant |
| US6308179(B1) | 2001-10-01 | Petersen et al. | Applicant |
| US6308273(B1) | 2001-10-01 | Goertzel et al. | Applicant |
| US6311271(B1) | 2001-10-01 | Gennaro et al. | Applicant |
| US6314415(B1) | 2001-11-01 | Mukherjee | Applicant |
| US6321259(B1) | 2001-11-01 | Ouellette et al. | Applicant |
| US6321334(B1) | 2001-11-01 | Jerger et al. | Applicant |
| US6327628(B1) | 2001-12-01 | Anuff et al. | Applicant |
| US6331864(B1) | 2001-12-01 | Coco et al. | Applicant |
| US6342907(B1) | 2002-01-01 | Petty et al. | Examiner |
| US6343149(B1) | 2002-01-01 | Motoiwa | Applicant |
| US6343302(B1) | 2002-01-01 | Graham | Applicant |
| US6345256(B1) | 2002-02-01 | Milsted et al. | Applicant |
| US6345278(B1) | 2002-02-01 | Hitchcock et al. | Applicant |
| US6345361(B1) | 2002-02-01 | Jerger et al. | Applicant |
| US6347323(B1) | 2002-02-01 | Garber et al. | Applicant |
| US6349408(B1) | 2002-02-01 | Smith | Applicant |
| US6351574(B1) | 2002-02-01 | Yair et al. | Applicant |
| US6353926(B1) | 2002-03-01 | Parthesarathy et al. | Applicant |
| US6356906(B1) | 2002-03-01 | Lippert et al. | Applicant |
| US6357038(B1) | 2002-03-01 | Scouten | Applicant |
| US6366907(B1) | 2002-04-01 | Fanning et al. | Applicant |
| US6366912(B1) | 2002-04-01 | Wallent et al. | Applicant |
| US6367013(B1) | 2002-04-01 | Bisbee et al. | Applicant |
| US6369840(B1) | 2002-04-01 | Barnett et al. | Applicant |
| US6369841(B1) | 2002-04-01 | Salomon et al. | Applicant |
| US6374402(B1) | 2002-04-01 | Schmeidler et al. | Applicant |
| US6381742(B2) | 2002-04-01 | Forbes et al. | Applicant |
| US6381743(B1) | 2002-04-01 | Mutschler, III | Applicant |
| US6389434(B1) | 2002-05-01 | Rivette et al. | Applicant |
| US6393456(B1) | 2002-05-01 | Ambler et al. | Applicant |
| US6396488(B1) | 2002-05-01 | Simmons et al. | Applicant |
| US6405221(B1) | 2002-06-01 | Levine et al. | Applicant |
| US6408311(B1) | 2002-06-01 | Baisley et al. | Applicant |
| US6414700(B1) | 2002-07-01 | Kurtenbach et al. | Applicant |
| US6421070(B1) | 2002-07-01 | Ramos et al. | Applicant |
| US6421656(B1) | 2002-07-01 | Cheng et al. | Applicant |
| US6425125(B1) | 2002-07-01 | Fries et al. | Applicant |
| US6429885(B1) | 2002-08-01 | Saib et al. | Applicant |
| US6434563(B1) | 2002-08-01 | Pasquali et al. | Applicant |
| US6434564(B2) | 2002-08-01 | Ebert | Applicant |
| US6442563(B1) | 2002-08-01 | Bacon et al. | Applicant |
| US6442755(B1) | 2002-08-01 | Lemmons et al. | Applicant |
| US6446110(B1) | 2002-09-01 | Lection et al. | Applicant |
| US6457009(B1) | 2002-09-01 | Bollay | Applicant |
| US6460058(B2) | 2002-10-01 | Koppolu et al. | Applicant |
| US6463419(B1) | 2002-10-01 | Kluss | Applicant |
| US6470349(B1) | 2002-10-01 | Heninger et al. | Applicant |
| US6473800(B1) | 2002-10-01 | Jerger et al. | Applicant |
| US6476828(B1) | 2002-11-01 | Burkett et al. | Examiner |
| US6476833(B1) | 2002-11-01 | Moshfeghi | Applicant |
| US6477544(B1) | 2002-11-01 | Bolosky et al. | Applicant |
| US6480860(B1) | 2002-11-01 | Monday | Applicant |
| US6487566(B1) | 2002-11-01 | Sundaresan | Examiner |
| US6490601(B1) | 2002-12-01 | Markus et al. | Applicant |
| US6493702(B1) | 2002-12-01 | Adar et al. | Applicant |
| US6501864(B1) | 2002-12-01 | Eguchi et al. | Applicant |
| US6502101(B1) | 2002-12-01 | Verprauskus et al. | Applicant |
| US6502103(B1) | 2002-12-01 | Frey et al. | Applicant |
| US6505230(B1) | 2003-01-01 | Mohan et al. | Applicant |
| US6505300(B2) | 2003-01-01 | Chan et al. | Applicant |
| US6507856(B1) | 2003-01-01 | Chen et al. | Applicant |
| US6516322(B1) | 2003-02-01 | Meredith | Applicant |
| US6519617(B1) | 2003-02-01 | Wanderski et al. | Applicant |
| USRE38070(E) | 2003-04-01 | Spies et al. | Applicant |
| US6546546(B1) | 2003-04-01 | Van Doorn | Applicant |
| US6549221(B1) | 2003-04-01 | Brown et al. | Applicant |
| US6549878(B1) | 2003-04-01 | Lowry et al. | Applicant |
| US6549922(B1) | 2003-04-01 | Srivastava et al. | Applicant |
| US6553402(B1) | 2003-04-01 | Makarios et al. | Applicant |
| US6560616(B1) | 2003-05-01 | Garber | Applicant |
| US6560620(B1) | 2003-05-01 | Ching | Applicant |
| US6560640(B2) | 2003-05-01 | Smethers | Applicant |
| US6563514(B1) | 2003-05-01 | Samar | Applicant |
| US6571253(B1) | 2003-05-01 | Thompson et al. | Applicant |
| US6578144(B1) | 2003-06-01 | Gennaro et al. | Applicant |
| US6581061(B2) | 2003-06-01 | Graham | Applicant |
| US6584469(B1) | 2003-06-01 | Chiang et al. | Applicant |
| US6584548(B1) | 2003-06-01 | Bourne et al. | Applicant |
| US6585778(B1) | 2003-07-01 | Hind et al. | Applicant |
| US6589290(B1) | 2003-07-01 | Maxwell et al. | Examiner |
| US6594686(B1) | 2003-07-01 | Edwards et al. | Applicant |
| US6598219(B1) | 2003-07-01 | Lau | Applicant |
| US6603489(B1) | 2003-08-01 | Edlund et al. | Applicant |
| US6604099(B1) | 2003-08-01 | Chung et al. | Applicant |
| US6606606(B2) | 2003-08-01 | Star | Applicant |
| US6609200(B2) | 2003-08-01 | Anderson et al. | Applicant |
| US6611822(B1) | 2003-08-01 | Beams et al. | Applicant |
| US6611840(B1) | 2003-08-01 | Baer et al. | Applicant |
| US6611843(B1) | 2003-08-01 | Jacobs | Applicant |
| US6613098(B1) | 2003-09-01 | Sorge et al. | Applicant |
| US6615276(B1) | 2003-09-01 | Mastrianni et al. | Applicant |
| US6629109(B1) | 2003-09-01 | Koshisaka | Applicant |
| US6631357(B1) | 2003-10-01 | Perkowski | Applicant |
| US6631379(B2) | 2003-10-01 | Cox | Applicant |
| US6631497(B1) | 2003-10-01 | Jamshidi et al. | Applicant |
| US6631519(B1) | 2003-10-01 | Nicholson et al. | Applicant |
| US6632251(B1) | 2003-10-01 | Rutten et al. | Applicant |
| US6635089(B1) | 2003-10-01 | Burkett et al. | Applicant |
| US6636845(B2) | 2003-10-01 | Chau et al. | Applicant |
| US6643633(B2) | 2003-11-01 | Chau et al. | Applicant |
| US6643652(B2) | 2003-11-01 | Helgeson et al. | Applicant |
| US6643684(B1) | 2003-11-01 | Malkin et al. | Applicant |
| US6651217(B1) | 2003-11-01 | Kennedy et al. | Applicant |
| US6654737(B1) | 2003-11-01 | Nunez | Applicant |
| US6654932(B1) | 2003-11-01 | Bahrs et al. | Applicant |
| US6658417(B1) | 2003-12-01 | Stakutis et al. | Applicant |
| US6658622(B1) | 2003-12-01 | Aiken et al. | Applicant |
| US6661920(B1) | 2003-12-01 | Skinner | Applicant |
| US6668369(B1) | 2003-12-01 | Krebs et al. | Applicant |
| US6671805(B1) | 2003-12-01 | Brown et al. | Applicant |
| US6675202(B1) | 2004-01-01 | Perttunen | Applicant |
| US6678717(B1) | 2004-01-01 | Schneider | Applicant |
| US6681370(B2) | 2004-01-01 | Gournares et al. | Applicant |
| US6691230(B1) | 2004-02-01 | Bardon | Applicant |
| US6691281(B1) | 2004-02-01 | Sorge et al. | Applicant |
| US6697944(B1) | 2004-02-01 | Jones et al. | Applicant |
| US6701434(B1) | 2004-03-01 | Rohatgi | Applicant |
| US6701486(B1) | 2004-03-01 | Weber et al. | Applicant |
| US6704906(B1) | 2004-03-01 | Yankovich et al. | Applicant |
| US6711679(B1) | 2004-03-01 | Guski et al. | Applicant |
| US6720985(B1) | 2004-04-01 | Silverbrook et al. | Applicant |
| US6725426(B1) | 2004-04-01 | Pavlov | Applicant |
| US6728755(B1) | 2004-04-01 | de Ment | Applicant |
| US6745367(B1) | 2004-06-01 | Bates et al. | Applicant |
| US6748385(B1) | 2004-06-01 | Rodkin et al. | Applicant |
| US6751777(B2) | 2004-06-01 | Bates et al. | Applicant |
| US6754874(B1) | 2004-06-01 | Richman | Applicant |
| US6757826(B1) | 2004-06-01 | Paltenghe | Applicant |
| US6757868(B1) | 2004-06-01 | Glaser et al. | Applicant |
| US6760723(B2) | 2004-07-01 | Oshinsky et al. | Applicant |
| US6763343(B1) | 2004-07-01 | Brooke et al. | Applicant |
| US6772139(B1) | 2004-08-01 | Smith, III | Applicant |
| US6772165(B2) | 2004-08-01 | O'Carroll | Applicant |
| US6774926(B1) | 2004-08-01 | Ellis et al. | Applicant |
| US6779154(B1) | 2004-08-01 | Nussbaum et al. | Applicant |
| US6781609(B1) | 2004-08-01 | Barker et al. | Applicant |
| US6782144(B2) | 2004-08-01 | Bellavita et al. | Applicant |
| US6799299(B1) | 2004-09-01 | Li et al. | Applicant |
| US6801929(B1) | 2004-10-01 | Donoho et al. | Applicant |
| US6816849(B1) | 2004-11-01 | Halt, Jr. | Applicant |
| US6845380(B2) | 2005-01-01 | Su et al. | Applicant |
| US6845499(B2) | 2005-01-01 | Srivastava et al. | Applicant |
| US6847387(B2) | 2005-01-01 | Roth | Applicant |
| US6848078(B1) | 2005-01-01 | Birsan et al. | Applicant |
| US6871220(B1) | 2005-03-01 | Rajan et al. | Applicant |
| US6874130(B1) | 2005-03-01 | Baweja et al. | Applicant |
| US6876996(B2) | 2005-04-01 | Czajkowski et al. | Applicant |
| US6889359(B1) | 2005-05-01 | Conner et al. | Applicant |
| US6901403(B1) | 2005-05-01 | Bata et al. | Examiner |
| US6915454(B1) | 2005-07-01 | Moore et al. | Applicant |
| US6931532(B1) | 2005-08-01 | Davis et al. | Applicant |
| US6941510(B1) | 2005-09-01 | Ozzie et al. | Applicant |
| US6941511(B1) | 2005-09-01 | Hind et al. | Applicant |
| US6941521(B2) | 2005-09-01 | Lin et al. | Applicant |
| US6948133(B2) | 2005-09-01 | Haley | Applicant |
| US6948135(B1) | 2005-09-01 | Ruthfield et al. | Applicant |
| US6950980(B1) | 2005-09-01 | Malcolm | Applicant |
| US6961897(B1) | 2005-11-01 | Peel, Jr. et al. | Applicant |
| US6963875(B2) | 2005-11-01 | Moore et al. | Applicant |
| US6968503(B1) | 2005-11-01 | Chang et al. | Applicant |
| US6968505(B2) | 2005-11-01 | Stoll et al. | Examiner |
| US6993714(B2) | 2006-01-01 | Kaler et al. | Applicant |
| US6996776(B1) | 2006-02-01 | Makely et al. | Applicant |
| US6996781(B1) | 2006-02-01 | Myers et al. | Applicant |
| US7000179(B2) | 2006-02-01 | Yankovich et al. | Applicant |
| US7002560(B2) | 2006-02-01 | Graham | Applicant |
| US7003722(B2) | 2006-02-01 | Rothchiller et al. | Applicant |
| US7010580(B1) | 2006-03-01 | Fu et al. | Applicant |
| US7020869(B2) | 2006-03-01 | Abrari et al. | Applicant |
| US7024417(B1) | 2006-04-01 | Russakovsky et al. | Applicant |
| US7032170(B2) | 2006-04-01 | Poulose | Applicant |
| US7036072(B1) | 2006-04-01 | Sulistio et al. | Applicant |
| US7039875(B2) | 2006-05-01 | Khalfay et al. | Applicant |
| US7051273(B1) | 2006-05-01 | Holt et al. | Applicant |
| US7058663(B2) | 2006-06-01 | Johnston et al. | Applicant |
| US7062764(B2) | 2006-06-01 | Cohen et al. | Applicant |
| US7065493(B1) | 2006-06-01 | Homsi | Applicant |
| US7080083(B2) | 2006-07-01 | Kim et al. | Applicant |
| US7080325(B2) | 2006-07-01 | Treibach-Heck et al. | Applicant |
| US7086009(B2) | 2006-08-01 | Resnick et al. | Applicant |
| US7086042(B2) | 2006-08-01 | Abe et al. | Applicant |
| US7088374(B2) | 2006-08-01 | David et al. | Applicant |
| US7100147(B2) | 2006-08-01 | Miller et al. | Applicant |
| US7103611(B2) | 2006-09-01 | Murthy et al. | Applicant |
| US7106888(B1) | 2006-09-01 | Silverbrook et al. | Applicant |
| US7107282(B1) | 2006-09-01 | Yalamanchi | Applicant |
| US7107521(B2) | 2006-09-01 | Santos | Examiner |
| US7146564(B2) | 2006-12-01 | Kim et al. | Applicant |
| US7152205(B2) | 2006-12-01 | Day et al. | Applicant |
| US7168035(B1) | 2007-01-01 | Bell et al. | Applicant |
| US7178166(B1) | 2007-02-01 | Taylor et al. | Applicant |
| US7190376(B1) | 2007-03-01 | Tonisson | Applicant |
| US7191394(B1) | 2007-03-01 | Ardeleanu et al. | Applicant |
| US7213200(B2) | 2007-05-01 | Abe et al. | Applicant |
| US7236982(B2) | 2007-06-01 | Zlatanov et al. | Applicant |
| US7272789(B2) | 2007-09-01 | O'Brien | Applicant |
| US7281018(B1) | 2007-10-01 | Begun et al. | Applicant |
| US7296017(B2) | 2007-11-01 | Larcheveque et al. | Applicant |
| US7313757(B2) | 2007-12-01 | Bradley et al. | Examiner |
| US7313758(B2) | 2007-12-01 | Kozlov | Applicant |
| US7316003(B1) | 2008-01-01 | Dulepet et al. | Applicant |
| US7318237(B2) | 2008-01-01 | Moriconi et al. | Applicant |
| US7334178(B1) | 2008-02-01 | Stanciu et al. | Applicant |
| US7346610(B2) | 2008-03-01 | Ruthfield et al. | Applicant |
| US7350141(B2) | 2008-03-01 | Kotler et al. | Applicant |
| US2001/0007109(A1) | 2001-07-01 | Lange | Applicant |
| US2001/0022592(A1) | 2001-09-01 | Alimpich et al. | Applicant |
| US2001/0024195(A1) | 2001-09-01 | Hayakawa | Applicant |
| US2001/0037345(A1) | 2001-11-01 | Kiernan et al. | Applicant |
| US2001/0054004(A1) | 2001-12-01 | Powers | Applicant |
| US2001/0056429(A1) | 2001-12-01 | Moore et al. | Applicant |
| US2001/0056460(A1) | 2001-12-01 | Sahota et al. | Applicant |
| US2002/0010700(A1) | 2002-01-01 | Wotring | Applicant |
| US2002/0010743(A1) | 2002-01-01 | Ryan et al. | Applicant |
| US2002/0010746(A1) | 2002-01-01 | Jilk, Jr. et al. | Applicant |
| US2002/0013788(A1) | 2002-01-01 | Pennell et al. | Applicant |
| US2002/0019941(A1) | 2002-02-01 | Chan et al. | Applicant |
| US2002/0023113(A1) | 2002-02-01 | Hsing et al. | Applicant |
| US2002/0026441(A1) | 2002-02-01 | Kutay et al. | Applicant |
| US2002/0026461(A1) | 2002-02-01 | Kutay et al. | Applicant |
| US2002/0032590(A1) | 2002-03-01 | Anand et al. | Applicant |
| US2002/0032692(A1) | 2002-03-01 | Suzuki et al. | Applicant |
| US2002/0032706(A1) | 2002-03-01 | Perla et al. | Applicant |
| US2002/0032768(A1) | 2002-03-01 | Voskuil | Examiner |
| US2002/0035579(A1) | 2002-03-01 | Wang et al. | Examiner |
| US2002/0035581(A1) | 2002-03-01 | Reynar et al. | Applicant |
| US2002/0040469(A1) | 2002-04-01 | Pramberger | Applicant |
| US2002/0054126(A1) | 2002-05-01 | Gamon | Applicant |
| US2002/0054128(A1) | 2002-05-01 | Lau et al. | Applicant |
| US2002/0057297(A1) | 2002-05-01 | Grimes et al. | Applicant |
| US2002/0065798(A1) | 2002-05-01 | Bostleman et al. | Applicant |
| US2002/0065847(A1) | 2002-05-01 | Furukawa et al. | Applicant |
| US2002/0070973(A1) | 2002-06-01 | Croley | Applicant |
| US2002/0078074(A1) | 2002-06-01 | Cho et al. | Applicant |
| US2002/0078103(A1) | 2002-06-01 | Gorman et al. | Applicant |
| US2002/0083318(A1) | 2002-06-01 | Larose | Applicant |
| US2002/0099952(A1) | 2002-07-01 | Lambert et al. | Applicant |
| US2002/0100027(A1) | 2002-07-01 | Binding et al. | Applicant |
| US2002/0112224(A1) | 2002-08-01 | Cox | Applicant |
| US2002/0129056(A1) | 2002-09-01 | Conant | Applicant |
| US2002/0133484(A1) | 2002-09-01 | Chau et al. | Applicant |
| US2002/0152222(A1) | 2002-10-01 | Holbrook | Applicant |
| US2002/0152244(A1) | 2002-10-01 | Dean et al. | Applicant |
| US2002/0156772(A1) | 2002-10-01 | Chau et al. | Applicant |
| US2002/0156846(A1) | 2002-10-01 | Rawat et al. | Applicant |
| US2002/0156929(A1) | 2002-10-01 | Hekmatpour | Applicant |
| US2002/0169752(A1) | 2002-11-01 | Kusama et al. | Applicant |
| US2002/0169789(A1) | 2002-11-01 | Kutay et al. | Applicant |
| US2002/0174147(A1) | 2002-11-01 | Wang et al. | Applicant |
| US2002/0174417(A1) | 2002-11-01 | Sijacic et al. | Applicant |
| US2002/0178380(A1) | 2002-11-01 | Wolf et al. | Applicant |
| US2002/0184219(A1) | 2002-12-01 | Preisig et al. | Applicant |
| US2002/0188597(A1) | 2002-12-01 | Kern et al. | Applicant |
| US2002/0188613(A1) | 2002-12-01 | Chakraborty et al. | Applicant |
| US2002/0194219(A1) | 2002-12-01 | Bradley et al. | Applicant |
| US2002/0196281(A1) | 2002-12-01 | Audleman et al. | Applicant |
| US2002/0196288(A1) | 2002-12-01 | Emrani | Applicant |
| US2002/0198891(A1) | 2002-12-01 | Li et al. | Applicant |
| US2002/0198935(A1) | 2002-12-01 | Crandall et al. | Applicant |
| US2003/0004951(A1) | 2003-01-01 | Chokshi | Applicant |
| US2003/0007000(A1) | 2003-01-01 | Carlson et al. | Applicant |
| US2003/0014397(A1) | 2003-01-01 | Chau et al. | Applicant |
| US2003/0018668(A1) | 2003-01-01 | Britton et al. | Applicant |
| US2003/0020746(A1) | 2003-01-01 | Chen et al. | Applicant |
| US2003/0023641(A1) | 2003-01-01 | Gorman et al. | Applicant |
| US2003/0025732(A1) | 2003-02-01 | Prichard | Applicant |
| US2003/0026507(A1) | 2003-02-01 | Zlotnick | Applicant |
| US2003/0028550(A1) | 2003-02-01 | Lee et al. | Applicant |
| US2003/0033037(A1) | 2003-02-01 | Yuen et al. | Applicant |
| US2003/0037303(A1) | 2003-02-01 | Bodlaender et al. | Applicant |
| US2003/0043986(A1) | 2003-03-01 | Creamer et al. | Applicant |
| US2003/0046665(A1) | 2003-03-01 | Ilin | Applicant |
| US2003/0048301(A1) | 2003-03-01 | Menninger | Applicant |
| US2003/0051243(A1) | 2003-03-01 | Lemmons et al. | Applicant |
| US2003/0055811(A1) | 2003-03-01 | Stork et al. | Applicant |
| US2003/0055828(A1) | 2003-03-01 | Koch et al. | Applicant |
| US2003/0056198(A1) | 2003-03-01 | Al-Azzawe et al. | Applicant |
| US2003/0061386(A1) | 2003-03-01 | Brown et al. | Applicant |
| US2003/0061567(A1) | 2003-03-01 | Brown et al. | Applicant |
| US2003/0084424(A1) | 2003-05-01 | Reddy et al. | Applicant |
| US2003/0093755(A1) | 2003-05-01 | O'Carroll | Applicant |
| US2003/0110443(A1) | 2003-06-01 | Yankovich et al. | Applicant |
| US2003/0120578(A1) | 2003-06-01 | Newman | Applicant |
| US2003/0120651(A1) | 2003-06-01 | Bernstein et al. | Applicant |
| US2003/0120659(A1) | 2003-06-01 | Sridhar | Applicant |
| US2003/0120671(A1) | 2003-06-01 | Kim et al. | Examiner |
| US2003/0120686(A1) | 2003-06-01 | Kim et al. | Applicant |
| US2003/0126555(A1) | 2003-07-01 | Aggarwal et al. | Applicant |
| US2003/0128196(A1) | 2003-07-01 | Lapstun et al. | Applicant |
| US2003/0135825(A1) | 2003-07-01 | Gertner et al. | Applicant |
| US2003/0140132(A1) | 2003-07-01 | Champagne et al. | Examiner |
| US2003/0158897(A1) | 2003-08-01 | Ben-Natan et al. | Applicant |
| US2003/0163285(A1) | 2003-08-01 | Nakamura et al. | Applicant |
| US2003/0167277(A1) | 2003-09-01 | Hejlsberg et al. | Applicant |
| US2003/0182268(A1) | 2003-09-01 | Lal | Applicant |
| US2003/0182327(A1) | 2003-09-01 | Ramanujam et al. | Applicant |
| US2003/0187756(A1) | 2003-10-01 | Klivington et al. | Applicant |
| US2003/0187930(A1) | 2003-10-01 | Ghaffar et al. | Applicant |
| US2003/0188260(A1) | 2003-10-01 | Jensen et al. | Applicant |
| US2003/0189593(A1) | 2003-10-01 | Yarvin | Applicant |
| US2003/0192008(A1) | 2003-10-01 | Lee | Applicant |
| US2003/0200506(A1) | 2003-10-01 | Abe et al. | Applicant |
| US2003/0204511(A1) | 2003-10-01 | Brundage et al. | Applicant |
| US2003/0204814(A1) | 2003-10-01 | Elo et al. | Applicant |
| US2003/0205615(A1) | 2003-11-01 | Marappan | Applicant |
| US2003/0212664(A1) | 2003-11-01 | Breining et al. | Applicant |
| US2003/0212902(A1) | 2003-11-01 | van der Made | Applicant |
| US2003/0217053(A1) | 2003-11-01 | Bachman et al. | Applicant |
| US2003/0220930(A1) | 2003-11-01 | Milleker et al. | Applicant |
| US2003/0225469(A1) | 2003-12-01 | DeRemer et al. | Applicant |
| US2003/0225768(A1) | 2003-12-01 | Chaudhuri et al. | Applicant |
| US2003/0225829(A1) | 2003-12-01 | Pena et al. | Examiner |
| US2003/0226132(A1) | 2003-12-01 | Tondreau et al. | Applicant |
| US2003/0233374(A1) | 2003-12-01 | Spinola et al. | Applicant |
| US2003/0233644(A1) | 2003-12-01 | Cohen et al. | Applicant |
| US2003/0236859(A1) | 2003-12-01 | Vaschillo et al. | Applicant |
| US2003/0236903(A1) | 2003-12-01 | Piotrowski | Applicant |
| US2003/0237046(A1) | 2003-12-01 | Parker et al. | Examiner |
| US2003/0237047(A1) | 2003-12-01 | Borson | Applicant |
| US2004/0002939(A1) | 2004-01-01 | Arora et al. | Applicant |
| US2004/0003031(A1) | 2004-01-01 | Brown et al. | Applicant |
| US2004/0003353(A1) | 2004-01-01 | Rivera et al. | Applicant |
| US2004/0003389(A1) | 2004-01-01 | Reynar et al. | Applicant |
| US2004/0010752(A1) | 2004-01-01 | Chan et al. | Applicant |
| US2004/0024842(A1) | 2004-02-01 | Witt | Applicant |
| US2004/0030991(A1) | 2004-02-01 | Hepworth et al. | Applicant |
| US2004/0039990(A1) | 2004-02-01 | Bakar et al. | Applicant |
| US2004/0039993(A1) | 2004-02-01 | Kougiouris et al. | Applicant |
| US2004/0044961(A1) | 2004-03-01 | Pesenson | Applicant |
| US2004/0044965(A1) | 2004-03-01 | Toyama et al. | Applicant |
| US2004/0054966(A1) | 2004-03-01 | Busch et al. | Applicant |
| US2004/0059754(A1) | 2004-03-01 | Barghout et al. | Applicant |
| US2004/0073565(A1) | 2004-04-01 | Kaufman et al. | Applicant |
| US2004/0073868(A1) | 2004-04-01 | Easter et al. | Applicant |
| US2004/0078756(A1) | 2004-04-01 | Napper et al. | Applicant |
| US2004/0083426(A1) | 2004-04-01 | Sahu | Applicant |
| US2004/0088647(A1) | 2004-05-01 | Miller et al. | Applicant |
| US2004/0088652(A1) | 2004-05-01 | Abe et al. | Applicant |
| US2004/0093596(A1) | 2004-05-01 | Koyano | Applicant |
| US2004/0107367(A1) | 2004-06-01 | Kisters | Applicant |
| US2004/0117769(A1) | 2004-06-01 | Lauzon et al. | Examiner |
| US2004/0123277(A1) | 2004-06-01 | Schrader et al. | Applicant |
| US2004/0146199(A1) | 2004-07-01 | Berkner et al. | Applicant |
| US2004/0163041(A1) | 2004-08-01 | Engel | Applicant |
| US2004/0172442(A1) | 2004-09-01 | Ripley | Applicant |
| US2004/0181711(A1) | 2004-09-01 | Johnson et al. | Applicant |
| US2004/0186762(A1) | 2004-09-01 | Beaven et al. | Applicant |
| US2004/0189716(A1) | 2004-09-01 | Paoli et al. | Applicant |
| US2004/0194035(A1) | 2004-09-01 | Chakraborty | Applicant |
| US2004/0205473(A1) | 2004-10-01 | Fisher et al. | Applicant |
| US2004/0205525(A1) | 2004-10-01 | Murren et al. | Applicant |
| US2004/0205534(A1) | 2004-10-01 | Koelle | Applicant |
| US2004/0205571(A1) | 2004-10-01 | Adler et al. | Examiner |
| US2004/0205592(A1) | 2004-10-01 | Huang | Applicant |
| US2004/0205605(A1) | 2004-10-01 | Adler et al. | Applicant |
| US2004/0205653(A1) | 2004-10-01 | Hadfield et al. | Applicant |
| US2004/0205671(A1) | 2004-10-01 | Sukehiro et al. | Applicant |
| US2004/0210599(A1) | 2004-10-01 | Friedman et al. | Applicant |
| US2004/0221238(A1) | 2004-11-01 | Cifra et al. | Applicant |
| US2004/0221245(A1) | 2004-11-01 | Chickles et al. | Applicant |
| US2004/0237030(A1) | 2004-11-01 | Malkin | Applicant |
| US2004/0261019(A1) | 2004-12-01 | Imamura et al. | Applicant |
| US2004/0268229(A1) | 2004-12-01 | Paoli et al. | Applicant |
| US2005/0004893(A1) | 2005-01-01 | Sangroniz | Applicant |
| US2005/0005248(A1) | 2005-01-01 | Rockey et al. | Applicant |
| US2005/0015279(A1) | 2005-01-01 | Rucker | Applicant |
| US2005/0015732(A1) | 2005-01-01 | Vedula et al. | Applicant |
| US2005/0022115(A1) | 2005-01-01 | Baumgartner et al. | Applicant |
| US2005/0027757(A1) | 2005-02-01 | Kiessig et al. | Applicant |
| US2005/0033728(A1) | 2005-02-01 | James | Applicant |
| US2005/0038711(A1) | 2005-02-01 | Marlelo | Applicant |
| US2005/0055627(A1) | 2005-03-01 | Lloyd et al. | Applicant |
| US2005/0060324(A1) | 2005-03-01 | Johnson et al. | Applicant |
| US2005/0060721(A1) | 2005-03-01 | Choudhary et al. | Applicant |
| US2005/0065933(A1) | 2005-03-01 | Goering | Applicant |
| US2005/0065936(A1) | 2005-03-01 | Goering | Applicant |
| US2005/0066287(A1) | 2005-03-01 | Tattrie et al. | Applicant |
| US2005/0071752(A1) | 2005-03-01 | Marlatt | Applicant |
| US2005/0076049(A1) | 2005-04-01 | Qubti et al. | Applicant |
| US2005/0091285(A1) | 2005-04-01 | Krishnan et al. | Applicant |
| US2005/0091305(A1) | 2005-04-01 | Lange et al. | Applicant |
| US2005/0102370(A1) | 2005-05-01 | Lin et al. | Applicant |
| US2005/0102612(A1) | 2005-05-01 | Allan et al. | Applicant |
| US2005/0108104(A1) | 2005-05-01 | Woo | Applicant |
| US2005/0108624(A1) | 2005-05-01 | Carrier | Applicant |
| US2005/0114757(A1) | 2005-05-01 | Sahota et al. | Applicant |
| US2005/0132196(A1) | 2005-06-01 | Dietl | Applicant |
| US2005/0138086(A1) | 2005-06-01 | Pecht-Seibert | Applicant |
| US2005/0171746(A1) | 2005-08-01 | Thalhammer-Reyero | Applicant |
| US2005/0198086(A1) | 2005-09-01 | Moore et al. | Applicant |
| US2005/0198125(A1) | 2005-09-01 | Beck et al. | Applicant |
| US2005/0198247(A1) | 2005-09-01 | Perry et al. | Applicant |
| US2005/0223063(A1) | 2005-10-01 | Chang et al. | Applicant |
| US2005/0223320(A1) | 2005-10-01 | Brintzenhofe et al. | Applicant |
| US2005/0240876(A1) | 2005-10-01 | Myers et al. | Applicant |
| US2005/0246304(A1) | 2005-11-01 | Knight et al. | Applicant |
| US2005/0268222(A1) | 2005-12-01 | Cheng | Applicant |
| US2006/0020586(A1) | 2006-01-01 | Prompt et al. | Applicant |
| US2006/0026534(A1) | 2006-02-01 | Ruthfield et al. | Applicant |
| US2006/0031757(A9) | 2006-02-01 | Vincent | Applicant |
| US2006/0036995(A1) | 2006-02-01 | Chickles et al. | Applicant |
| US2006/0041838(A1) | 2006-02-01 | Khan | Applicant |
| US2006/0059434(A1) | 2006-03-01 | Boss et al. | Applicant |
| US2006/0069605(A1) | 2006-03-01 | Hatoun | Applicant |
| US2006/0069985(A1) | 2006-03-01 | Friedman et al. | Applicant |
| US2006/0080657(A1) | 2006-04-01 | Goodman | Applicant |
| US2006/0085409(A1) | 2006-04-01 | Rys et al. | Applicant |
| US2006/0101037(A1) | 2006-05-01 | Brill et al. | Applicant |
| US2006/0101051(A1) | 2006-05-01 | Carr et al. | Applicant |
| US2006/0129978(A1) | 2006-06-01 | Abrari et al. | Applicant |
| US2006/0143220(A1) | 2006-06-01 | Spencer | Applicant |
| US2006/0161559(A1) | 2006-07-01 | Bordawekar et al. | Applicant |
| US2007/0036433(A1) | 2007-02-01 | Teutsch et al. | Applicant |
| US2007/0050719(A1) | 2007-03-01 | Lui et al. | Applicant |
| US2007/0061467(A1) | 2007-03-01 | Essey | Applicant |
| US2007/0061706(A1) | 2007-03-01 | Cupala | Applicant |
| US2007/0074106(A1) | 2007-03-01 | Ardeleanu | Applicant |
| US2007/0094589(A1) | 2007-04-01 | Paoli | Applicant |
| US2007/0100877(A1) | 2007-05-01 | Paoli | Applicant |
| US2007/0101280(A1) | 2007-05-01 | Paoli | Applicant |
| US2007/0118803(A1) | 2007-05-01 | Walker et al. | Applicant |
| US2007/0130504(A1) | 2007-06-01 | Betancourt et al. | Applicant |
| US2007/0208606(A1) | 2007-09-01 | MacKay et al. | Applicant |
| US2007/0208769(A1) | 2007-09-01 | Boehm et al. | Applicant |
| US2008/0028340(A1) | 2008-01-01 | Davis | Applicant |
| EP841615(A2) | 1998-05-01 | Applicant | |
| EP961197 | 1999-12-01 | Applicant | |
| EP1076290(A2) | 2001-02-01 | Applicant | |
| EP1221661 | 2002-07-01 | Applicant | |
| JP401173140(A) | 1989-07-01 | Applicant | |
| JP3191429 | 1991-08-01 | Applicant | |
| JP4225466 | 1992-08-01 | Applicant | |
| JP5314152 | 1993-11-01 | Applicant | |
| JP406014105 | 1994-01-01 | Applicant | |
| JP6139241 | 1994-05-01 | Applicant | |
| JP6180697 | 1994-06-01 | Applicant | |
| JP6180698 | 1994-06-01 | Applicant | |
| JP63085960 | 1998-04-01 | Applicant | |
| JP2000132436 | 2000-05-01 | Applicant | |
| JP2002183652 | 2002-06-01 | Applicant | |
| JP2003173288 | 2003-06-01 | Applicant | |
| WO99/24945 | 1999-05-01 | Applicant | |
| WO99/56207 | 1999-11-01 | Applicant | |
| WO1/44934(A1) | 2001-06-01 | Applicant | |
| WO157720 | 2001-08-01 | Applicant | |
| WO157720 | 2006-09-01 | Applicant |
Non-Patent Literature (115)
- Altova, “User Reference Manual Version 4.4, XML Spy Suite 4.4,” Altova Ges.m.g.H & Altova, Inc., May 24, 2002, pp. cover, copyright page, and pp. 55-60, 69-82, 105-109, 150-151, 176, 183-246, 318-336, and 546.Examiner
- Altova, “User Reference Manual Version 4.4, XML Spy Suite 4.4,” Altova Ges.m.b.H & Altova, Inc., May 24, 2002.Examiner
- Bradley, “The XML Companion, Third Edition”, published by Addison Wesley Professional, Dec. 12, 2001, downloaded from Safari Books Online, http://proquest.safaribooksonline.com/ 021770598, p. 1-18.Examiner
- Klarlund et al., “DSD: A Schema Language for XML”, copyright 2000 ACM, FMSP '00, Portland Oregon, p. 101-111.Examiner
- Clark, J, Editor, “XSL Transformation (XSLT), Version 1.0,” W3C, available at <http://www.w3.org/TR/1999/REC-xslt-19991116>, Nov. 16, 1999, pp. 1-156.Applicant
- Clark, J. et al., editors, “XML Path Language (XPath), Version 1.0,” W3C, available at <http://www.w3.org/TR/1999/REC-xpath-19991116>, Nov. 16, 1999, pp. 1-49.Applicant
- Description of Whitehill Composer software product, produced by Whitehill Technologies, Inc., available at <http://www.xml.com/pub/p/221>, accessed on Apr. 8, 2004, two pages.Applicant
- U.S. Appl. No. 60/209,713, Kutay et al., filed Jun. 5, 2000.Applicant
- Chien, Shu-Yao, et al., “XML Document Versioning,” SIGMOD Record, vol. 30, No. 3, Sep. 2001, pp. 46-53.Applicant
- Wong, Raymond, et al., “Managing and Querying Multi-Version XML Data with Update Logging,” Proceedings of the 2002 ACM Symposium on Document Engineering, 2002, ACM Press, pp. 74-81.Applicant
- Chien, Shu-Yao, et al., “Efficient Schemes for Managing Multiversion XML Documents,” The VLDB Journal, No. 11, 2002, pp. 332-353.Applicant
- Chien, Shu-Yao, et al., “Efficient Management of Multiversion Documents by Object Referencing,” Proceedings of the 27th VLDB Conference, Roma, Italy, 2001, pp. 291-300.Applicant
- Roggè, Boris et al., “Validating MPEG-21 Encapsulated Functional Metadata,” IEEE 2002, pp. 209-212.Applicant
- Nelson, Mark, “Validation with MSXML and XML Schema,” Windows Developer Magazine, Jan. 2002, pp. 35-38.Applicant
- Hall, Richard Scott,“ Agent-based Software Configuration and Deployment,” Thesis of the University of Colorado, Online, Dec. 31, 1999, retrieved from the Internet on Nov. 7, 2003: <http://www.cs.colorado.edu/users/rickhall/documents/ThesisFinal.pdf>, 169 pages.Applicant
- Dayton, Linnea and Jack Davis, “Photo Shop 5/5.5 WOW! Book,” 2000, Peachpit Press, pp. 8-17.Applicant
- Williams, Sara and Charlie Kindel, “The Component Object Model: A Technical Overview,” Oct. 1994, Microsoft Corp., pp. 1-14.Applicant
- Varlamis, Iraklis, et al., “Bridging XML-Schema and relational databases. A system for generating and manipulating relational databases using valid XML documents,” DocEng '01, Nov. 9-10, 2001, Copyright 2001, ACM 1-58113-432-0/01/0011, pp. 105-114.Applicant
- Kim, Sang-Kyun, et al., “Immediate and Partial Validation Mechanism for the Conflict Resolution of Update Operations in XML Databases,” WAIM 2002, LNCS 2419, 2002, pp. 387-396, Springer-Verlag Berlin Heidelberg 2002.Applicant
- Chuang, Tyng-Ruey, “Generic Validation of Structural Content with Parametric Modules,” ICFP '01, Sep. 3-5, 2001, Copyright 2001, ACM 1-58113-415-0/01/0009, pp. 98-109.Applicant
- Chen, Ya Bing, et al., “Designing Valid XML Views,” ER 2002, LNCS 2503, 2002, Springer-Verlag Berlin Heidelberg 2002, pp. 463-477.Applicant
- Chen, Yi, et al., “XKvalidator: A Constraint Validator for XML,” CIKM '02, Nov. 4-9, 2002, Copyright 2002, ACM 1-58113-492-4/02/0011, pp. 446-452.Applicant
- Brogden, William, “Arbortext Adept 8 Editor Review,” O'Reilly XML.COM, Online! Sep. 22, 1999, XP002230080, retrieved from the Internet <URL:http://www.xml.com/pub/a/1999/09/adept/AdeptRvw.htm>, retrieved on Feb. 5, 2003.Applicant
- Alschuler, Liora, “A tour of XMetal,” XML.COM, Online! Jul. 14, 1999, XP002230081, retrieved from the Internet: <URL:http://www.xml.com/pub/a/SeyboldReport/ip031102.html>, retrieved on Feb. 5, 2003.Applicant
- Davidow, Ari, “XML Editors: Allegations of Functionality in search of reality,” Internet, Online! 1999, XP002230082, retrieved from the Internet, <URL:http://www.ivritype.com/xml/>.Applicant
- Battle, Steven A. et al., “Flexible Information Presentation with XML”, 1998, The Institution of Electrical Engineers, 6 pages.Applicant
- Ciancarini, Paolo et al., “Managing Complex Documents over the WWW: A Case Study for XML,” IEEE Transactions on Knowledge and Data Engineering, vol. 11, No. 4, Jul./Aug. 1999, pp. 629-638.Applicant
- Kanemoto, Hirotaka et al., “An Efficiently Updatable Index Scheme for Structured Documents,” 1998 IEEE, pp. 991-996.Applicant
- Usdin, Tommie et al., “XML: Not a Silver Bullet, But a Great Pipe Wrench,” Standardview vol. 6, No. 3, Sep. 1998, pp. 125-132.Applicant
- Sutanthavibul, Supoj et al., “XFIG Version 3.2 Patchlevel 2(Jul. 2, 1998) Users Manual (Edition 1.0),” Internet Document, [Online] July 2, 1998, XP0022231937 Retrieved from the Internet: URL:http://www.ice/mtu.edu/online—docs/xfig332/, retrieved on Jan. 28, 2003.Applicant
- Netscape Communication Corporation, “Netscape Communicator 4.61 for OS/2 Warp” Software, 1999, The whole software release & “Netscape—Version 4.61 [en]—010615,” Netscape Screenshot, Oct. 2, 2002.Applicant
- “Architecture for a Dynamic Information Area Control,” IBM Technical Disclosure Bulletin, IBM Corp., New York, US, vol. 37, No. 10, Jan. 10, 1994, pp. 245-246.Applicant
- Au, Irene et al., “Netscape Communicator's Collapsible Toolbars,” CHI '98, Human Factors in Computing Systems, Conference Proceedings, Los Angeles, CA, Apr. 18-23, 1998, pp. 81-86.Applicant
- Dyck, Timothy, “XML Spy Tops as XML Editor,” http://www.eweek.com/article2/0,3959,724041,00.asp, Nov. 25, 2002, 2 pages.Applicant
- Hardy, Matthew R. B. et al., “Mapping and Displaying Structural Transformations between XML and PDF,” DocEng '02, Nov. 8-9, 2002, Copyright 2002, ACM 1-58113-594-7/02/0011, pp. 95-102.Applicant
- Clark, P., “From small beginnings,” Knowledge Management, Nov. 2001, pp. 28-30.Applicant
- Prevelakis, Vassilis et al., “Sandboxing Applications,” FREENIX Track: 2001 USENIX Annual Technical Conference, pp. 119-126.Applicant
- Sun, Q., et al., “A Robust and Secure Media Signature Scheme for JPEG Images,” Proceedings of 2002 IEEE Workshop on Multimedia Signal Processing, Dec. 2002, pp. 296-299.Applicant
- Komatsu, N., et al., “A Proposal on Digital Watermark in Document Image Communication and Its Application to Realizing a Signature,” Electronics and Communications in Japan, Part I: Communications, vol. 73, No. 5, MAy 1990, pp. 22-33.Applicant
- Noore, A., “A Secure Conditional Access System using Digital Signature and Encryption,” International Conference on Consumer Electronics, Jun. 2003, pp. 220-221.Applicant
- Pacheco, X., et al., “Delphi 5 Developer's Guide,” Sams Publishing 1999, Section: Data Streaming, 6 pages.Applicant
- Hwang, Kai et al., “Micro-Firewalls for Dynamic Network Security with Distributed Intrusion Detection,” IEEE Int'l. Symposium on Network Computing and Applications, 2001, pp. 68-79.Applicant
- Schmid, M. et al., “Protecting Data from Malicious Software,” 18th Annual Security Applications Conference, 2002, pp. 199-208.Applicant
- Kaiya, Haruhiko et al., “Specifying Runtime Environments and Functionalities of Downloadable Components under the Sandbox Model,” Int'l. Symposium on Principles of Software Evolution, 2000, pp. 138-142.Applicant
- Tomimori, Hiroyuki et al., “An Efficient and Flexible Access Control Framework for Jav aPrograms in Mobile Terminals,” Proceedings of 22nd Int'l. Conference on Distributed Computing Systems Workshops, 2002, pp. 777-782.Applicant
- Pike, et al., “Plan 9 From Bell Labs,” AT&T Bell Laboratories, UKUUG, Summer 1990, 10 pages.Applicant
- Berg., A, “Naming and Binding: Monikers,” Inside OLE, Chapter 9, Harmony Books, 1995, pp. 431-490.Applicant
- Herzner, et al., “CDAM-Compound Document Access and Management. An Object-Oriented Approach,” Multimedia Systems Interaction and Applications, Chapter 3, 1992, pp. 17-36.Applicant
- Staneck, W. “Internal and External Media,” Electronic Publishing Unleashed, Chapter 22, 1995, pp. 510-542.Applicant
- Kobayashi, et al., “An Update on BTRON-specification OS Development,” 0-8186-2475-2/91, IEEE 1991 pp. 132-140.Applicant
- Peterson, B., “Unix Variants,” Unix Review, vol. 10, No. 4, Apr. 1992, pp. 29-31.Applicant
- “Store and Organize Related Project Files in a Binder,” Getting Results with Microsoft Office, 1990, pp. 109-112.Applicant
- Clapp, D., “The NeXT Application Kit Part I: Non-Responsive Classes,” The NeXT Bible Chapter 16, 1990, pp. 275-293.Applicant
- Diclascia, et al., “Sweeper,” Microsoft Interactive Developer, vol. 1, No. 1, 1996, 27 pages.Applicant
- Barker, et al., “Creating In-Line Objects Within An Integrated Editing Environment,” IBM Technical Disclosure Bulletin, vol. 27, No. 5, Oct. 1984, p. 2962.Applicant
- Pike et al., “The Use of Name Spaces in Plan 9,” Operating Systems Review, vol. 27, No. 2, Apr. 1993, pp. 72-76.Applicant
- Trupin, J., “The Visual Programmer,” Microsoft Systems Journal, Apr. 1996, pp. 103-105.Applicant
- Zdonik S., “Object Management System Concepts,” ACM, 1984, pp. 13-19.Applicant
- OMG XML Matadata Interchange (XMI) Specification, Version 1.2, Jan. 2002.Applicant
- Altova, Inc., “XML Spy 4.0 Manual,” Altova Inc. & Altova GmbH, coyright 1998-2001, Chapters 1, 2 and 6, encompassing pp. 1-17, 18-90 and 343-362.Applicant
- Cybook, Inc.: “Copying the Search Form to Services-based Web Sites” INternet Article, (online) Jul. 26, 2004.*the whole document*.Applicant
- Macromedia, Inc.: “Dreamweaver Technote, Changes in copying and pasting in Dreamweaver 4” Internet Article (online). *the whole document*.Applicant
- Rado, Dave: “How to create a template that makes it easy for users to “fill in the blanks”, without doing any programming” Microsoft Word MVP FAQ Site, (online) Apr. 30, 2004, the whole document.Applicant
- Laura Acklen and Read Gilgen, “Using Corel Wordperfect 9”, 251-284, 424-434, 583-586 (1998).Applicant
- Altova et al. XML Spy, XML integrated Development Environments, Altova Inc., 2002, pp. 1-18.Applicant
- Ben-Natan, U.S. Appl. No. 60/203,081, filed May 9, 2000, entitled “Internet platform for creating and supporting communities”.Applicant
- Bruce Halbert et al, “Using Microsoft Excel 97”, Published 1997, Bestseller Edition, Pertinent pp. 1-9, 18-25, 85-89, 98-101, 106-113, 124-127, 144-147, 190-201, 209-210, 218-227, 581-590, 632-633, 650-655, 712-714.Applicant
- Han et al., WebSplitter: A Unified XML Framework for Multi-Device Collaborative Web Browsing, 2000, ACM Conference on Cimputer Supported Cooperative Work, 10 pages.Applicant
- IBM: Stack Algorithm for Extractin Subtree from Serialized Tree, Mar. 1, 1994, TDB-ACC-NONN94033, 3 pages.Applicant
- Ixia Soft, “Streamlining content creation, retrieval, and publishing on the Web using TEXTML Server and SML Spy 4 Suite in an integrated, Web publishing environment,” Partner's Whitepaper, published on the Web as of Jun. 6, 2002, downlowad pp. 1-16.Applicant
- Kutay, U.S. Appl. No. 60/209,713, filed June 5, 2000, entitled, “Methods and systems for accessing, organizing presenting and viewing data”.Applicant
- LeBlond et al, “PC Magazine Guide to Quattro Pro for Windows”, pp. 9-11, 42-61, Ziff-Davis Press, Copyright 1993 by the LeBlond Group.Applicant
- Mansfield, “Excel 97 for Busy People”, Published by Osborne/Mcgraw-Hill 1997 pp. 48-50.Applicant
- “Microsoft Visual Basic 5.0 Programmer's Guide 1997”, pp. 578-579; Redmond WA 98052-6399.Applicant
- Microsoft Word 2000 (see Screen Shot “About Microsoft Word”) Published 1983-1999 and Microsoft Excel 2000 (see Screen Shot “About Microsoft Excel”) Published 1988-1999, Three pages.Applicant
- Moore, U.S. Appl. No. 60/191,662, filed Mar. 23, 2000, entitled “Collection-based presistent digital archives”.Applicant
- Cover, “XML Forms Architecture”, retrieved at <<http://xml.coverpages.org/xfa.html>> on Aug. 17, 2006, Coverpages, Jun. 16, 1999.Applicant
- Raggett, “HTML Tables”, retrieved on Aug. 6, 2006, at <<http:www://is-edu.hcmuns.edu.vn/WebLib/books/Web/Tel/html3-tables.html>>, W3C Internet Draft, Jul. 7, 1995, pp. 1-12.Applicant
- “Webopedia Computer Dictionary” retrieved on May 9, 2006, at <<http://www.pewebopedia.com/TERM/O/OLE.html>>, Jupitermedia Corporation, 2006, p. 7.Applicant
- Microsoft Corporation, “Microsoft Computer Dictionary” Microsoft Press, Fifth Edition. p. 149.Applicant
- Baraband et al., PowerForms: “Declarative Client Site Form Field Validation”, World Wide Web, Baltzer Science Publishers, Bussum, NL. vol. 3, No. 4, Dec. 2000, p. 1-20.Applicant
- “Microsoft Word 2000”, Screenshots,(1999), 1-5.Applicant
- Borland, Russo , “Running Microsoft Word 97”, 314-315, 338, 361-362, 390, and 714-719.Applicant
- Braband, et al., “Power Forms Declarative Client-side Form Field Validation”, (2002), 1-20.Applicant
- Singh, Darshan “Microsoft InfoPath 2003 By Example”, Retrieved from the Internet at http://www.perfectxml.com/InfoPath.asp on Jan. 21, 2007, (Apr. 20, 2003).Applicant
- Raman, T. V. et al., “XForms 1.0”, (Dec. 2001),Section 1-12.2.3 & Appendices A-G.Applicant
- “Enter Key”, Retrieved from the Internet at http://systems.webopedia.com/TERM/Enter—key.html on Dec. 20, 2006.Applicant
- Lehtonen, Miro et al., “A Dynamic User Interface for Document Assembly”, Department of Computer Science, University of Helsinki,(Nov. 2002).Applicant
- Rees, Michael J., “Evolving the Browser Towards a Standard User Interface Architecture”, School of Information Technology, Bond University, Australia,(2001).Applicant
- “Microsoft Visual Basic 5.0 Programmer's Guide”, Microsoft Press, (1997),pp. 42-43, 54-58.Applicant
- Nelson, Joe “Client-side Form Validation Using JavaScript”, Developer Advisory, (Sep. 21, 2001).Applicant
- Beauchemin, Dave “Using InfoPath to Create Smart Forms”, Retrieved from the Internet at http:/www.microsoft.com/office/infopath/prodinfo/using.mspx on Jan. 21, 2007,(Mar. 27, 2003).Applicant
- Begun, Andrew et al., “Support and Troubleshooting for XML Schemas in InfoPath 2003”, Microsoft Office InfoPath 2003 Technical Articles, Retrieved from the Internet at http://msdn2.microsoft.com/en-us/library/aa168241(office.11,d=printer).aspx on Jan. 21, 2007,(Aug. 2004).Applicant
- Dubinko, Micah “XForms and Microsoft InfoPath”, Retrieved from the Internet at http://www.xml.com/Ipt/a/1311 on Jan. 21, 2007,(Oct. 29, 2003).Applicant
- Udell, Jon “InfoPath and XForms”, Retrieved from the Internet at http://weblog.infoworld.com/udell/2003/02/26.html,(Feb. 26, 2003).Applicant
- Hoffman, Michael “Architecture of Microsoft Office InfoPath 2003”, Microsoft Office InfoPath 2003 Technical Articles, Retrieved from the Internet at http://msdn2.microsoft.com/en-us/library/aa219024(office.11,d=printer).aspx on Jan. 21, 2007,(Jun. 2003).Applicant
- Anat, Eyal et al., “Integrating and Customizing Hererogeneous E-Commerce Applications”, The VLDB Journal-The International Journal on Very Large Data Bases, vol. 10, Issue 1,(Aug. 2001),16-38.Applicant
- Adams, Susie et al., “BizTalk Unleashed”, Sams publishing, 2002, first printing Mar. 2001,1-2, 31-138.Applicant
- Vasters, Clemens F., “BizTalk Server 2000 A Beginner's Guide”, Osborne/McGraw-Hill,(2001),1-2, 359-402.Applicant
- Halberg, Bruce et al., “Using Microsoft Excel 97”, (1997),191-201, 213-219.Applicant
- Villard, et al., “An Incremental XSLT Transformation Processor for XML Document Manipulation”, http://www2002.org/CDROM/refereed/321, Printed on May 18, 2007,(May 2002),25 pages.Applicant
- Altova, et al., “User and Reference Manual Version 4.4”, www.xmlspy.com, (May 24, 2007),1-565.Applicant
- “XForm 1.0”, W3C,(Jul. 16, 2001).Applicant
- Grosso, et al., “XML Fragment Interchange”, W3C,(Feb. 2001),1-28.Applicant
- “Microsoft Word 2000 Screenshots”, (2000),11-17.Applicant
- Pacheco, Xavier et al., “Delphi 5 Developer's Guide”, Sams Publishing. Chapter 31, Section: Data Streaming,(1999),4.Applicant
- XMLSPY, “XmlSpy 2004 Enterprise Edition Manual”, Altova,(May 17, 2004),1-25, 220-225.Applicant
- StylusStudio, “StylusStudio: XPath Tools”, 2004-2007, StylusStudio,1-14.Applicant
- Dodds, “Toward an XPath API”, xml.com,(May 7, 2001),1-3.Applicant
- Altova, “Altova Tools for XPath 1.0/2.0”, Altova,1-12.Applicant
- “Microsoft Word 2000 Screenshots”, Word,(2000),1-17.Applicant
- Watt, Andrew “Microsoft Office InfoPath 2003 Kick Start”, (Published by Sams) Print ISBN-10:0-672-32623-X, (Mar. 24, 2004),1-57.Applicant
- Hu, et al., “a Programmable Editor for Developing Structured Documents based on Bidirectional Transformations”, ACM,(Aug. 2004), 178-179.Applicant
- Musgrave, S.; “Network Technology - Impact and Opportunities”; Survey and Statistical Computing 1996; Proceedings of the Second ASC International Conference, London, UK, Sep. 1996; pp. 369-378.Applicant
- Chien, et al; “Storing and Quering Multiversion XML Documents using Durable Node Numbers”; 0-7695-1393-X/02; pp. 232-241; 2002 IEEE.Applicant