Scripting of soap commands

Information

  • Patent Grant
  • 10708346
  • Patent Number
    10,708,346
  • Date Filed
    Tuesday, April 3, 2018
    6 years ago
  • Date Issued
    Tuesday, July 7, 2020
    4 years ago
Abstract
A computer-implemented method processes a simple object access protocol (SOAP) command. The method includes interpreting an XML script to perform a function contained in the XML script, the XML script containing the SOAP command, parsing the SOAP command from the XML script, and passing the SOAP command to a SOAP interpreter for execution.
Description
TECHNICAL FIELD

This invention relates generally to scripting simple object access protocol (SOAP) commands using extensible markup language (XML) and to providing the resulting XML script to a device for execution.


BACKGROUND

An apparatus may contain an embedded controller or agent software to monitor and control its operation. Any type of apparatus may have an embedded controller or agent including, but not limited to, home appliances, office equipment, medical devices, and industrial tools. Other examples include robots, blood analyzers, multifunction copiers, and air conditioners.


Embedded devices are often connected to an internal network, such as a local area network (LAN), with an interface to the Internet. Other devices on the internal network may communicate with an embedded device over the internal network. However, the embedded device is not generally addressable from the Internet. To address this problem, the embedded device may initiate communications with an addressable external device. That is, the embedded device may access the external device (e.g., a server) periodically to obtain necessary data.


SOAP is a standard for encoding function calls, such as remote procedure calls (RPCs), in XML. SOAP defines rules, i.e., a syntax, for encoding the function calls in XML. The body of a SOAP command is defined, at its start, by <SOAP-ENV:BODY> and, at its end, by </SOAP-ENV:BODY>. Code in between these two commands includes the function to be performed by the SOAP command. A SOAP command may include other data as well, such as header information.


SUMMARY

Heretofore, SOAP commands were only available as individual, discrete commands. This is impractical for device-initiated communication, particularly if the device is unaware of any timing issues relating to execution of the SOAP commands. The invention therefore scripts one or more SOAP commands in XML and provides the XML script to a device, such as an embedded controller, for execution. The XML script is executed by the embedded controller, much like a computer program, to control execution of the SOAP commands. For example, timing and sequence of execution of the SOAP commands may be specified in the XML script.


The invention also defines variables in the XML script, which may be passed to and from the SOAP commands. This facilitates the combination of SOAP commands in XML script and provides an advantage over the use of traditional SOAP commands, which are limited to passing “hard-coded” numerical values (i.e., non-variables).


In general, in one aspect, the invention is directed to a computer-implemented system for processing a simple object access protocol (SOAP) command. The system includes interpreting an XML script to perform a function contained in the XML script, the XML script containing the SOAP command, parsing the SOAP command from the XML script, and passing the SOAP command to a SOAP interpreter for execution. This aspect of the invention may include one or more of the following features.


Plural SOAP commands may be contained in the XML script. The plural SOAP commands may be passed to the SOAP interpreter. The plural SOAP commands may be executed in a sequence specified by the XML script. At least one of an argument and a return value may be received from the SOAP command following execution of the SOAP command. The argument may be stored as a variable in the XML script.


The XML script may declare a variable. A value of the variable may be passed as an argument to the SOAP command prior to executing the SOAP command. The function may be a conditional statement. The conditional statement may be an If-Then statement or an If-Then-Else statement. The function may be a control statement that affects a sequence of execution of the XML script and/or the SOAP command. The control statement may be a loop. The function may be an exception handler that affects a sequence of execution of the XML script and/or the SOAP command when an error condition exists. The function may be a statement that controls relative or absolute time to execute the SOAP command. Parsing may be performed by an XML interpreter and executing may be performed by the SOAP interpreter. The XML interpreter may pass the SOAP command to the SOAP interpreter and the SOAP interpreter may pass an output of the SOAP command to the XML interpreter.


In general, in another aspect, the invention is directed to a computer-implemented system for generating extensible markup language (XML) script that contains a simple object access protocol (SOAP) command. The system includes receiving code that defines a function and the SOAP command and translating the code to XML script that performs the function and contains the SOAP command. This aspect of the invention may include one or more of the following features.


The XML script may be provided to a device. The device may include a controller that executes the XML script. The code may contain plural SOAP commands and functions. The XML script may contain the plural SOAP commands and functions. The XML script may declare a variable. A value of the variable value may be passed as an argument to the SOAP command in the XML script.


The function may be a conditional statement. The conditional statement may be an If-Then statement or an If-Then-Else statement. The function may be a control statement that affects a sequence of execution of the XML script and/or the SOAP command. The control statement may be a loop. The function may be an exception handler that that affects a sequence of execution of the XML script and/or the SOAP command when an error condition exists. The function may be a statement that controls a relative or absolute time to execute the SOAP command.


Other features and advantages of the invention will become apparent from the following description, including the claims and drawings.





BRIEF DESCRIPTION OF THE DRAWINGS


FIG. 1 is a block diagram of a network containing a server and a device having an embedded controller;



FIG. 2 is a flowchart showing a process for translating human-readable code into XML script;



FIG. 3 is a flowchart showing a process by which the embedded controller retrieves XML script for the device from the server; and



FIG. 4 is a flowchart showing a process by which the embedded controller executes the XML script.





DESCRIPTION


FIG. 1 shows a network 10. Network 10 includes a device 11 containing an embedded controller 17. Device 11 is any type of apparatus or system having functions that are monitored and controlled by embedded controller 17.


Device 11 is connected to an internal network 12, such as a LAN. A router or modem 14 couples internal network 12 to an external network 15, such as the Internet/World Wide Web (Web). External network 15 runs TCP/IP (Transmission Control Protocol/Internet Protocol) or some other suitable protocol. Network connections are via Ethernet, telephone line, wireless, or other transmission media.


External network 15 contains a server 19, which is a computer or any other processing device. Server 19 communicates with embedded controller 17 over external network 15 and internal network 12. Embedded controller 17 has a local IP (Internet Protocol) address that can be resolved within internal network 12. However, this local IP address may not be recognizable by devices on external network 15, such as server 19. As such, server 19 may not be able to directly address device 11.


Embedded Controller


Embedded controller 17 runs software 20, which includes Web client application 21 and operating software 22. Web client application 21 includes a TCP/IP protocol stack that allows embedded controller 17 to communicate over external network 15. Device operating software 22 provides an interface between Web client application 21 and a database 24 in memory 25. Through device operating software 22, embedded controller 17 retrieves data stored in database 24 and stores data in database 24.


Software 20 also includes an XML interpreter 23 and a SOAP interpreter 26. XML interpreter 23 is a module that receives XML script, parses the script, and performs the functions identified by the script. As background, XML is a self-describing computer language, meaning that fields in XML code identify variables and their values in the XML code. For example, a “data” field is delineated by “<data>” to indicate the start of the field and “</data>” to indicate the end of the field. XML is used because it can be generated, parsed and understood relatively easily.


Among the functions in the XML script may be an instruction to identify a SOAP command and to pass the SOAP command to SOAP interpreter 26 for processing. An example of another function includes a statement that controls relative or absolute time to execute the SOAP command. SOAP interpreter 26 receives SOAP commands from XML interpreter 23 and executes those commands. Examples of SOAP commands that can be executed by the embedded controller or agent include setting the value of a variable, uploading or downloading a file, restarting the software, or any action specific to the apparatus.


Database 24 stores data, such as operational parameters, XML script, and identification information for the instance of device 11. What is meant by “instance” is the specific identity of device 11 as distinguished from other identical devices. The identification information stored in database 24 identifies the instance of device 11. This identification information may include data identifying the type of the device, a common (or “friendly”) name for the device, the manufacturer of the device, the model name of the device, the model number of the device, the serial number of the device, or a universal unique identifier (UUID) for the device.


The device type is the name of the device. The common name of the device is how the device is known in the vernacular, e.g., “television”. The manufacturer identifies the manufacturer of the device, e.g., Sony®. The model name identifies the particular model of the device, e.g., Wega®. The model number identifies the model number of the device, e.g., XBR400®. The serial number identifies the serial number of a particular instance of the device, e.g., 53266D. The UUID is a universal identifier for the instance of the device, e.g., 4A89EA70-73B4-11d4-80DF-0050DAB7BAC5. Of the data shown above, generally only the serial number and the UUID are unique to the instance of device 11.


The identification data stored in database 24 is used by embedded controller 17 to retrieve XML script specific to the instance of device 11 (or for a particular type of device 11) from server 19. A device-initiated process for retrieving the XML script is described below.


Server


Server 19 is a computer that runs an HTTP (Hypertext Transfer Protocol) Web server computer program. Server 19 includes a controller 27, such as a microprocessor, for executing software to perform the functions described below. To avoid confusion in terminology, the following reads as though those functions are performed by server 19, even though software in controller 27 of server 19 performs the functions.


Server 19 executes Web server software 29 to communicate over external network 15. Web server software 29 also hosts a Web page associated with device 11. The Web page (not shown) is displayed on computer 33 of a user, such as the owner of device 11, who may select some actions to be sent to the device. For example, a remote operator may want to update three operational variables, which requires three SOAP commands. These three SOAP commands are wrapped in an XML script that executes the commands as a single operation. The XML script, along with any input updated operational parameters (if desired) are transmitted to Web server software 29 over external network 15. Web server software 29 stores the XML script in database 30 of memory 31. An example of a process for updating operational parameters is described in U.S. patent application Ser. No. 09/667,737, filed Sep. 22, 2000, the contents of which are incorporated into this application by reference as if set forth herein in full.


Web server software 29 stores and retrieves XML script from database 30 using application logic 32. Application logic 32 is software for accessing database 30 using Java servlets and a JDBC (Java Data Base Connectivity) database driver. The XML script can be stored in database 30 individually or as part of a configuration file for an instance of device 11.


Computer


Computer 33 is personal computer (PC) or other machine that includes a processor 36, a memory 37, and a storage medium 38 (see view 55). Storage medium 38 stores computer programs 39, which are executed by processor 36 out of memory 37. Computer programs 39 include a Web client application 43 containing a TCP/IP protocol stack for communicating over the Internet, a Web browser 44 such as Microsoft® Internet Explorer® for accessing Web pages, an operating system (OS) 45 such as Microsoft® Windows98®, and executable instructions 46 for implementing process 50, which is shown in FIG. 2.


Process 50 generates XML script containing one or more SOAP commands from user-generated code provided to computer 33. The code may be input by the user via a graphical user interface (GUI) (not shown), for example, or it may be retrieved from a storage medium or over network 15.


The code has a syntax that can be understood and interpreted by instructions 46. For example, the code may be a commonly-understood computer language, such as BASIC or “C”, or a form of pseudo-code specific to the invention. The code defines functions, such as conditional statements (e.g., If-Then or If-Then-Else statements), control statements (e.g., do While or do Until loops), or exception handlers, meaning fail-safe mechanisms that are triggered in the code in the event that an instruction in the code fails. The functions affect the sequence of execution of the resulting XML code and/or SOAP commands.


An example of user-generated C/C++ code is set forth below:





















int local = 8 ;





int total = 0 ;





while ( total < 10 )





{





 total = SomeFunction(total) ;





 AnotherFunction(local) ;





}











This code initializes integer variables “local” and “total” to values of “8” and “0” respectively. The code includes a “While” loop, meaning that the loop between the brackets “{ }” is continually executed while the value of total is less than “10”, whereafter processing within the loop is discontinued. Within the loop, the value of “total” is set equal to the result of a SOAP command called “SomeFunction” processing the previous value of “total” and another SOAP command called “AnotherFunction” processing “local”.


Process 50 receives (201) code, such as that shown above, that defines one or more functions (e.g., a “While” loop) and one or more SOAP commands (e.g., “SomeFunction” and “AnotherFunction”). Process 50 translates (202) the code to XML script that, when interpreted, performs the functions and contains the SOAP commands. To perform the translation, process 50 may compile the code, interpret the functions in the compiled code, and generate appropriate XML script from the compiled code. An appropriate compiler may be included within instructions 46 for this purpose. The format of the SOAP commands may be static and known to the compiler, or the format may be determined dynamically from a WSDL (Web Services Description Language) document. WSDL is a standard for describing SOAP commands. WSDL is itself an XML document that can be interpreted automatically. WSDL defines the set of functions available and the format of each of the SOAP commands.


WSDL usually describes the functionality for a particular device or Web service. By reading WSDL, a program can display functions to a user, then create SOAP command(s) for the function(s) selected by the user. By way of example, there may be one thousand devices, all with individual settings, and it is desired to set all of the devices to 6% lower power usage. Using traditional SOAP commands, the server must be able to address each device, obtain each device's current setting, calculate 94% of its value, then write that new value back to each device, all through issuing individual SOAP commands. Using a SOAP script, the same script can be sent to all of the devices because the variable is evaluated locally at each device. As the population of monitored devices grows, this kind of distributed processing becomes more useful.


Continuing with the example set forth above, process 50 translates (202) the code into the following XML script:



















<Root>




 <Variables>




  <local type=″integer″>8</local>




  <total type=″integer″>0</total>




 </Variables>




 <Script>




  <While condition=″total < 10″>




   <SOAP-ENV:Body>




    <SomeFunction>




    <Count>total</Count>




    </SomeFunction>




    </SOAP-ENV:Body>




    <Return variable=″total″/>




    <SOAP-ENV:Body>




    <AnotherFunction>




     <Input>local</Input>




    </AnotherFunction>




    </SOAP-ENV:Body>




   </While>




  </Script>




 </Root>











The XML script contains the same functions and SOAP commands as the original C/C++ code input by the user. For example, the “While” loop is expressed as

<While condition=“total<10”> and </While>

and the SOAP commands are expressed as



















 <SOAP-ENV:Body>




  <SomeFunction>




  <Count>total</Count>




  </SomeFunction>




 </SOAP-ENV:Body>




and




 <SOAP-ENV:Body>




  <AnotherFunction>




  <Input>local</Input>




  </AnotherFunction>




 </SOAP-ENV:Body>











The expression “<Return variable=“total”/>” returns the value of the variable “total” to the XML script. Thus, the output of the SOAP command may be passed back to the XML script as an argument in the SOAP command and used as a variable in the XML script. Also, the XML script may be written so that a variable, such as “total”, is passed as an argument to a SOAP command.


An example of XML script containing a conditional “IF” statement is set forth in Appendix A attached hereto. An example of XML script containing an exception handler is set forth in Appendix B attached hereto.


After the code has been translated (202) to XML script, process 50 provides (203) the XML script to server 19 over network 15. Process 50 may send the XML script to server 19 through a Web interface, along with identification information that specifies the instance of device 11 for which the XML script is intended. Web server software 29 on server 19 receives the XML script over network 15 and application logic 32 stores the XML script in database 30, along with its associated identification information.


Device-Initiated Retrieval of the XML Script


Embedded controller 17 executes software 20 to retrieve the XML script intended for device 11 from remote server 19. In response, server 19 executes software 34 to send the XML script to embedded controller 17. FIG. 3 shows these processes in detail. The left half of FIG. 3, titled “Embedded Controller” shows process 40 performed by embedded controller 17, and the right half of FIG. 3, titled, “Server”, shows process 41 performed by server 19.


Process 40 generates and sends (301) a command to server 19. The command, or a modified version thereof, is sent by embedded controller 17 to server 19 periodically. It is through this command that embedded controller 17 polls server 19 to determine if there is any new/updated XML script for device 11 on server 19.


The command includes XML data identifying device 11. The data identifies the specific instance of device 11 and may include a device type field and one or both of a device serial number field and a device UUID. The command may also include a common name field, a manufacturer name field, a model name field, and a model number field, which specify the information set forth above for the device.


The command may be either an HTTP GET command or an HTTP post command. The data included in those commands is similar, with the difference being that the HTTP GET command retrieves a document, such as a file containing the XML script, and the HTTP POST command retrieves information, such as the XML script itself.


Process 41 (in server 19) receives (302) the HTTP command from embedded controller 17. Process 41 identifies the command as either a POST or GET command based on a header, such as “POST/CONTROL HTTP/1.1” (for a POST command), in the command. Process 41 uses an XML parser to parse (303) the various identifying fields, such as device type, serial number, and UUID, from the command.


Process 41 identifies (304) the instance of device 11 based on the information parsed from the command. That is, process 41 uses the device type, serial number, and UUID field information to identify the instance of device 11.


If the Command is a POST Command


The identification information from the command, in particular the device serial number and/or UUID, is used to search through database 30 for XML script specific to device 11. Once the appropriate XML script has been identified (304), process 41 retrieves (305) that XML script from database 30 using application logic 32. Process 41 determines if the XML script has been updated since it was last retrieved. This may be done by examining a revision number or date included in a header associated with the XML script. If the XML script has been updated, process 41 adds the updated XML script to the reply portion of POST command and sends (306) the POST command, with the updated XML script, back to embedded controller 17.


If the Command is a GET Command


As was the case above with the POST command, the identification information from the command is used to search through database 30 for XML script for the specific instance of device 11. In particular, the device serial number and/or UUID are used to retrieve (305) a configuration file that is specific to device 11. The configuration file contains the XML script for device 11. Process 41 sends (306) the configuration file to embedded controller 17.


Process 40 receives (307) the XML script containing one or more SOAP commands from server 19 in response to the HTTP command. Process 40 (in particular Web client application 21 in device 11) provides the XML script to XML interpreter 23, where the XML script is executed.


Referring to FIG. 4, a process 52 is shown for executing the XML script in embedded controller 17. Process 52 is implemented by executable instructions in XML interpreter 23 and SOAP interpreter 26.


XML interpreter 23 interprets (401) the XML script to perform the functions contained therein. For example, if there are any conditional statements, control statements, or exception handlers defined by the XML script, XML interpreter performs those functions on the appropriate commands and variables contained in the XML script.


During processing, XML interpreter 23 parses (402) the XML script to identify any SOAP commands contained in the XML script. Identified SOAP commands are passed to SOAP interpreter 26, which executes (403) the SOAP commands. Results of the SOAP commands may be passed back to the XML interpreter 23 for further processing. Likewise, variables may be passed from the XML script to the SOAP commands.


Using XML script in this manner, embedded controller 17 is able to execute multiple SOAP commands in response to a single device-initiated query. Thus, device 11 can perform reconfiguration operations or the like using multiple SOAP commands without maintaining communication with an external device, such as server 19, during the reconfiguration process. The XML script can specify (future) times at which the SOAP commands are to be executed, thus providing the device with further control over its own operation. SOAP interpreter 26 implements the SOAP standard to interpret and execute function calls. As more devices and software systems have support for SOAP, device 11 will be able to execute a script that controls multiple devices by calling their SOAP services.


Architecture


Processes 40, 41, 50 and 52 are not limited to use with the hardware/software configuration of FIG. 1; they may find applicability in any computing or processing environment. Processes 40, 41, 50 and 52 may be implemented in hardware (e.g., an ASIC {Application-Specific Integrated Circuit} and/or an FPGA {Field Programmable Gate Array}), software, or a combination of hardware and software.


Processes 40, 41, 50 and 52 may be implemented using one or more computer programs executing on programmable computers that each includes a processor, a storage medium readable by the processor (including volatile and non-volatile memory and/or storage elements), at least one input device, and one or more output devices.


Each such program may be implemented in a high level procedural or object-oriented programming language to communicate with a computer system. Also, the programs can be implemented in assembly or machine language. The language may be a compiled or an interpreted language.


Each computer program may be stored on a storage medium or device (e.g., CD-ROM, hard disk, or magnetic diskette) that is readable by a general or special purpose programmable computer for configuring and operating the computer when the storage medium or device is read by the computer to perform processes 40, 41, 50 and 52.


Processes 40, 41, 50 and 52 may also be implemented as an article of manufacture, such as one or more machine-readable storage media (e.g., compact or floppy disc), each configured with a computer program, where, upon execution, instructions in the computer program cause a machine (e.g., a computer) to operate in accordance with one or more of processes 40, 41, 50 and 52.


The invention is not limited to use with the protocols and standards described above. For example, Web server may use Java Servlets, ASP (Active Server Pages), ISAPI (Internet Server Application Programming Interface), or .NET interfaces to communicate with application logic 32. The HTTP commands sent by embedded controller 17 and/or server 19 are not limited to HTTP GET and POST commands. Any commands and/or requests for requesting and receiving data may be used.


The invention is not limited to the protocols and architecture described with respect to FIG. 1. Similarly, the invention is not limited to device-initiated transfers of the XML script. For example, computer 33 may transmit the XML script directly to embedded controller 17 (rather than by way of server 19) via e-mail, file transfer protocol (FTP), message queues, or any other type of data transfer mechanism. These other transfer protocols may also be used with device-initiated transfers. Server 19 may generate the XML script and transmit it directly to controller 17. The XML script may be used on any machine, and is not limited to use with embedded controllers. RPCs other than SOAP calls may be scripted using XML and the resulting XML script may be processed in the manner described herein. SOAP commands other than those described herein may be used. The processes described herein may be implemented using circuitry such as programmable logic, logic gates, a processor, and/or a memory.


Other embodiments not specifically described herein are also within the scope of the following claims.

Claims
  • 1. A method performed by one or more processing devices for generating script that comprises first and second simple object access protocol (SOAP) commands, comprising: receiving, from a controller associated with a device, a HyperText Transfer Protocol (HTTP) command comprising information that identifies a device;retrieving code that defines a function based on the information;translating the code to the script that performs the function, the script comprising the first and second SOAP commands, the script defining at least one of a sequence or a timing of execution of the first and second SOAP commands, and the script defining one or more variables to pass between the first and second SOAP commands; andsending, to the controller, a response to the HTTP command, the response comprising the script, the script being runnable by the controller by interpreting the script and the first and second SOAP commands.
  • 2. The method of claim 1, wherein the function comprises a conditional statement comprising an If-Then statement or an If-Then-Else statement.
  • 3. The method of claim 1, wherein the script comprises extensible markup language (XML) script.
  • 4. The method of claim 1, further comprising sending the script to multiple devices having a same type to be run by the multiple devices.
  • 5. The method of claim 4, wherein at least one of the multiple devices comprises a controller that is embedded in an apparatus; and wherein the script affects control over the apparatus by the controller.
  • 6. The method of claim 1, wherein translating comprises: compiling the code to generate compiled code;interpreting the function in the complied code; andgenerating the script based on the function.
  • 7. The method of claim 6, wherein compiling is performed by a compiler; and wherein the method further comprises the compiler determining a format of the first SOAP command and the second SOAP command.
  • 8. The method of claim 7, wherein the compiler determines the format based on a Web Services Description Language (WSDL) document that defines SOAP command format.
  • 9. The method of claim 8, wherein the WSDL document is in a self-describing computing language; and wherein the method further comprises the compiler interpreting the WSDL document automatically.
  • 10. The method of claim 1, further comprising: receiving a command from a device, the command identifying an instance of the device, the command comprising a HyperText Transfer Protocol (HTTP) command;retrieving the script based on the instance of the device; andsending the script to the device.
  • 11. The method of claim 10, wherein the one or more processing devices are part of a server, the server being on a first network; and wherein the device is on a second network that is different from the first network, the device having an Internet Protocol (IP) address that is local to the second network and that is not recognized by the server on the first network.
  • 12. The method of claim 11, wherein at least one of the first SOAP command or the second SOAP command encodes a remote procedure call.
  • 13. One or more non-transitory machine-readable storage media storing instructions that are executable on one or more processing devices to generate script that comprises first and second simple object access protocol (SOAP) commands, the instructions being executable to perform operations comprising: receiving, from a controller associated with a device, a HyperText Transfer Protocol (HTTP) command comprising information that identifies a device;retrieving code that defines a function based on the information;translating the code to the script that performs the function, the script comprising the first and second SOAP commands, the script defining at least one of a sequence or a timing of execution of the first and second SOAP commands, and the script defining one or more variables to pass between the first and second SOAP commands; andsending, to the controller, a response to the HTTP command, the response comprising the script, the script being runnable by the controller by interpreting the script and the first and second SOAP commands.
  • 14. The one or more non-transitory machine-readable storage media of claim 13, wherein the function comprises a conditional statement comprising an If-Then statement or an If-Then-Else statement.
  • 15. The one or more non-transitory machine-readable storage media of claim 13, wherein the script comprises extensible markup language (XML) script.
  • 16. The one or more non-transitory machine-readable storage media of claim 13, wherein the operations comprise sending the script to multiple devices having a same type for execution by the multiple devices.
  • 17. The one or more non-transitory machine-readable storage media of claim 16, wherein at least one of the multiple devices comprises a controller that is embedded in an apparatus; and wherein the script affects control over the apparatus by the controller.
  • 18. The one or more non-transitory machine-readable storage media of claim 13, wherein translating comprises: compiling the code to generate compiled code;interpreting the function in the complied code; andgenerating the script based on the function.
  • 19. The one or more non-transitory machine-readable storage media of claim 18, wherein compiling is performed by a compiler; and wherein the operations comprise the compiler determining a format of the first SOAP command and the second SOAP command.
  • 20. The one or more non-transitory machine-readable storage media of claim 19, wherein the compiler determines the format based on a Web Services Description Language (WSDL) document that defines SOAP command format.
  • 21. The one or more non-transitory machine-readable storage media of claim 20, wherein the WSDL document is in a self-describing computing language; and wherein the operations comprise the compiler interpreting the WSDL document automatically.
  • 22. The one or more non-transitory machine-readable storage media of claim 13, wherein the operations comprise: receiving a command from a device, the command identifying an instance of the device, the command comprising a HyperText Transfer Protocol (HTTP) command;retrieving the script based on the instance of the device; andsending the script to the device.
  • 23. The one or more non-transitory machine-readable storage media of claim 22, wherein the one or more processing devices are part of a server, the server being on a first network; and wherein the device is on a second network that is different from the first network, the device having an Internet Protocol (IP) address that is local to the second network and that is not recognized by the server on the first network.
  • 24. The one or more non-transitory machine-readable storage media of claim 23, wherein at least one of the first SOAP command or the second SOAP command encodes a remote procedure call.
CROSS REFERENCE TO RELATED APPLICATIONS

This application is a continuation, and claims the benefit of priority under 35 USC 120, of U.S. application Ser. No. 15/412,421, filed Jan. 23, 2017; U.S. application Ser. No. 15/412,421 being a continuation of U.S. application Ser. No. 14/298,114, filed Jun. 6, 2014 and issued as U.S. Pat. No. 9,591,065 on Mar. 7, 2013; U.S. application Ser. No. 14/298,114 being a continuation of U.S. application Ser. No. 13/252,437, filed Oct. 4, 2011 and issued as U.S. Pat. No. 8,752,074 on June 2014; U.S. application Ser. No. 13/252,437 being a continuation of U.S. application Ser. No. 11/673,943, filed Feb. 12, 2007 and issued as U.S. Pat. No. 8,060,8886 on Nov. 15, 2011; and U.S. application Ser. No. 11/673,943 being a divisional of U.S. application Ser. No. 10/123,960, filed Apr. 17, 2002 and issued as U.S. Pat. No. 7,178,149 on Feb. 13, 2007. The disclosures of the prior application Ser. Nos. 15/412,421, 14/298,114, 13/252,437, 11/673,943, and 10/123,960 are considered part of, and are incorporated by reference into, the disclosure of this application as if set forth herein in full.

US Referenced Citations (780)
Number Name Date Kind
4086434 Bocchi Apr 1978 A
4412292 Sedam et al. Oct 1983 A
4497037 Kato et al. Jan 1985 A
4583834 Seko et al. Apr 1986 A
4853946 Elliott et al. Aug 1989 A
4962368 Dobrzanski et al. Oct 1990 A
4964065 Hicks et al. Oct 1990 A
4965946 Hegedus et al. Oct 1990 A
4996703 Gray Feb 1991 A
5038319 Carter et al. Aug 1991 A
5057866 Hill, Jr. et al. Oct 1991 A
5061837 Gilbert et al. Oct 1991 A
5077582 Kravette et al. Dec 1991 A
5084875 Weinberger et al. Jan 1992 A
5129080 Smith Jul 1992 A
5138377 Smith et al. Aug 1992 A
5163151 Bronikowski et al. Nov 1992 A
5184179 Tarr et al. Feb 1993 A
5204699 Birnbaum et al. Apr 1993 A
5212645 Wildes et al. May 1993 A
5214772 Weinberger et al. May 1993 A
5216461 Maekawa et al. Jun 1993 A
5220380 Hirata et al. Jun 1993 A
5224157 Yamada et al. Jun 1993 A
5243382 Takano et al. Sep 1993 A
5257069 Hirata et al. Oct 1993 A
5261061 Ju Nov 1993 A
5270775 Suzuki Dec 1993 A
5282127 Mii Jan 1994 A
5291244 Kajiwara et al. Mar 1994 A
5293196 Kaneko et al. Mar 1994 A
5297034 Weinstein Mar 1994 A
5297256 Wolstenholme et al. Mar 1994 A
5300980 Maekawa et al. Apr 1994 A
5303005 Takano et al. Apr 1994 A
5305055 Ebner et al. Apr 1994 A
5305199 LoBiondo et al. Apr 1994 A
5307263 Brown Apr 1994 A
5325156 Ulinski Jun 1994 A
5333286 Weinberger et al. Jul 1994 A
5335048 Takano et al. Aug 1994 A
5339168 Evanitsky et al. Aug 1994 A
5342037 Martin Aug 1994 A
5347346 Shimizu et al. Sep 1994 A
5359391 Kuroyanagi et al. Oct 1994 A
5361265 Weinberger et al. Nov 1994 A
5365310 Jenkins et al. Nov 1994 A
5367667 Wahlquist et al. Nov 1994 A
5369469 Leo et al. Nov 1994 A
5369471 Yamada Nov 1994 A
5369472 Raj et al. Nov 1994 A
5373349 Ito Dec 1994 A
5384622 Hirata et al. Jan 1995 A
5386271 Maekawa et al. Jan 1995 A
5392095 Siegel Feb 1995 A
5398257 Groenteman Mar 1995 A
5404199 Hirata et al. Apr 1995 A
5412779 Motoyama May 1995 A
5414494 Aikens et al. May 1995 A
5420667 Kaneko et al. May 1995 A
5424808 Maekawa et al. Jun 1995 A
5424844 Koyanagi et al. Jun 1995 A
5428551 Trainor et al. Jun 1995 A
5430709 Galloway Jul 1995 A
5434650 Nakahara et al. Jul 1995 A
5442541 Hube et al. Aug 1995 A
5444517 Nagashima Aug 1995 A
5444851 Woest Aug 1995 A
5446522 Tahara et al. Aug 1995 A
5452057 Imaizumi et al. Sep 1995 A
5459552 Ohira Oct 1995 A
5463775 DeWitt et al. Oct 1995 A
5469353 Pinsky et al. Nov 1995 A
5485142 Stute et al. Jan 1996 A
5488454 Fukada et al. Jan 1996 A
5491535 Hirata et al. Feb 1996 A
5493364 Kuroyanagi et al. Feb 1996 A
5517491 Nanni et al. May 1996 A
5528691 Rosauer et al. Jun 1996 A
5530899 MacDonald Jun 1996 A
5543892 Hirata et al. Aug 1996 A
5548376 Kikuno Aug 1996 A
5550957 Davidson, Jr. et al. Aug 1996 A
5555191 Hripcsak Sep 1996 A
5561501 Honma Oct 1996 A
5572672 Dewitt et al. Nov 1996 A
5579087 Salgado Nov 1996 A
5586254 Kondo et al. Dec 1996 A
5594529 Yamashita et al. Jan 1997 A
5600301 Robinson, III Feb 1997 A
5600403 Inoo Feb 1997 A
5603060 Weinberger et al. Feb 1997 A
5603323 Pflugrath et al. Feb 1997 A
5619024 Kolls Apr 1997 A
5619716 Nonaka et al. Apr 1997 A
5631724 Sawada et al. May 1997 A
5636008 LoBiondo et al. Jun 1997 A
5636333 Davidson, Jr. et al. Jun 1997 A
5638427 Flemming et al. Jun 1997 A
5640495 Colbert et al. Jun 1997 A
5642202 Williams et al. Jun 1997 A
5642208 Takahashi et al. Jun 1997 A
5655084 Pinsky et al. Aug 1997 A
5659794 Caldarale et al. Aug 1997 A
5673190 Kahleck et al. Sep 1997 A
5675744 Tsujii Oct 1997 A
5677775 Yamaguchi et al. Oct 1997 A
5694528 Hube Dec 1997 A
5696903 Mahany Dec 1997 A
5699494 Colbert et al. Dec 1997 A
5708908 Hirata et al. Jan 1998 A
5708909 Yamashita et al. Jan 1998 A
5715393 Naugle Feb 1998 A
5715496 Sawada et al. Feb 1998 A
5715823 Wood et al. Feb 1998 A
5720015 Martin et al. Feb 1998 A
5727135 Webb et al. Mar 1998 A
5727248 Ogura Mar 1998 A
5732212 Perholtz et al. Mar 1998 A
5736965 Mosebrook et al. Apr 1998 A
5740801 Branson Apr 1998 A
5745268 Eastvold et al. Apr 1998 A
5748892 Richardson May 1998 A
5748907 Crane May 1998 A
5752125 Yamashita et al. May 1998 A
5752128 Yamashita May 1998 A
5752917 Fuchs May 1998 A
5761529 Raji et al. Jun 1998 A
5764918 Poulter Jun 1998 A
5768516 Sugishima Jun 1998 A
5772585 Lavin et al. Jun 1998 A
5774052 Hamm et al. Jun 1998 A
5786516 Maliverney Jul 1998 A
5786994 Friz et al. Jul 1998 A
5787149 Yousefi et al. Jul 1998 A
5787278 Barton et al. Jul 1998 A
5790793 Higley Aug 1998 A
5790977 Ezekiel Aug 1998 A
5798738 Yamada Aug 1998 A
5801964 McCarthy Sep 1998 A
5809237 Watts et al. Sep 1998 A
5812397 Pech et al. Sep 1998 A
5812874 Yamashita et al. Sep 1998 A
5818603 Motoyama Oct 1998 A
5819015 Martin et al. Oct 1998 A
5819110 Motoyama Oct 1998 A
5822221 Groenteman Oct 1998 A
5826027 Pedersen et al. Oct 1998 A
5828943 Brown Oct 1998 A
5835816 Sawada et al. Nov 1998 A
5835911 Nakagawa et al. Nov 1998 A
5844550 Trainor et al. Dec 1998 A
5845061 Miyamoto et al. Dec 1998 A
5845230 Lamberson Dec 1998 A
5857207 Lo et al. Jan 1999 A
5857967 Frid et al. Jan 1999 A
5862348 Pedersen Jan 1999 A
5862404 Onaga Jan 1999 A
5865745 Schmitt et al. Feb 1999 A
5872635 Akiyama Feb 1999 A
5872928 Lewis et al. Feb 1999 A
5873009 Yamashita et al. Feb 1999 A
5873659 Edwards et al. Feb 1999 A
5878746 Lemelson et al. Mar 1999 A
5880677 Lestician Mar 1999 A
5884072 Rasmussen Mar 1999 A
5887216 Motoyama Mar 1999 A
5890029 Hirata et al. Mar 1999 A
5894416 Kuroyanagi Apr 1999 A
5897235 Honma Apr 1999 A
5901286 Danknick et al. May 1999 A
5905906 Goffinet et al. May 1999 A
5909493 Motoyama Jun 1999 A
5911095 Atsumi et al. Jun 1999 A
5913060 Discavage Jun 1999 A
5917405 Joao Jun 1999 A
5923842 Pedersen et al. Jul 1999 A
5933675 Sawada et al. Aug 1999 A
5935060 Iliff Aug 1999 A
5941949 Pedersen Aug 1999 A
5956487 Venkatraman et al. Sep 1999 A
5956698 Lacheze et al. Sep 1999 A
5961586 Pedersen Oct 1999 A
5968116 Day, II et al. Oct 1999 A
5970149 Johnson Oct 1999 A
5970430 Burns et al. Oct 1999 A
5974234 Levine et al. Oct 1999 A
5975737 Crater et al. Nov 1999 A
5991810 Shapiro et al. Nov 1999 A
6003061 Jones et al. Dec 1999 A
6003070 Frantz Dec 1999 A
6003078 Kodimer et al. Dec 1999 A
6006045 Miyawaki Dec 1999 A
6009274 Fletcher et al. Dec 1999 A
6009284 Weinberger et al. Dec 1999 A
6012088 Li et al. Jan 2000 A
6014631 Teagarden et al. Jan 2000 A
6014691 Brewer et al. Jan 2000 A
6014694 Aharoni et al. Jan 2000 A
6016535 Krantz et al. Jan 2000 A
6021284 Serizawa et al. Feb 2000 A
6022315 Iliff Feb 2000 A
6023223 Baxter, Jr. Feb 2000 A
6023507 Wookey Feb 2000 A
6023721 Cummings Feb 2000 A
6023749 Richardson Feb 2000 A
6025925 Davidson, Jr. et al. Feb 2000 A
6031964 Anderson Feb 2000 A
6041041 Ramanathan et al. Mar 2000 A
6042111 Rivers et al. Mar 2000 A
6057857 Bloomfield May 2000 A
6061603 Papadopoulos et al. May 2000 A
6064915 Kaneko et al. May 2000 A
6065118 Bull et al. May 2000 A
6081623 Bloomfield et al. Jun 2000 A
6088718 Altschuler et al. Jul 2000 A
6091915 Takagishi Jul 2000 A
6098116 Nixon et al. Aug 2000 A
6101407 Groezinger Aug 2000 A
6108492 Miyachi Aug 2000 A
6112035 Kuroyanagi et al. Aug 2000 A
6112256 Goffinet et al. Aug 2000 A
6115489 Gupta et al. Sep 2000 A
6118899 Bloomfield et al. Sep 2000 A
6119934 Kolls Sep 2000 A
6122463 Nagatani Sep 2000 A
6125363 Buzzeo et al. Sep 2000 A
6130999 Serizawa et al. Oct 2000 A
6139177 Venkatraman et al. Oct 2000 A
6141737 Krantz et al. Oct 2000 A
6152365 Kolls Nov 2000 A
6157944 Pedersen Dec 2000 A
6161145 Bainbridge et al. Dec 2000 A
6167432 Jiang Dec 2000 A
6167448 Hemphill et al. Dec 2000 A
6172683 Bloomfield Jan 2001 B1
6175866 Holloway et al. Jan 2001 B1
6181331 Trainor et al. Jan 2001 B1
6189113 Rabb et al. Feb 2001 B1
6196735 Inamine Mar 2001 B1
6205466 Karp et al. Mar 2001 B1
6209048 Wolff Mar 2001 B1
6221011 Bardy Apr 2001 B1
6226650 Mahajan et al. May 2001 B1
6230199 Revashetti et al. May 2001 B1
6246485 Brown et al. Jun 2001 B1
6256378 Iggulden et al. Jul 2001 B1
6256668 Slivka et al. Jul 2001 B1
6260148 Aggarwal et al. Jul 2001 B1
6260248 Cramer et al. Jul 2001 B1
6282454 Papadopoulos et al. Aug 2001 B1
6282711 Halpern et al. Aug 2001 B1
6286038 Reichmeyer et al. Sep 2001 B1
6286059 Sugiura Sep 2001 B1
6289461 Dixon Sep 2001 B1
6292828 Williams Sep 2001 B1
6295527 McCormack et al. Sep 2001 B1
6298457 Rachlin et al. Oct 2001 B1
6304895 Schneider et al. Oct 2001 B1
6307570 Stergiades Oct 2001 B1
6308099 Fox et al. Oct 2001 B1
6311024 Serizawa et al. Oct 2001 B1
6312378 Bardy Nov 2001 B1
6317570 Uchida et al. Nov 2001 B1
6317781 De Boor et al. Nov 2001 B1
6317783 Freishtat et al. Nov 2001 B1
6317848 Sorens et al. Nov 2001 B1
6325540 Lounsberry et al. Dec 2001 B1
6327594 Van Huben et al. Dec 2001 B1
6338086 Curtis et al. Jan 2002 B1
6343320 Fairchild et al. Jan 2002 B1
6356933 Mitchell et al. Mar 2002 B2
6356949 Katsandres et al. Mar 2002 B1
6359894 Hong et al. Mar 2002 B1
6366741 Fukushima Apr 2002 B1
6368284 Bardy Apr 2002 B1
6370552 Bloomfield Apr 2002 B1
6370570 Muir et al. Apr 2002 B1
6370582 Lim et al. Apr 2002 B1
6377162 Delestienne et al. Apr 2002 B1
6377971 Madden et al. Apr 2002 B1
6381557 Babula et al. Apr 2002 B1
6397212 Biffar May 2002 B1
6405310 Simpson Jun 2002 B1
6406426 Reuss et al. Jun 2002 B1
6412026 Graf Jun 2002 B1
6415023 Iggulden Jul 2002 B2
6415392 Suzuki et al. Jul 2002 B1
6421671 Bryan et al. Jul 2002 B1
6421719 Lewis et al. Jul 2002 B1
6426798 Yeung Jul 2002 B1
6430612 Iizuka Aug 2002 B1
6430711 Sekizawa Aug 2002 B1
6434572 Derzay et al. Aug 2002 B2
6437692 Petite et al. Aug 2002 B1
6437803 Panasyuk et al. Aug 2002 B1
6438598 Pedersen Aug 2002 B1
6446192 Narasimhan et al. Sep 2002 B1
6449633 Van et al. Sep 2002 B1
6449663 Carney et al. Sep 2002 B1
6453127 Wood et al. Sep 2002 B2
6453129 Simpson et al. Sep 2002 B1
6457038 Defosse Sep 2002 B1
6462831 Akiyama Oct 2002 B1
6466971 Humpleman et al. Oct 2002 B1
6471521 Dornbush et al. Oct 2002 B1
6477117 Narayanaswami et al. Nov 2002 B1
6479792 Beiermann et al. Nov 2002 B1
6487513 Eastvold et al. Nov 2002 B1
6493517 Hanson Dec 2002 B1
6493871 McGuire et al. Dec 2002 B1
6494831 Koritzinsky Dec 2002 B1
6510350 Steen, III et al. Jan 2003 B1
6523013 Shah et al. Feb 2003 B2
6523063 Miller et al. Feb 2003 B1
6523130 Hickman et al. Feb 2003 B1
6529848 Sone Mar 2003 B2
6538667 Duursma et al. Mar 2003 B1
6549612 Gifford et al. Apr 2003 B2
6553336 Johnson et al. Apr 2003 B1
6553490 Kottapurath et al. Apr 2003 B1
6559965 Simpson et al. May 2003 B1
6560611 Nine et al. May 2003 B1
6560641 Powderly et al. May 2003 B1
6560656 O'Sullivan et al. May 2003 B1
6564227 Sakakibara et al. May 2003 B2
6567813 Zhu et al. May 2003 B1
6574729 Fink et al. Jun 2003 B1
6581092 Motoyama et al. Jun 2003 B1
6581094 Gao Jun 2003 B1
6587812 Takayama Jul 2003 B1
6587879 Reynolds Jul 2003 B1
6591272 Williams Jul 2003 B1
6598011 Howards Koritzinsky et al. Jul 2003 B1
6601087 Zhu et al. Jul 2003 B1
6601159 Smith et al. Jul 2003 B1
6604212 Sekizawa Aug 2003 B2
6609108 Pulliam et al. Aug 2003 B1
6611863 Banginwar Aug 2003 B1
6631407 Mukaiyama et al. Oct 2003 B1
6636899 Rabb et al. Oct 2003 B1
6643650 Slaughter et al. Nov 2003 B1
6643690 Duursma et al. Nov 2003 B2
6646655 Brandt et al. Nov 2003 B1
6651110 Caspers et al. Nov 2003 B1
6651190 Worley et al. Nov 2003 B1
6654032 Zhu et al. Nov 2003 B1
6654720 Graham et al. Nov 2003 B1
6654726 Hanzek Nov 2003 B1
6665425 Sampath et al. Dec 2003 B1
6670810 Duncan et al. Dec 2003 B2
6671695 McFadden Dec 2003 B2
6681344 Andrew Jan 2004 B1
6681349 Sekizawa Jan 2004 B2
6684259 Discavage et al. Jan 2004 B1
6686838 Rezvani et al. Feb 2004 B1
6687848 Najmi Feb 2004 B1
6687873 Ballantyne et al. Feb 2004 B1
6691106 Sathyanarayan Feb 2004 B1
6691154 Zhu et al. Feb 2004 B1
6691157 Muir et al. Feb 2004 B2
6704807 Mathur et al. Mar 2004 B1
6710893 Hou et al. Mar 2004 B1
6711593 Gordon et al. Mar 2004 B1
6711618 Danner et al. Mar 2004 B1
6714976 Wilson et al. Mar 2004 B1
6717513 Sandelman et al. Apr 2004 B1
6738798 Ploetz et al. May 2004 B1
6754664 Bush Jun 2004 B1
6757714 Hansen Jun 2004 B1
6757899 Zhdankin et al. Jun 2004 B2
6763274 Gilbert Jul 2004 B1
6763501 Zhu et al. Jul 2004 B1
6766333 Wu et al. Jul 2004 B1
6775238 Suzuki Aug 2004 B1
6779004 Zintel Aug 2004 B1
6782542 Mein et al. Aug 2004 B1
6785015 Smith et al. Aug 2004 B1
6785713 Freeman et al. Aug 2004 B1
6785726 Freeman et al. Aug 2004 B1
6789112 Freeman et al. Sep 2004 B1
6789119 Zhu et al. Sep 2004 B1
6792337 Blackett et al. Sep 2004 B2
6799209 Hayton Sep 2004 B1
6799270 Bull et al. Sep 2004 B1
RE38609 Chen et al. Oct 2004 E
6804712 Kracht Oct 2004 B1
6807580 Freeman et al. Oct 2004 B2
6810488 Teng Oct 2004 B2
6816616 Teng Nov 2004 B2
6823397 Rawson, III Nov 2004 B2
6826606 Freeman et al. Nov 2004 B2
6831555 Miller et al. Dec 2004 B1
6832239 Kraft et al. Dec 2004 B1
6832373 O'Neill Dec 2004 B2
6834298 Singer et al. Dec 2004 B1
6842903 Weschler Jan 2005 B1
6857013 Ramberg et al. Feb 2005 B2
6886046 Stutz et al. Apr 2005 B2
6891830 Curtis May 2005 B2
6901448 Zhu et al. May 2005 B2
6904593 Fong et al. Jun 2005 B1
6920480 Mitchell et al. Jul 2005 B2
6922724 Freeman et al. Jul 2005 B1
6925335 May et al. Aug 2005 B2
6925645 Zhu et al. Aug 2005 B2
6928469 Duursma et al. Aug 2005 B1
6940405 Script et al. Sep 2005 B2
6950991 Bloomfield et al. Sep 2005 B2
6952714 Peart Oct 2005 B2
6963899 Fernandez et al. Nov 2005 B1
6972676 Kimmel et al. Dec 2005 B1
6973491 Staveley et al. Dec 2005 B1
6983020 Christiansen Jan 2006 B2
6985779 Hsiung et al. Jan 2006 B2
6986040 Kramer et al. Jan 2006 B1
6990395 Ransom et al. Jan 2006 B2
7003574 Bahl Feb 2006 B1
7016966 Saulpaugh et al. Mar 2006 B1
7020706 Cates et al. Mar 2006 B2
7020773 Otway et al. Mar 2006 B1
7028025 Collins Apr 2006 B2
7028081 Kawashima Apr 2006 B2
7031342 Teng Apr 2006 B2
7032005 Mathon et al. Apr 2006 B2
7035898 Baker Apr 2006 B1
7043677 Li May 2006 B1
7046134 Hansen May 2006 B2
7051084 Hayton et al. May 2006 B1
7057724 Mead et al. Jun 2006 B1
7065576 Kamel et al. Jun 2006 B2
7069298 Zhu et al. Jun 2006 B2
7072946 Shafer Jul 2006 B2
7079010 Champlin Jul 2006 B2
7080267 Gary et al. Jul 2006 B2
7082426 Musgrove et al. Jul 2006 B2
7082460 Hansen et al. Jul 2006 B2
7085814 Gandhi et al. Aug 2006 B1
7085824 Forth et al. Aug 2006 B2
7089567 Girardot et al. Aug 2006 B2
7091846 Wu Aug 2006 B2
7092370 Jiang et al. Aug 2006 B2
7099110 Detzler Aug 2006 B2
7100200 Pope et al. Aug 2006 B2
7113988 Chirashnya et al. Sep 2006 B2
7116681 Hovell et al. Oct 2006 B1
7117239 Hansen Oct 2006 B1
7117243 Peart Oct 2006 B2
7127525 Coleman et al. Oct 2006 B2
7130883 Zhu et al. Oct 2006 B2
7142839 Pelaez et al. Nov 2006 B2
7146408 Crater et al. Dec 2006 B1
7149792 Hansen et al. Dec 2006 B1
7158483 Takabatake et al. Jan 2007 B1
7162315 Gilbert Jan 2007 B2
7162628 Gentil et al. Jan 2007 B2
7178149 Hansen Feb 2007 B2
7185014 Hansen Feb 2007 B1
7194743 Hayton et al. Mar 2007 B2
7203755 Zhu et al. Apr 2007 B2
7213051 Zhu et al. May 2007 B2
7216172 Yang et al. May 2007 B2
7234943 Aleali Jun 2007 B1
7254601 Baller et al. Aug 2007 B2
7266526 Drummond et al. Sep 2007 B1
7290061 Lentini et al. Oct 2007 B2
7293176 Otway et al. Nov 2007 B2
7330872 Peart et al. Feb 2008 B2
7334119 Gentil et al. Feb 2008 B2
7340772 Panasyuk et al. Mar 2008 B2
7346842 Hayton et al. Mar 2008 B1
7353253 Zhao Apr 2008 B1
7359953 Muir et al. Apr 2008 B2
7376695 Duursma et al. May 2008 B2
7421484 Das Sep 2008 B2
7444071 Chen Oct 2008 B2
7453379 Plamondon Nov 2008 B2
7460038 Samuels et al. Dec 2008 B2
7490166 Yang et al. Feb 2009 B2
7496097 Rao et al. Feb 2009 B2
7502726 Panasyuk et al. Mar 2009 B2
7502784 Collins Mar 2009 B2
7512671 Gladwin et al. Mar 2009 B1
7529767 DeAnna et al. May 2009 B2
7532134 Samuels et al. May 2009 B2
7542471 Samuels et al. Jun 2009 B2
7555529 Bloomfield et al. Jun 2009 B2
7562121 Berisford et al. Jul 2009 B2
7562146 Panasyuk et al. Jul 2009 B2
7562226 Aiken et al. Jul 2009 B2
7565526 Shaw et al. Jul 2009 B1
7581005 Montemayor et al. Aug 2009 B2
7584294 Plamondon Sep 2009 B2
7587755 Kramer Sep 2009 B2
7593514 Zhuang et al. Sep 2009 B1
7594018 Pedersen Sep 2009 B2
7596593 Mitchell et al. Sep 2009 B2
7606902 Rao et al. Oct 2009 B2
7609721 Rao et al. Oct 2009 B2
7613131 Decasper et al. Nov 2009 B2
7617531 Chauhan et al. Nov 2009 B1
7619545 Samuels et al. Nov 2009 B2
7620724 Weisman Nov 2009 B2
7656799 Samuels et al. Feb 2010 B2
7657657 Rao et al. Feb 2010 B2
7661129 Panasyuk et al. Feb 2010 B2
7661131 Shaw et al. Feb 2010 B1
7664857 Ovsiannikov et al. Feb 2010 B2
7676813 Bisset et al. Mar 2010 B2
7937370 Hansen May 2011 B2
7966418 Shedrinsky Jun 2011 B2
8055758 Hansen Nov 2011 B2
8060886 Hansen Nov 2011 B2
8108543 Hansen Jan 2012 B2
8752074 Hansen Jun 2014 B2
9591065 Hansen Mar 2017 B2
9967328 Hansen May 2018 B2
20010007117 Cooper et al. Jul 2001 A1
20010019330 Bickmore et al. Sep 2001 A1
20010025377 Hinderks Sep 2001 A1
20010027439 Holtzman et al. Oct 2001 A1
20010049690 McConnell et al. Dec 2001 A1
20010049717 Freeman et al. Dec 2001 A1
20010052999 Hiraoka Dec 2001 A1
20010056547 Dixon Dec 2001 A1
20020006790 Blumenstock et al. Jan 2002 A1
20020019844 Kurowski et al. Feb 2002 A1
20020026514 Ellis et al. Feb 2002 A1
20020032470 Linberg Mar 2002 A1
20020032720 Nelson et al. Mar 2002 A1
20020035533 Mache et al. Mar 2002 A1
20020038320 Brook Mar 2002 A1
20020052932 Curtis et al. May 2002 A1
20020054169 Richardson May 2002 A1
20020059489 Davis et al. May 2002 A1
20020062340 Kloecker et al. May 2002 A1
20020064138 Saito et al. May 2002 A1
20020078135 Venkatsubra Jun 2002 A1
20020078259 Wendorf et al. Jun 2002 A1
20020080391 Sugiura et al. Jun 2002 A1
20020095600 Deen et al. Jul 2002 A1
20020116550 Hansen Aug 2002 A1
20020133753 Mayberry et al. Sep 2002 A1
20020135801 Tessman et al. Sep 2002 A1
20020138543 Teng et al. Sep 2002 A1
20020138567 Ogawa Sep 2002 A1
20020144016 Spicer et al. Oct 2002 A1
20020157090 Anton, Jr. Oct 2002 A1
20020174085 Nelson et al. Nov 2002 A1
20020178241 Eriksson Nov 2002 A1
20020191612 Curtis Dec 2002 A1
20030014733 Ringseth Jan 2003 A1
20030023957 Bau et al. Jan 2003 A1
20030025931 Dorfman et al. Feb 2003 A1
20030037148 Pedersen Feb 2003 A1
20030056140 Taylor et al. Mar 2003 A1
20030061403 Miyata et al. Mar 2003 A1
20030063119 Bloomfield et al. Apr 2003 A1
20030063309 Parry Apr 2003 A1
20030070006 Nadler et al. Apr 2003 A1
20030072027 Haines et al. Apr 2003 A1
20030110167 Kim Jun 2003 A1
20030118353 Haller et al. Jun 2003 A1
20030136837 Amon et al. Jul 2003 A1
20030140234 Noda et al. Jul 2003 A1
20030154284 Bernardin et al. Aug 2003 A1
20030158897 Ben-Natan et al. Aug 2003 A1
20030158919 Fomenko Aug 2003 A1
20030163569 Panasyuk et al. Aug 2003 A1
20030177172 Duursma et al. Sep 2003 A1
20030182375 Zhu et al. Sep 2003 A1
20030200285 Hansen et al. Oct 2003 A1
20030200329 Delaney et al. Oct 2003 A1
20030229529 Mui et al. Dec 2003 A1
20030229785 Daseke et al. Dec 2003 A1
20040027373 Jacquot et al. Feb 2004 A1
20040027376 Calder et al. Feb 2004 A1
20040098515 Rezvani et al. May 2004 A1
20040128370 Kortright Jul 2004 A1
20040139309 Gentil et al. Jul 2004 A1
20040152450 Kouznetsov et al. Aug 2004 A1
20040158630 Chang et al. Aug 2004 A1
20040158631 Chang et al. Aug 2004 A1
20040177124 Hansen Sep 2004 A1
20040186693 Xiang et al. Sep 2004 A1
20040215605 Mester Oct 2004 A1
20040221026 Dorland Nov 2004 A1
20040252628 Detzler Dec 2004 A1
20040260801 Li Dec 2004 A1
20050005152 Singh et al. Jan 2005 A1
20050015501 Kaplan et al. Jan 2005 A1
20050021772 Shedrinsky Jan 2005 A1
20050033588 Ruiz et al. Feb 2005 A1
20050055397 Zhu et al. Mar 2005 A1
20050080897 Braun et al. Apr 2005 A1
20050086172 Stefik Apr 2005 A1
20050102388 Tabbara et al. May 2005 A1
20050119930 Simon Jun 2005 A1
20050141507 Curtis Jun 2005 A1
20050144612 Wang et al. Jun 2005 A1
20050154787 Cochran et al. Jul 2005 A1
20050190769 Smith Sep 2005 A1
20050193099 Reus et al. Sep 2005 A1
20050193386 McCaleb et al. Sep 2005 A1
20050196023 Chen et al. Sep 2005 A1
20050198189 Robinson et al. Sep 2005 A1
20050198245 Burgess et al. Sep 2005 A1
20050198292 Duursma et al. Sep 2005 A1
20050198379 Panasyuk et al. Sep 2005 A1
20050198380 Panasyuk et al. Sep 2005 A1
20050198393 Stutz et al. Sep 2005 A1
20050232168 Schauser et al. Oct 2005 A1
20050235014 Schauser et al. Oct 2005 A1
20050246445 Panasyuk et al. Nov 2005 A1
20050246702 Yeh et al. Nov 2005 A1
20050251551 Mitchell et al. Nov 2005 A1
20050256614 Habermas Nov 2005 A1
20050256923 Adachi Nov 2005 A1
20050262076 Voskuil Nov 2005 A1
20050267974 Panasyuk et al. Dec 2005 A1
20050273513 Panasyuk et al. Dec 2005 A1
20060002315 Theurer et al. Jan 2006 A1
20060015740 Kramer Jan 2006 A1
20060029062 Rao et al. Feb 2006 A1
20060029063 Rao et al. Feb 2006 A1
20060029064 Rao et al. Feb 2006 A1
20060031237 DeAnna et al. Feb 2006 A1
20060031476 Mathes et al. Feb 2006 A1
20060031779 Theurer et al. Feb 2006 A1
20060037022 Byrd et al. Feb 2006 A1
20060037071 Rao et al. Feb 2006 A1
20060037072 Rao et al. Feb 2006 A1
20060039354 Rao et al. Feb 2006 A1
20060039355 Rao et al. Feb 2006 A1
20060039356 Rao et al. Feb 2006 A1
20060039404 Rao et al. Feb 2006 A1
20060047956 Calvin Mar 2006 A1
20060059239 Kouznetsov et al. Mar 2006 A1
20060066448 Berisford et al. Mar 2006 A1
20060069662 Laborczfalvi et al. Mar 2006 A1
20060069668 Braddy et al. Mar 2006 A1
20060069750 Momtchilov et al. Mar 2006 A1
20060069753 Hu et al. Mar 2006 A1
20060070029 Laborczfalvi et al. Mar 2006 A1
20060070090 Gulkis Mar 2006 A1
20060070131 Braddy et al. Mar 2006 A1
20060074837 Braddy et al. Apr 2006 A1
20060075080 Burr et al. Apr 2006 A1
20060075114 Panasyuk et al. Apr 2006 A1
20060075123 Burr et al. Apr 2006 A1
20060075381 Laborczfalvi et al. Apr 2006 A1
20060075463 Braddy et al. Apr 2006 A1
20060077941 Alagappan et al. Apr 2006 A1
20060087408 Korzeniowski Apr 2006 A1
20060087409 Korzeniowski Apr 2006 A1
20060090171 Laborczfalvi et al. Apr 2006 A1
20060095334 Simmons May 2006 A1
20060095370 Seth et al. May 2006 A1
20060100972 Chianese et al. May 2006 A1
20060135192 Surendra et al. Jun 2006 A1
20060150249 Gassen et al. Jul 2006 A1
20060159080 Mazzaferri Jul 2006 A1
20060159432 Mazzaferri Jul 2006 A1
20060161555 Mazzaferri Jul 2006 A1
20060161671 Ryman et al. Jul 2006 A1
20060161783 Aiken et al. Jul 2006 A1
20060161959 Ryman et al. Jul 2006 A1
20060161974 Innes et al. Jul 2006 A1
20060179143 Walker et al. Aug 2006 A1
20060184614 Baratto et al. Aug 2006 A1
20060190719 Rao et al. Aug 2006 A1
20060200307 Riess Sep 2006 A1
20060200494 Sparks Sep 2006 A1
20060203007 Bullard et al. Sep 2006 A1
20060206820 Bullard et al. Sep 2006 A1
20060224742 Shahbazi Oct 2006 A1
20060236325 Rao et al. Oct 2006 A1
20060236385 Innes et al. Oct 2006 A1
20060242415 Gaylor Oct 2006 A1
20060247502 Chen Nov 2006 A1
20060248144 Zhu et al. Nov 2006 A1
20060271875 Green et al. Nov 2006 A1
20060271877 Theurer Nov 2006 A1
20060282521 Anderson et al. Dec 2006 A1
20070005736 Hansen et al. Jan 2007 A1
20070011295 Hansen Jan 2007 A1
20070011356 Schauser et al. Jan 2007 A1
20070022159 Zhu et al. Jan 2007 A1
20070056009 Spilo et al. Mar 2007 A1
20070077917 Kim Apr 2007 A1
20070078976 Taylor et al. Apr 2007 A1
20070088826 Raphel et al. Apr 2007 A1
20070094076 Perkowski et al. Apr 2007 A1
20070094672 Hayton et al. Apr 2007 A1
20070100892 Kephart et al. May 2007 A1
20070106810 Ryman May 2007 A1
20070106811 Ryman May 2007 A1
20070113069 Gentil et al. May 2007 A1
20070130167 Day et al. Jun 2007 A1
20070130337 Arnison Jun 2007 A1
20070143837 Azeez et al. Jun 2007 A1
20070150903 Hansen Jun 2007 A1
20070156810 Kumar Jul 2007 A1
20070156923 Kumar Jul 2007 A1
20070157101 Indiran et al. Jul 2007 A1
20070171921 Wookey et al. Jul 2007 A1
20070174410 Croft et al. Jul 2007 A1
20070174429 Mazzaferri et al. Jul 2007 A1
20070174454 Mitchell et al. Jul 2007 A1
20070179955 Croft et al. Aug 2007 A1
20070180447 Mazzaferri et al. Aug 2007 A1
20070180448 Low et al. Aug 2007 A1
20070180449 Croft et al. Aug 2007 A1
20070180450 Croft et al. Aug 2007 A1
20070180493 Croft et al. Aug 2007 A1
20070186212 Mazzaferri et al. Aug 2007 A1
20070192329 Croft et al. Aug 2007 A1
20070198656 Mazzaferri et al. Aug 2007 A1
20070198661 Hansen Aug 2007 A1
20070203952 Baron et al. Aug 2007 A1
20070239886 Montemayor et al. Oct 2007 A1
20070271599 Rosenstein Nov 2007 A1
20070282623 Dattorro Dec 2007 A1
20070288629 Taylor et al. Dec 2007 A2
20070294237 John et al. Dec 2007 A1
20080005321 Ma et al. Jan 2008 A1
20080031235 Harris et al. Feb 2008 A1
20080034057 Kumar et al. Feb 2008 A1
20080034072 He et al. Feb 2008 A1
20080034110 Suganthi et al. Feb 2008 A1
20080034111 Kamath et al. Feb 2008 A1
20080034119 Verzunov et al. Feb 2008 A1
20080034410 Udupa et al. Feb 2008 A1
20080034413 He et al. Feb 2008 A1
20080034418 Venkatraman et al. Feb 2008 A1
20080034419 Mullick et al. Feb 2008 A1
20080043617 Schekochikhin et al. Feb 2008 A1
20080043622 Kamath et al. Feb 2008 A1
20080043749 Suganthi et al. Feb 2008 A1
20080043760 Venkatraman et al. Feb 2008 A1
20080043761 Kumar et al. Feb 2008 A1
20080046371 He et al. Feb 2008 A1
20080046616 Verzunov et al. Feb 2008 A1
20080046714 Suganthi et al. Feb 2008 A1
20080046717 Kanekar et al. Feb 2008 A1
20080046727 Kanekar et al. Feb 2008 A1
20080046994 Venkatraman et al. Feb 2008 A1
20080049616 Kamath et al. Feb 2008 A1
20080063149 West et al. Mar 2008 A1
20080065757 Motoyama et al. Mar 2008 A1
20080068289 Piasecki Mar 2008 A1
20080068290 Muklashy et al. Mar 2008 A1
20080069005 von Eicken et al. Mar 2008 A1
20080069104 von Eicken et al. Mar 2008 A1
20080071905 Sullivan et al. Mar 2008 A1
20080082657 Hart et al. Apr 2008 A1
20080109912 Rivera May 2008 A1
20080126978 Bai et al. May 2008 A1
20080154957 Taylor et al. Jun 2008 A1
20080201405 Duursma et al. Aug 2008 A1
20080208605 Sinha et al. Aug 2008 A1
20080219122 Detzler et al. Sep 2008 A1
20080231414 Canosa Sep 2008 A1
20080250110 Zhao Oct 2008 A1
20090013064 Taylor et al. Jan 2009 A1
20090019226 Edwards et al. Jan 2009 A1
20090055745 Christiansen Feb 2009 A1
20090064134 Cox Mar 2009 A1
20090099836 Jacobsen et al. Apr 2009 A1
20090100349 Hancock Apr 2009 A1
20090106347 Harwood et al. Apr 2009 A1
20090117890 Jacobsen et al. May 2009 A1
20090119408 Teze et al. May 2009 A1
20090187654 Raja et al. Jul 2009 A1
20090234972 Raghu et al. Sep 2009 A1
20090259728 Berisford et al. Oct 2009 A1
20120143970 Hansen Jun 2012 A1
20120158914 Hansen Jun 2012 A1
20120158982 Hansen Jun 2012 A1
20170195403 Hansen Jul 2017 A1
Foreign Referenced Citations (47)
Number Date Country
0874306 Oct 1998 EP
1191744 Mar 2002 EP
1362282 Nov 2003 EP
1695485 Aug 2006 EP
2797728 Feb 2001 FR
2305820 Apr 1997 GB
60-263162 Dec 1985 JP
06-062130 Mar 1994 JP
07-325513 Dec 1995 JP
09-163008 Jun 1997 JP
09-305407 Nov 1997 JP
09-325925 Dec 1997 JP
10-190922 Jul 1998 JP
10-224372 Aug 1998 JP
11-045195 Feb 1999 JP
11-203079 Jul 1999 JP
11-296453 Oct 1999 JP
10-295788 Apr 2000 JP
2000-112863 Apr 2000 JP
2000-122952 Apr 2000 JP
2000-163283 Jun 2000 JP
2000-278773 Oct 2000 JP
2000-309145 Nov 2000 JP
2001-337817 Dec 2001 JP
2003-223603 Aug 2003 JP
WO-9730879 Aug 1997 WO
WO-9820439 May 1998 WO
WO-9833302 Jul 1998 WO
WO-9838910 Sep 1998 WO
WO-9841943 Sep 1998 WO
WO-9921336 Apr 1999 WO
WO-9957837 Nov 1999 WO
WO-9957838 Nov 1999 WO
WO-9964958 Dec 1999 WO
WO-0023894 Apr 2000 WO
WO-0210919 Feb 2002 WO
WO-0221239 Mar 2002 WO
WO-0221299 Mar 2002 WO
WO-0221414 Mar 2002 WO
WO-0221415 Mar 2002 WO
WO-0221777 Mar 2002 WO
WO-0225501 Mar 2002 WO
WO-03021464 Jul 2003 WO
WO-03054439 Jul 2003 WO
WO-2004059447 Jul 2004 WO
WO-2006009402 Jan 2006 WO
WO-2008083177 Jul 2008 WO
Non-Patent Literature Citations (168)
Entry
Shin Nakajima, a Soap-based Infrastructure for Service Broker. (Year: 2001).
“Frequently Asked Questions about the Extensible Markup Language—The XML FAQ” Version 1.41 (oasis-open.org/cover/xmlFAQ141-19981006. html) (Oct. 6, 1998).
“Remote Diagnostics: Strategic weapon in the war for multi-vendor service contracts,” Tech Assessment, vol. 3, No. 12, Dec. 1995.
“RomWebClient Embedded HTTP client 1-61 Toolkit” Allegrosoft, ′Online! Jul. 9, 2000, pp. 1-2, XPOO2201938 Retrieved from the Internet: <URL: http://web.archive.org/web/2000070920 4234/allegrosoft.com/romwebclient. html> retrievedon Jun. 12, 2002 the whole document.
“Siemens Medical, BJC Health System Extend deal to multivendor service,” Medical Imaging News, vol. 6, No. 26, Jun. 27, 1997.
24x7, HealthTech Publishing Company, Inc. (Nov. 1996).
Action and Response History in U.S. Appl. No. 09/627,201.
Action and Response History in U.S. Appl. No. 09/667,737.
Action and Response History in U.S. Appl. No. 09/708,384.
Action and Response History in U.S. Appl. No. 09/716,717.
Action and Response History in U.S. Appl. No. 10/028,126.
Action and Response History in U.S. Appl. No. 10/123,960.
Action and Response History in U.S. Appl. No. 10/124,181.
Action and Response History in U.S. Appl. No. 10/805,012.
Action and Response History in U.S. Appl. No. 11/503,638.
Action and Response History in U.S. Appl. No. 11/537,399.
Action and Response History in U.S. Appl. No. 11/538,402.
Action and Response History in U.S. Appl. No. 11/616,136.
Action and Response History in U.S. Appl. No. 11/673,943.
Action and Response History in U.S. Appl. No. 11/677,279.
Action and Response History in U.S. Appl. No. 11/774,474.
Action and Response History in U.S. Appl. No. 13/329,928.
Action and Response History in U.S. Appl. No. 10/784,138, dated Sep. 23, 2010.
Adelberg, D., “Building Robust Wrappers for Text Sources”, [online] Retrieved from the Internet<URL:http://student.bu.ac.bd/.about.mumit/Research/NSP-bib/pa-pers/Adelberg99.pdf> [retrieved on Nov. 24, 2008] (1999).
Allegro Software product release 1-61 overview Greenhills Software Inc., ′Online! Jun. 10, 2002, pp. 1-1, XPOO2201939 Retrieved from the Internet: URL:ghs.com/partners.allegro/<retrieved on Jun. 10, 2002 the whole document.
Allegro, RomWebCLient Embedded HTTP client Toolkit: Allegrosoft, Circuit Cellar Online, (Sep. 7, 2000) XP-002201983, Retrieved from the Internet: <URL:http://www.allegrosoft.com/romwebclient.html>[retrieved on Jun. 10, 2002].
Anderson, Professional XML, 2000.
Annex to EPO Form 2004 with claims for grant in European Application No. 01955993.9 (Nov. 29, 2005).
Bock, G., “Mainstreaming XML-based Enterprise Applications: Using Oracle XML DB to Manage Financial Information within a Global Banking System”, Oracle Corporation, (C) 2003.
Box, et al., Simple Object Acces Protocol (SOAP) 1.1, Document No. XP002250270, May 8, 2000.
Chandler, T. et al., “The Technology Development of Automatic Metering and Monitoring Systems”, Int'l Power Engineering Conf. 2005, IEEE, 4 pgs.
Chester, Timothy M., Cross-Platform Integration with XML and SOAP, IT Pro, pp. 26-34 (2001).
Cheung, D. et al., “Distributed and Scalable XML Document Processing Architecture for E-Commerce Systems”, Adv. Issues of E-Commerce and Web-Based Information Systems, WECWIS 2000, 2nd Int'l Workshop, (Jun. 2000), pp. 152-157.
Citrix Online, Citrix Systems, Inc. Whilte Paper, “GoToMyPC Corporate Technology”, [online] Retrieved from the Internet :<gotomypc.com/downloads/pdf/m/GoToMyPC_Corporate_Technology_White_Paper.pdf> [retrieved on Mar. 16, 2010] (2004).
Citrix Online, Citrix Systems, Inc. Whitle Paper, “GoToMyPC Security”, [online] Retrieved from the Internet URL:citrix.it/Repository/docRepository/id_979_1124821417888736.pdf [retrieved on Mar. 16, 2010] (2004).
Communication in EP Application No. 01973431.8, dated Mar. 30, 2005.
CyberTAC & RadScape Presentation (May 1997).
CyberTAC Design Presentation (1997).
CyberTAC from Virtual Impact Systems, Inc. Presentation (1997).
CyberTAC Remote Support System Presentation (1997).
Database WIP, Section El, Week 200156, Abstract, Document No. XP002253876 (Korea Electronics & Telecom Res Inst.) Derwent Publications, Ltd., London, GB, (Mar. 2001).
Decision to Refuse in Application No. EP01973431.8, dated Jun. 21, 2011.
Defense Information Systems Agency, Field Services Office, White Paper Report “pcAnywhere 10.5” (Sep. 2003).
Eastvold, Roger, “Services: The Next Generation,” The Professional Journal, vol. 20, No. 4 (Nov. 1996).
Eastvold, Roger, “Tiss and Tell,” Medical Imaging, Sep. 1995.
EBITS:Electronic Business & Information Technology for Society Research Consortium, Proposal for Development of an Educational and Research Infrastructure for Safe Electronic Commerce, [online] Retrieved from theInternet<URL:http://www.cs.dartmouth.edu/.about.makedon/cs188/proposa- l.html>, [retrieved Feb. 15, 2005].
Emmerich et al., “Implementing Incremental Code Migration with XML,” University College London, 2000.
EmWare Press Release: “emWare Announces Support for Sun Microsystems Jini Technology,” Salt Lake City, UT (Feb. 1999).
EmWare Press Release: “emWare Delivers EMIT 3.0 SDK Pro—A Complete Device Networking Kit for Developing End-to-end, Embedded Device Networking Solutions,” Salt Lake City, UT (May 1999).
EmWare Press Release: “emWare's emLink (TM) Used to Internet-enable Welch Allyn's Vital Signs Monitor,” Chicago, IL (Mar. 1999).
EmWare Press Release: “emWare, IBM Demonstrate Next Phase in Establishing Worldwide Access to Embedded Devices,” Chicago, IL (Mar. 1999).
EmWare Press Release: “Invensys Selects emWare EMIT Device-Networking Software to Add Remote Monitoring and Control Capabilities to its Controller Products,” Salt Lake City, UT (Jun. 1999).
EmWare Press Release: “Motorola, Mitsubishi and National Semiconductor Join emWare's Embed the Internet Alliance,” Chicago, IL (Mar. 1999).
English translation of Notification of Reasons for Refusal in Japanese Application No. 2002-529431, dated Nov. 8, 2010.
Ennis, D., “CORBA and XML Integration in Enterprise Systems”, Iona Technologies Inc.[online], Retrieved from the Internet<URL:http://citeseer.ist.psu.edu/cache/papers/cs/16013/http:z-www.iona.comz/infoz/techcenter/ecoop2000apr17.pdf/ennis00corba.pdf> [retrieved on Nov. 24, 2008] (2000).
Examination Report in EP Application No. 01955993.9, dated Aug. 5, 2004.
Examination Report in EP Application No. 01955993.9, dated Dec. 16, 2004.
Examination Report in EP Application No. 01955993.9, dated Jan. 29, 2004.
Examination Report in EP Application No. 01973431.8, dated Feb. 6, 2009.
Examination Report in EP Application No. 01973431.8, dated Jan. 15, 2008.
Examination Report in EP Application No. 01973431.8, dated Mar. 23, 2010.
Examination Report in EP Application No. 01973431.8, dated Mar. 8, 2005.
Examination Report in EP Application No. 02792391.1, dated Feb. 27, 2012.
Examination Report in EP Application No. 02792391.1, dated Mar. 10, 2010.
Examination Report in EP Application No. 03719774.6, dated Apr. 12, 2006.
Examination Report in EP Application No. 03719774.6, dated Sep. 12, 2005.
ExpertCity, Inc., Whilte Paper, “GoToMyPC: Making Life Simplier for Teleworkers and Travelers”, [online] Retrieved from the Internet<URL:si.umich.edu/Classes/540/Placement/GoOvrvew.p- df> [retrieved on Mar. 16, 2010] (2001).
File History for U.S. Appl. No. 10/123,960, 222 pages.
File History for U.S. Appl. No. 11/673,943, 437 pages.
File History for U.S. Appl. No. 13/252,437, 377 pages.
File History for U.S. Appl. No. 14/310,324, 179 pages.
Final Decision for Rejection in Japanese Patent Application No. 2002-515578, dated Jul. 10, 2012.
Franklin, M. et al., “Data in Your Face: Push Technology in Perspective”, Proc. ACM SIGMOD Int'l Conf. on Mgmt of Data, (Jun. 1998), #XP000886180, pp. 516-519.
Hanckmann, J., “Telescript: The Emerging Standard for Intelligent Messaging,” Philips Telecommunications Review, vol. 52(1), pp. 15-19 (Mar. 1994).
upnp.org/download/UPnPDA10.sub.—20000613.htm (pp. 1-52).
Incremona, A. “Remote Service Diagnostics for Imaging Equipment: Today and Tomorrow,” Advanced Imaging, 12(9):90(2) (1997).
International Preliminary Examination Report in Application No. PCT/US01/23651, dated Oct. 10, 2002.
International Preliminary Examination Report in Application No. PCT/US01/29787, dated Aug. 21, 2002.
International Preliminary Examination Report in Application No. PCT/US01/45198, dated Apr. 2, 2008.
International Preliminary Examination Report in Application No. PCT/US2002/040058, dated Jun. 10, 2004.
International Preliminary Report on Patentability (incl. Written Opinion) in Application No. PCT/US2007/088858, dated Jul. 9, 2009.
International Search Report &. Written Opinion in Application No. PCT/US2007/088858, dated May 21, 2008.
International Search Report and Written Opinion in Application No. PCT/US03/11701, dated Oct. 13, 2004.
International Search Report in Application No. PCT/US01/23651, dated Jun. 3, 2002.
International Search Report in Application No. PCT/US01/29787, dated Jun. 28, 2002.
International Search Report in Application No. PCT/US01/45198, dated Apr. 29, 2003.
International Search Report in Application No. PCT/US03/11707, dated Sep. 24, 2003.
International Search Report in Application No. PCT/US2002/040058, dated Nov. 3, 2003.
Jennyc, K., “Linking Enterprise Business Systems to the Factory Floor,” The Hewlett-Packard Journal, Article 9 (May 1998).
Jiang, et al., “Record-Boundary Discovery in Web Documents”, [online] Retrieved from the Internet<URL:http://osm7.cs.byu.edu/deg/papers/SJ.Thesis.ps>, [retrieved on Nov. 24, 2008] (1998).
Kafeza, E. et al., “Alerts in Mobile Healthcare Applications: Requirements and Pilot Study”, IEEE, vol. 8, No. 2, pp. 173-181 (Jun. 2004).
Kimball, R., “XML Will Make it Easier,” Intelligent Enterprise, [online] Retrieved from the Internet<URL:intelligententerprise.com/010416/webhouse1_1.jhtml> [retrieved on Nov. 24, 2008] (Apr. 16, 2001).
Koppen, E., et al., “Active Hypertext for Distributed Web Applications”, Enabling Technologies: Infrastructure for Collaborative Enterprises, (WET ICE '99), Proc. IEEE 8th Int'l. Workshop (1999), pp. 297-302.
Kovar, J., “Xerox Unveils Expanded Channel Lineup; Also Plans to Introduce E-Mail, Queue Management Software,” PC Expo,(Jun. 1999).
Lassman, M. et al., “Modern Nuclear Medical Diagnostics with Efficient Gamma Cameras,” Electromedica, 66(2):43-51, (1998).
Layman, et al., “XML-Data,” Position Paper from Microsoft Corp. (Jun. 1997), [online] Retrieved from the Internet<URL:oasis-open.org/cover/xml-data9706223.html> [retrieved on Sep. 2, 2004].
Lerner, R., “At the Forge: Introducing SOAP”, Linux Journal, #XP002292162 , pp. 62-70, (Mar. 2001).
Letter from Foreign Associate regarding response filed in EP Application No. 01973431.8, dated Oct. 8, 2010.
Lewandowska, J., et al., “System for Grouping Technologically Similar Devices”, v. 48 n 12; (Dec. 1975), pp. 636-638 (English Abstract).
Lindley, D., “Xerox unveils copier that phones for help,” Rochester Democrat and Chronicle, (Mar. 28, 1990).
Literature Search by Keyword: CyberTAC (Apr. 22, 2005).
Luh, James C., “With several specs complete, XML enters widespread development,” Internet World, (Jan. 4, 1999).
Machine Translation of Japanese Patent Publication No. 09-305407 (Pub Date Nov. 1997).
Machine Translation of Japanese Patent Publication No. 11-045195, (Pub Date Feb. 1999).
Machine Translation of Japanese Patent Publication No. 11-203079, (Pub Date Jul. 1999).
Machine Translation of Japanese Patent Publication No. 11-296453, (Pub Date Oct. 1999).
Machine Translation of Japanese Patent Publication No. 2000-163283, (Pub Date Jun. 2000).
Machine Translation of Japanese Patent Publication No. 2000-309145, (Pub Date Nov. 2000).
Machine Translation of Japanese Patent Publication No. 2001-337817, (Pub Date Dec. 2001).
Martin, D., “Professional XML”., WROX Press Ltd., pub., Ch. 11, ‘Server to Server’, pp. 559-562, 819-820 (2000).
Mason, K., “XML Translation for block structured languages”, IBM Corporation: Research Disclosure, Kenneth Mason Publications, 44176 (2001).
Math Markup Language (Chapter 4); [online] Retrieved from the Internet<URL:w3.org/TR/REC-MathML/chap4.sub.—4.html>, [retrieved on Feb. 15, 2005].
McBride, R.A., “Security Considerations for Active Messages,” ACM SIGICE Bulletin, vol. 22 (2), (Oct. 1996).
Memphis Educational Computer Connectivity Alliance (MECCA), [online] Retrieved from the Internet<URL:http://www.mecca.org/.about.ltague/nsfnocostextension.ht- ml>, [retrieved on Feb. 15, 2005].
Mendelsohn, Noah, Quick Intro to XML Schemas & SOAP, 26 pages (2000).
Mills et al., “A knowledge-based method for inferring semantic concepts from visual models of system behavior,” ACM (Jul. 2000), pp. 306-337.
Moh it Gupta, Problem with load method of MSXML.COMDocument object, Oct. 23, 2001.
Notice of Reasons for Rejection in Japanese Application No. 2002-529431, dated Nov. 8, 2010.
Office Action for U.S. Appl. No. 09/667,737 dated Feb. 23, 2004.
Office Action for U.S. Appl. No. 14/298,114, 7 pages (dated May 5, 2016).
Office Action for U.S. Appl. No. 14/310,324, 20 pages (dated May 2, 2016).
Office Action in EP Application No. 01955993.9, dated Jun. 6, 2005.
Office Action in EP Application No. 01973431.8, dated Mar. 8, 2005.
Office Action in EP Application No. 01995993.9, dated Jan. 29, 2004.
Office Action in EP Application No. 01996048.3, dated Jun. 22, 2004.
Office Action in EP Application No. 01996048.3, dated Mar. 11, 2005.
Oral Proceeding Minutes in European Application No. 01955993.9, dated Jan. 16, 2006.
Oral Proceedings Communication in Application No. EP01973431.8, dated May 12, 2011.
Orasis Medical Services, Inc., Business Plan Copy No. 001, (Nov. 1995).
Paul, Quick Start with SOAP, Jan. 29, 2001.
Pfeiffer, R., “XML Tutorials for Programmers: Tutorial 2: Writing XML Documents,” (1999) [online] Retrieved from the Internet:<URL:http://imb.com/xml>, [retrieved on Mar. 2, 1999].
Questra Applications Data Sheet (2002).
Questra Preliminary Invalidity Contentions, dated Apr. 29, 2005.
Reagan, K., “Technology for the Soul,” OC Metro, (Sep. 1, 1995).
Response filed in Application No. JP2002-529431, dated May 2, 2011.
Response to Examination Report in EP Application No. 01973431.8, dated Oct. 4, 2010.
Result of Consultation of Nov. 24, 2005 and Nov. 25, 2005 from corresponding European Application No. 01955993.
Rytting, T., “Dispensing the Goods, Embedded Style,” Circuit Cellar Online, (Oct. 1999).
Scan Diagnostic Imaging, vol. 8, No. 24, (Dec. 27, 1995).
Schmidt, the Evolution of Workflow Standards, IEEE (1999).
Search Report in EP Application No. 02792391.1, dated Nov. 19, 2009.
Searls, “The Next Bang: The Expolosive Combination of Embedded Linux, XML, and Instant Mess.”, ACM (Sep. 2000) Issue 77 [online] Retrieved from the Internet<URL:http://www.linuxjournal.com/article.php?sid=4195>, [retrieved on Nov. 20, 2001].
Second Auxiliary Response in EP Application No. 01973431.8, dated Apr. 26, 2011.
SOAP Archives Online, “Multiple Method Calls in SOAP Packet”; [online] Retrieved from the Internet<URL:http://discuss.develop.com/archives/wa.exe?A2=ind9912&L=soap&T=O&F=&S=&P=25113>, [retrieved on Dec. 8, 2000].
Steinfeld, E., “From Standalone to Internet Appliance”, Circuit Cellar Online, [online] (Jul. 9, 2000), #XP002201938, Retrieved from the Internet:<URL:http://web.archive.org/web/20000709204234/al-egrosoft.com/romwebclient.html>retrieved on Jun. 12, 2002 the whole document.
Steinfeld, E., “Internet-appliance technology automates test equipment” EDN Magazine, pp. 157-169, Oct. 2000, www.edbmag.com.
Steinfeld, E., “Making the Change” Document No. XP002201937, Circuit Cellar Online, pp. 1-7, Apr. 2000.
Submission in German dated Nov. 25, 2005 from corresponding European Application No. 01955993.9.
Summons to attend oral proceedings in corresponding European Application No. 01955993.9 dated Oct. 31, 2005.
Summons to attend Oral Proceedings in counterpart EP Application No. 01973431.8, dated Feb. 2, 2011.
Suresh et al., “XML-based Data System for Earth Science Applications”, IEEE 2000 International, vol. 3, pp. 242-328, Jul. 2000.
The Simple Times, vol. 7, No. 1, Mar. 1999; [online] Retrieved from the Internet<URL:http://www.simple-times.org/pub/simple-times/issues/7-1.—html> [retrieved on Aug. 3, 2005].
Trewitt, G., “Using Tcl to Process HTML Forms,” Digital Network Systems Laboratory, NSL Technical Note TN-14, Palo Alto, CA (Mar. 1994).
Universal Plug & Play Device Architecture, (C) Microsoft Corporation (Jun. 8, 2000), [online] Retrieved from the Internet: <URL:http://www.upnp.org/specs/arch/upnpda10.sub.—20000613.htm>, [retrieved on Nov. 24, 2008].
Van der Werff, M., et al., “A Mobile-Based Home Automatic System”, IEEE Mobility Conference, 5 pgs. (2005).
Virtual Reality Transfer Protocol (VRTP); [online] Retrieved from the Internet:<URL:http://www.stl.nps.navy.mil/.about.brutzman/vrtp> (1998).
Walsh, Norman, “XSL The Extensible Style Language: Styling XML Documents,” New Architect Daily, Jan. 1999.
Webmethods B2B Whitepaper; [online] Retrieved from the Internet<URL:http://www.cs.wisc.edu/.about.vganti/papers/b2b.sub.—wp—B2Bintegration.html> (1999).
White Paper, Medical Imaging, East Providence, RI (Sep. 1995).
Wigget, Jeremy, “Intraview: Roger Eastvold of Orasis Inc.,” 24.times.7, (Nov. 1996).
Wikipedia, “GoToMyPC”, [online] retrieved from the Internet:<URL: http://en.wikipedia.org/wiki/Gotomypc> [retrieved on Jan. 21, 2010] (2010).
Williams, T. “Java Goes to Work Controlling Networked Embedded Systems” Computer Design, Pennwell Publ. Littleton, MA, 35:9:36-37, Aug. 1996.
Winer, Dave, “XML-RPC Specification,” (http://XML-RPC.com), Jun. 15, 1999.
Winter 1992, Field of View, vol. 2, No. 3, Toshiba America Medical System, Inc.
Written Opinion in Application No. PCT/US01/45198, dated May 31, 2007.
Wu et al., “A knowledge sharing and collaboration system model based on Internet”, Systems, Man, and Cybernetics, 1999. IEEE SMC'99 Conference Proceedings, vol. 2, pp. 148-152 (1999).
Xerox 190 Copier, Electronic Data Interface Operator Guide, ver. 1.0, (1989).
XP-002253876, c:\epodata\sea\eplog\internal.log.
Related Publications (1)
Number Date Country
20180295179 A1 Oct 2018 US
Divisions (1)
Number Date Country
Parent 10123960 Apr 2002 US
Child 11673943 US
Continuations (4)
Number Date Country
Parent 15412421 Jan 2017 US
Child 15943749 US
Parent 14298114 Jun 2014 US
Child 15412421 US
Parent 13252437 Oct 2011 US
Child 14298114 US
Parent 11673943 Feb 2007 US
Child 13252437 US