Method and apparatus for creation of an interface for constructing conversational policies
A method and apparatus for taking a visual or verbal representation of a conversational policy and translating the representation into an XML file. The XML file can then be output in one or more formats, such as code used in a policy, a Word version of the XML file, or a visual representation of the XML file.
The present application is related to copending U.S. patent application Ser. No. ______ (IBM Docket No. AUS920040545US1 entitled “Representations of Conversational Policies”) filed even date herewith. The above mentioned patent application is assigned to the assignee of and share the same inventors as the present invention. The content of the cross referenced copending applications are hereby incorporated herein by reference.
BACKGROUND OF THE INVENTION1. Technical Field
The present invention is generally directed to network computing systems. More specifically, the present invention is directed to providing policies that govern transactions between two or more network computer systems. Even more specifically, the present invention is directed to an apparatus and method for creating an interface by which conversation policies can be constructed for agents in a network computing system.
2. Description of Related Art
In interactions between humans and an electronic business system or between two applications in an enterprise application system, participants, whether programs in the systems or humans, interact by sending messages to each other. These interactions can be brief, such as a simple query and answer, or they can be extended, such as in the negotiation of a sale of products or services, where significant information, offers, and counter-offers can be exchanged. U.S. Patent Application 20030204405, published Oct. 30, 2003, which is owned by the assignee of the current application and is hereby incorporated by reference, discloses a means for providing modular conversation policies. This provides a structure in which policies can be brought in from an outside source and modified to meet a specific business system.
As the use of such conversational policies becomes more common, it becomes increasingly desirable to be able to write new policies and to modify old policies. The policies are currently created in a form of extensible markup language (XML), a language that uses tags. However, the rigid structure of an XML tree does not lend itself to error-free coding. A different manner of writing policies is needed.
SUMMARY OF THE INVENTIONThe present invention provides a method and apparatus that can take a visual or verbal representation of a conversational policy and translate the visual or verbal representation into an XML file. The XML file can then be output in one or more formats, such as code used in a policy, a Word version of the XML file, or a Visio representation of the XML file.
BRIEF DESCRIPTION OF THE DRAWINGSThe novel features believed characteristic of the invention are set forth in the appended claims. The invention itself, however, as well as a preferred mode of use, further objectives and advantages thereof, will best be understood by reference to the following detailed description of an illustrative embodiment when read in conjunction with the accompanying drawings, wherein:
Hardware
With reference now to the figures,
In the depicted example, server 104 is connected to network 102 along with storage unit 106. In addition, clients 108, 110, and 112 are connected to network 102. These clients 108, 110, and 112 may be, for example, personal computers or network computers. In the depicted example, server 104 provides data, such as boot files, operating system images, and applications to clients 108-112. Clients 108, 110, and 112 are clients to server 104. Network data processing system 100 may include additional servers, clients, and other devices not shown. In the depicted example, network data processing system 100 is the Internet with network 102 representing a worldwide collection of networks and gateways that use the Transmission Control Protocol/Internet Protocol (TCP/IP) suite of protocols to communicate with one another. At the heart of the Internet is a backbone of high-speed data communication lines between major nodes or host computers, consisting of thousands of commercial, government, educational and other computer systems that route data and messages. Of course, network data processing system 100 also may be implemented as a number of different types of networks, such as for example, an intranet, a local area network (LAN), or a wide area network (WAN).
Referring to
Peripheral component interconnect (PCI) bus bridge 214 connected to I/O bus 212 provides an interface to PCI local bus 216. A number of modems may be connected to PCI local bus 216. Typical PCI bus implementations will support four PCI expansion slots or add-in connectors. Communications links to clients 108-112 in
Additional PCI bus bridges 222 and 224 provide interfaces for additional PCI local buses 226 and 228, from which additional modems or network adapters may be supported. In this manner, data processing system 200 allows connections to multiple network computers. A memory-mapped graphics adapter 230 and hard disk 232 may also be connected to I/O bus 212 as depicted, either directly or indirectly.
Those of ordinary skill in the art will appreciate that the hardware depicted in
The data processing system depicted in
Overview of Modules
With reference now to
Identity interface 308 takes an input file, such as files 302, 304, 306 and identifies objects and descriptions that exist in the input files, using either identification provided in the files or by querying the user. Once identity interface 308 is completed, mapping engine 310 performs mapping between policy objects that have been identified and the xml structures that represent them. A table holds the entries and the sections of code that will be saved to the xml tree. Finally, output generator 312 translates the prepared xml tree into a desired format. Several possible outputs are shown in this figure: file 314 is in Conversation Policy XML (CPXML), file 316 is a text description of the policy, and file 318 is a visual representation of the policy. Like the input, the output format can be as varied as the input, such that once the policy is created, it can be viewed in whatever format is considered most appropriate to the user's needs, whether that need is to execute the conversational policy, to be able to view it for modification, to give a presentation of the policy, etc. The sections of the inventive interface will be discussed in greater detail below. It is noted that while these modules are discussed as if they are three separate modules, the actual boundaries between the modules need not be as discussed, as long as the capabilities are present.
Modules
Identity Interface 308 has the job of identifying each item in the conversation policy. Exemplary modules designed to serve this purpose will share the same recognition algorithm, but may vary in the specifics, for example, of how to recognize a given shape in the specific format. The identity interface must accomplish several tasks:
(a) it must distinguish between a state and an action to move between the states,
(b) it must identify the starting state,
(c) for every state, it must identify every action that is possible in order to leave the state, and
(d) for every action, it must identify the beginning state, the ending state, and the identity of the entity performing the action.
With reference now to
With reference now to
Once an entry for a state is fully created, the mapping engine determines if there is a next state (step 446). If the answer is ‘yes’, the next state is located (step 448) and the mapping engine returns to create the proper number of new table entries (step 444); otherwise, the mapping engine returns to the beginning of the file and searches for the first action (step 450).
When an action is located, it will have a beginning state and an ending state, as previously determined. The identity interface 310 locates the table entry for the corresponding beginning state and action, and then fills in the ending state and the performer (step 452). The mapping engine 310 then looks to see if there are any additional actions to be entered (step 454). If there are, the mapping engine locates the next action (step 456) and returns to fill in the next table entry (step 452); otherwise, the mapping engine has completed forming the table and terminates.
In an alternate embodiment, the identity interface can create the table by a single pass through the information collected. In this embodiment, the identity interface creates an empty table structure. For each action shown in the input, the program creates an entry in the table that contains the four fields listed above. A separate entry for a state is created only for the beginning state, which must be identified as such, and for terminal states, which have no actions leading out of them. Preferably, once all entries are made, the table should be sorted so that all actions associated with a given step are listed together for ease of translation into XML.
Notably, the identification process is not limited to objects, such as shapes, but can apply the identification to descriptions or patterns. For example, a user might describe a conversation policy in words that could then be identified and mapped. The ability to learn meanings and to recognize them later makes this program very flexible.
Once the identity interface has created the disclosed table, the mapping engine 310 will create the appropriate coding for an XML tree for the conversation. This is a fairly straightforward translation and involves moving through the table, creating and assembling coding fragments. Because XML is a very flexible language, the ‘universe’ that the coding represents must be defined in a schema for conversation policies, which forms an XML fragment for the tree. XML requires that (a) the overall conversation be given a name by which it can be addressed, (b) each participant in a dialog be defined as a role, (c) each state must contain a unique name and must contain any necessary information to perform the needed actions of the role, and (d) each possible transition from that state must be described. Since the states and actions have already been assembled into a table, the inventive program can routinely convert them to an XML tree. Where further clarification is needed, the user can be queried for information.
The final portion of the innovative method is the output generator 312. The output generator 312 can take the XML tree created by mapping engine 310 and convert this to the form desired by the user. This can be an XML file, which can be checked against company policies and validated, then executed. It can also be a Word® document, showing the XML file in a format more easily readable by humans. The output can also be provided in a graphical format. For instance, after a conversational policy is created, a user may wish to provide a presentation of the idea; they can then convert the XML tree to an output format compatible with a presentation, such as Microsoft® Powerpoint®.
EXAMPLEIn order to clarify the idea disclosed, an exemplary conversation policy is shown as an embodiment of the inventive method and apparatus converts it into XML.
With reference now to
This same conversation policy can also be represented in a somewhat different manner, depending on the user and the visual system used to represent the policy.
For either of the two
Mapping engine 310 next takes the information in Table 1 and creates appropriate coding fragments to go with each element. For example, the roles can be defined as a buyer and a seller with coding such as,
Each state will have its name defined and the transitions out of it coded,
-
- <State Stateld=“Name”> . . . </State>
The information needed to describe this state is described in code, such as the transitions out of this state. If the state is a child state, the appropriate child must be encoded. Shown below is a printout of an XML file created from Table 1.
Finally, the XML tree, once created by the mapping engine 310, can be placed in one of several formats by the output generator. The listing above is the XML file in Word format, easily read and comprehended by a user. In XML format, the coding can be input to a machine for validation. Other formats can also be produced.
Using the disclosed invention, a conversational policy can be described in a visual format that is easy for users to comprehend and manipulate. The transformation into machine-usable coding is performed by machine, removing the tediousness of the process and avoiding human errors in the actual coding process. Since a number of visual or written formats can be utilized, the user is free to find the format that is intuitively best for them without sacrificing quality in the finished product.
It is important to note that while the present invention has been described in the context of a fully functioning data processing system, those of ordinary skill in the art will appreciate that the processes of the present invention are capable of being distributed in the form of a computer readable medium of instructions and a variety of forms and that the present invention applies equally regardless of the particular type of signal bearing media actually used to carry out the distribution. Examples of computer readable media include recordable-type media, such as a floppy disk, a hard disk drive, a RAM, CD-ROMs, DVD-ROMs, and transmission-type media, such as digital and analog communications links, wired or wireless communications links using transmission forms, such as, for example, radio frequency and light wave transmissions. The computer readable media may take the form of coded formats that are decoded for actual use in a particular data processing system.
The description of the present invention has been presented for purposes of illustration and description, and is not intended to be exhaustive or limited to the invention in the form disclosed. Many modifications and variations will be apparent to those of ordinary skill in the art. The embodiment was chosen and described in order to best explain the principles of the invention, the practical application, and to enable others of ordinary skill in the art to understand the invention for various embodiments with various modifications as are suited to the particular use contemplated.
Claims
1. A method of constructing a conversation policy, said method comprising the computer-performed steps of:
- receiving a conversational policy that has been created in a graphical or verbal form;
- identifying elements of said conversational policy and associating meanings with said elements;
- identifying relationships between said elements; and
- using said elements, said meanings associated with said elements, and said relationships to construct a file in an extensible machine language that describes the conversational policy.
2. The method of claim 1, further comprising converting said file into a format other than an extensible machine language.
3. The method of claim 1, wherein said conversational policy is received in a format created by a program chosen from a group consisting of a word processor, a presentation graphics program, a drawing program, and a software development platform.
4. The method of claim 1, wherein said identifying elements step uses a table of standard elements having associated meanings.
5. The method of claim 1, wherein said identifying elements step dialogs with a user to create a table of user elements having associated meanings.
6. The method of claim 1, wherein said identifying elements step recognizes a first shape as representing a state and a second shape as representing a message that moves said conversation policy from a first state to a second state.
7. The method of claim 1, wherein said identifying elements step recognizes a first pattern as representing a state and a second pattern as representing a message that moves said conversation policy from a first state to a second state.
8. A computer system, comprising:
- a processor, connected to receive input and to write output;
- memory, connected to said processor; and
- a set of instructions stored in said memory and connected to be executed by said processor, said set of instructions containing first instructions for receiving a conversational policy that has been created in a graphical or verbal form, second instructions for identifying elements of said conversational policy and associating meanings with said elements, third instructions for identifying relationships between said elements, and fourth instructions for using said elements, said meanings associated with said elements, and said relationships to construct a file in an extensible machine language that describes the conversational policy.
9. The computer system of claim 8, wherein said set of instructions further comprises converting said file into a format other than an extensible machine language.
10. The computer system of claim 8, wherein said first instructions receive said conversational policy in a format created by a program chosen from a group consisting of a word processor, a presentation graphics program, a drawing program, and a software development platform.
11. The computer system of claim 8, wherein said second instructions dialog with a user to create a table of user elements having associated meanings.
12. The computer system of claim 8, wherein said second instructions recognize a first shape as representing a state and a second shape as representing a message that moves said conversation policy from a first state to a second state.
13. The computer system of claim 8, wherein said second instructions recognize a first pattern as representing a state and a second pattern as representing a message that moves said conversation policy from a first state to a second state.
14. A computer program product on a computer-readable media, said computer program product comprising:
- first instructions for receiving a conversational policy that has been created in a graphical or verbal form,
- second instructions for identifying elements of said conversational policy and associating meanings with said elements,
- third instructions for identifying relationships between said elements, and
- fourth instructions for using said elements, said meanings associated with said elements, and said relationships to construct a file in an extensible machine language that describes the conversational policy.
15. The computer program product of claim 14, wherein said set of instructions further comprises converting said file into a format other than an extensible machine language.
16. The computer program product of claim 14, wherein said first instructions receive said conversational policy in a format created by a program chosen from a group consisting of a word processor, a presentation graphics program, a drawing program, and a software development platform.
17. The computer program product of claim 14, wherein said second instructions use a table of standard elements having associated meanings.
18. The computer program product of claim 14, wherein said second instructions dialog with a user to create a table of user elements having associated meanings.
19. The computer program product of claim 14, wherein said second instructions recognize a first shape as representing a state and a second shape as representing a message that moves said conversation policy from a first state to a second state.
20. The computer program product of claim 14, wherein said second instructions recognize a first pattern as representing a state and a second pattern as representing a message that moves said conversation policy from a first state to a second state.
Type: Application
Filed: May 5, 2005
Publication Date: Nov 9, 2006
Inventors: Paul Foreman (Austin, TX), David Greene (Austin, TX), Philip Light (Austin, TX), Razvan Loghin (Austin, TX), Anand Srinivasan (Arlington Heights, IL)
Application Number: 11/122,611
International Classification: G06F 9/45 (20060101);