US20090193095A1 - Using message content to group messages - Google Patents

Using message content to group messages Download PDF

Info

Publication number
US20090193095A1
US20090193095A1 US12/271,916 US27191608A US2009193095A1 US 20090193095 A1 US20090193095 A1 US 20090193095A1 US 27191608 A US27191608 A US 27191608A US 2009193095 A1 US2009193095 A1 US 2009193095A1
Authority
US
United States
Prior art keywords
message
collection
messages
correlation
event handlers
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US12/271,916
Inventor
Andrew Coleman
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US12/271,916 priority Critical patent/US20090193095A1/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: COLEMAN, ANDREW
Publication of US20090193095A1 publication Critical patent/US20090193095A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L51/00User-to-user messaging in packet-switching networks, transmitted according to store-and-forward or real-time protocols, e.g. e-mail
    • H04L51/21Monitoring or handling of messages
    • H04L51/234Monitoring or handling of messages for tracking messages

Definitions

  • providers such as Yahoo! or Gmail
  • an extremely large number of messages are processed in appropriate filters everyday to eliminate spam and malware or to group them in several categories for ease of use.
  • message monitoring helps identify network intruders by analyzing the incoming, outgoing, and internal messages of a given company.
  • the message-processing unit needs to act on a message and then move on to the next message. In most situations, such as in grouping email messages, this method proves adequate. There are instances, however, that the meaning of a message, and hence the group it should be assigned to, depends on the previous or next messages. In other words, the meaning of the message in those instances can only be apparent in its appropriate context. There are applications, which include complex event processing, but they let the original message pass unaffected. Presently, a method to gather related messages in a group, before they are processed as a collection, does not exist. The present invention is about categorizing messages in several collections to be processed in the context to which they belong.
  • One embodiment extends the broker/ESB architecture by allowing the messages mid-flow to pause and collecting them into groups according to a correlation string that is calculated from the content of the messages. Furthermore, minimum/maximum quantity and timeout constraints can be applied to the group. Once a grouping of messages is deemed complete, they are combined into one message and routed or transformed according to their combined content. This scheme allows message processing to be batched according to the combined business meaning of multiple inputs.
  • FIG. 1 illustrates the interaction of the incoming messages, a collector node, input terminals, and event handlers.
  • FIG. 2 shows a process flow diagram of the grouping tasks described in the present invention.
  • Message processing in a distributed network includes both routing and delivery of messages as well as transforming such messages. These activities are typically performed by message brokers in a middleware implementation; for example, in an implementation of Enterprise Service (ESB) or Bus software architecture. Typically, the messages are dealt with one by one and independent of each other.
  • ESD Enterprise Service
  • Bus software architecture for example, the messages are dealt with one by one and independent of each other.
  • Message processing in a broker generally involves their routing and/or transformation.
  • the content of the input message is generally used to determine the content or destination of the output. Traditionally, this is done one message at a time whereby the content of each message is considered in isolation.
  • a message might require the wider context of related messages before it can be processed.
  • the flow of related messages is paused mid flow at the broker, until a related group of them is formed. Then, a combined message is routed or transformed according to its content.
  • the invention allows processing these messages from multiple inputs, and it teaches group formation criteria and management.
  • the proposed method comprises the following.
  • WebSphere Message Broker has an add-on technology supporting Complex Event Processing (CEP) in the form of message processing nodes.
  • CEP Complex Event Processing
  • the CEP nodes can be used to extract data from the messages, but it does not affect the original message, which still passes though the flow unaffected and hence have to be processed before related messages have been found.
  • the node has dynamic input terminals, whose number and names are configurable by the user.
  • the node will hold a FIFO list (queue) of message collections that are currently being built (i.e. still incomplete).
  • Each collection instance on the queue will have a set of event handlers, one for each input terminal.
  • the role of the event handler is to determine whether an incoming message should be accepted as a member of a particular collection. Every event handler associated with a collection will signal that it is “satisfied” before that collection is considered complete. The event handler will store necessary state to support this behavior.
  • Incoming messages in the embodiment being described will be offered to each collection in the queue in FIFO order. Either the event handler associated with the terminal that received the message will accept the message into the collection, in which case the message will not be offered to any other collections, OR it will reject the message, in which case the message will be offered to the next collection in the queue. If all collections in the queue reject the message, then a new collection will be added to the end of the queue, and the message will be accepted into that.
  • the order of messages within each resultant tree structure of the message collection is the same as the order the messages arrived at the collector node.
  • event handlers ( 150 - 180 ) have been defined with the following four configurable properties:
  • Timeout Determines the maximum time the event handler should accept messages for (can be infinite if “Quantity” is finite). If both Quantity and Timeout are finite, then the event handler will become satisfied when the first of these two conditions is met.
  • Correlation path This allows messages to be grouped according to a value extracted from the content of the incoming messages.
  • the path could be an XPath 1.0 expression that gets evaluated against the message and cast to a string by calling the XPath string( ) function.
  • the collector node has one further property controlling the collection of messages:
  • Collection expiry If configured, this will set a maximum timeout for a collection starting at the time the first message is accepted into the collection. This timer overrides any individual event handler timers. This is used to ensure incomplete collections do not remain and consume resources indefinitely. Once this timer expires, the incomplete collection is propagated to the “expired” output terminal.
  • the incoming message Once the incoming message has been accepted into a collection, it is temporarily written into a persistent store managed by the collector node. When a collection is “ready for propagation,” the messages it owns are extracted from this store, built into a single combined message, and propagated on to the next node in the flow.
  • the collector node groups the incoming messages into a collection, based on the common correlation string and holding the collection in a first-in-first-out queue.
  • the collection in a first-in-first-out queue has a set of event handlers and each one in the set of event handlers corresponds to one of the dynamic input terminals.

Abstract

In a message grouping application, the broker/ESB architecture allows the messages mid-flow to pause and collecting them into groups according to a correlation string that is calculated from the content of the messages. Furthermore, minimum/maximum quantity and timeout constraints are applied to the group. Once a collection, as a group of related messages, is deemed complete, they are combined into one message and routed or transformed as directed in their combined content. This scheme allows message processing to be batched according to the combined business meaning of multiple inputs.

Description

  • This is a Cont. of another Accelerated Exam. application, Ser. No. 12/020,529, filed Jan. 26, 2008, to issued in November 2008, as a US patent, with the same title, inventors, and assignee, IBM.
  • BACKGROUND OF THE INVENTION
  • Numerous organizations process incoming, outgoing, and internal messages to extract valuable information about the ongoing activities, for instance, to monitor the degree of satisfaction of the employees, the extent of business collaboration with the outside world, or to follow a specific transaction. In providers such as Yahoo! or Gmail, an extremely large number of messages are processed in appropriate filters everyday to eliminate spam and malware or to group them in several categories for ease of use. Alternatively, message monitoring helps identify network intruders by analyzing the incoming, outgoing, and internal messages of a given company.
  • The message-processing unit needs to act on a message and then move on to the next message. In most situations, such as in grouping email messages, this method proves adequate. There are instances, however, that the meaning of a message, and hence the group it should be assigned to, depends on the previous or next messages. In other words, the meaning of the message in those instances can only be apparent in its appropriate context. There are applications, which include complex event processing, but they let the original message pass unaffected. Presently, a method to gather related messages in a group, before they are processed as a collection, does not exist. The present invention is about categorizing messages in several collections to be processed in the context to which they belong.
  • SUMMARY OF THE INVENTION
  • One embodiment extends the broker/ESB architecture by allowing the messages mid-flow to pause and collecting them into groups according to a correlation string that is calculated from the content of the messages. Furthermore, minimum/maximum quantity and timeout constraints can be applied to the group. Once a grouping of messages is deemed complete, they are combined into one message and routed or transformed according to their combined content. This scheme allows message processing to be batched according to the combined business meaning of multiple inputs.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 illustrates the interaction of the incoming messages, a collector node, input terminals, and event handlers.
  • FIG. 2 shows a process flow diagram of the grouping tasks described in the present invention.
  • DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
  • Message processing in a distributed network includes both routing and delivery of messages as well as transforming such messages. These activities are typically performed by message brokers in a middleware implementation; for example, in an implementation of Enterprise Service (ESB) or Bus software architecture. Typically, the messages are dealt with one by one and independent of each other.
  • Message processing in a broker (or ESB) generally involves their routing and/or transformation. The content of the input message is generally used to determine the content or destination of the output. Traditionally, this is done one message at a time whereby the content of each message is considered in isolation. However, there are certain applications whereby the meaning of a message can be different depending on the content of previous or subsequent messages. In other words, a message might require the wider context of related messages before it can be processed.
  • Even in newer technologies such as Complex Event Processing (CEP), the flow of messages through the broker is unaffected, however, the information from the related messages are extracted for processing of complex events that determine their context from multiple related messages.
  • In one embodiment of this invention, the flow of related messages is paused mid flow at the broker, until a related group of them is formed. Then, a combined message is routed or transformed according to its content. The invention allows processing these messages from multiple inputs, and it teaches group formation criteria and management. The proposed method comprises the following.
      • Message Broker system for processing and routing messages in a distributed network
      • Collector node (block A, FIG. 1) for collecting incoming messages into collections (groups) based on a user configurable criteria
      • Collector node having dynamic input terminals (110-140), whose name and number are configurable by the user, where messages are received by the collector node (block A)
      • Using a correlation path to determine the location of and to extract an extracted value from the content of incoming message, where the extracted value is located in the message content at the location addressed by the correlation path
      • Determining a correlation string based on the extracted value and a correlation pattern (wild card)
      • Collector node groups the messages into a collection based on their common correlation string (FIG. 2).
      • Collector node holds the collections being built in a first in first out queue (FIFO).
      • Each collection in the queue has a set of event handlers (150-180), one for each input terminal (110-140) receiving a message.
      • As depicted in FIG. 2, the event handler either accepts an incoming message from the associated input terminal into the collection (220) or rejects the message. If the event handler accepts the message, the message becomes part of the collection (220), and other event handlers in the queue will not check the message. Nevertheless, if the event handler rejects the message, the next event handler (222) associated with the same input for the next collection in FIFO queue will check the message, and so on (the order is from the earliest collection in the queue to the latest collection). (210, 212, 214, 216)
      • If the message is rejected by all event handlers, a new collection is added to the end of the queue to accept the message (226) and the new collection will be added to the list of current collections. (224)
      • The order of messages in each collection is kept the same as the order of messages arrived at the collector node
      • Collector node (A) has a persistent storage (190) for storing the messages accepted into a collection
      • Determining whether a collection is ready for propagation (i.e. if it is complete) based on the user configurable criteria (mentioned above)
      • The user configurable criteria comprises quantity threshold for the number of messages in a collection (if reached, the collection is deemed complete; the number could be infinite), event handler timeout threshold (if reached, the collection is deemed complete; this timeout could be infinite), collection expiry (maximum collection timeout when reached the collection is deemed expired—and no more messages may be added), correlation path, and correlation pattern
      • Sending complete collections to Out terminal
      • Sending expired collections to Expired terminal
      • The correlation path is based on an XPath expression for messages with XML content
      • The correlation string is a subset portion of the extracted value once taking out the correlation pattern
      • Pausing the messages received from the input terminals mid flow to process them in collections
  • WebSphere Message Broker has an add-on technology supporting Complex Event Processing (CEP) in the form of message processing nodes. The CEP nodes can be used to extract data from the messages, but it does not affect the original message, which still passes though the flow unaffected and hence have to be processed before related messages have been found.
  • However, in one embodiment, the current invention holds up messages until they have been formed into group. This allows the messages to be processed after the relevant collections have been made. The node is used to collect incoming messages into collections (groups) in accordance with user configurable criteria. A collection is “ready for propagation” when the collection is “complete” according to the configured parameters. In this case, the collection will be propagated to the “out” terminal. The collection expires according to a configurable timeout from when the first message in the collection arrived. In this case, the collection will be propagated to the “expired” terminal.
  • In this embodiment, the node has dynamic input terminals, whose number and names are configurable by the user. The node will hold a FIFO list (queue) of message collections that are currently being built (i.e. still incomplete). Each collection instance on the queue will have a set of event handlers, one for each input terminal. The role of the event handler is to determine whether an incoming message should be accepted as a member of a particular collection. Every event handler associated with a collection will signal that it is “satisfied” before that collection is considered complete. The event handler will store necessary state to support this behavior.
  • Incoming messages in the embodiment being described, will be offered to each collection in the queue in FIFO order. Either the event handler associated with the terminal that received the message will accept the message into the collection, in which case the message will not be offered to any other collections, OR it will reject the message, in which case the message will be offered to the next collection in the queue. If all collections in the queue reject the message, then a new collection will be added to the end of the queue, and the message will be accepted into that. The order of messages within each resultant tree structure of the message collection is the same as the order the messages arrived at the collector node. To achieve the required behavior set out in this embodiment of this disclosure, event handlers (150-180) have been defined with the following four configurable properties:
  • Quantity—This configures how many messages this event handler instance should accept (can be infinite if “Timeout” is finite).
  • Timeout—Determines the maximum time the event handler should accept messages for (can be infinite if “Quantity” is finite). If both Quantity and Timeout are finite, then the event handler will become satisfied when the first of these two conditions is met.
  • Correlation path—This allows messages to be grouped according to a value extracted from the content of the incoming messages. The path could be an XPath 1.0 expression that gets evaluated against the message and cast to a string by calling the XPath string( ) function.
  • Correlation pattern—If a correlation path is specified, the extracted value is matched against this pattern to extract the substring that matches a wildcard. For example, if the correlation path extracts the filename “part1.dat” in a file header, and the pattern is specified as “*.dat”, then the correlation string is “part1”. All event handlers across a collection will only accept messages that have the same correlation string. The first message in a collection will determine the correlation string that must be matched by all other messages in that collection. A pattern that fails to match the wildcard to a substring will use an empty string as its correlation string. This effectively groups unmatched messages into a default unnamed collection.
  • The collector node has one further property controlling the collection of messages:
  • Collection expiry—If configured, this will set a maximum timeout for a collection starting at the time the first message is accepted into the collection. This timer overrides any individual event handler timers. This is used to ensure incomplete collections do not remain and consume resources indefinitely. Once this timer expires, the incomplete collection is propagated to the “expired” output terminal.
  • Once the incoming message has been accepted into a collection, it is temporarily written into a persistent store managed by the collector node. When a collection is “ready for propagation,” the messages it owns are extracted from this store, built into a single combined message, and propagated on to the next node in the flow.
  • With above descriptions, in the current embodiment, a method of grouping messages using message content is proposed. The method comprises the steps of processing a message in a distributed network, transforming the message, routing the message, and collecting the message into a first group at a collector node, based on user configurable criteria.
  • The collector node comprises dynamic input terminals, which receive the message. The name and number of the dynamic input terminals are configurable by the user. The collector, using a correlation path to determine a first location and to extract a first value from the content of the message, determines a first correlation string, based on the extracted first value and a correlation pattern and compares the first correlation string with a second correlation string, to find a common correlation string, by pausing the message received from the dynamic input terminals mid-flow, to process the message in collection.
  • The collector node groups the incoming messages into a collection, based on the common correlation string and holding the collection in a first-in-first-out queue. The collection in a first-in-first-out queue has a set of event handlers and each one in the set of event handlers corresponds to one of the dynamic input terminals.
  • The event handler either accepts the message or rejects the message. In case the event handler accepts the message, the message becomes a part of the collection. In case the event handler rejects the message, another event handler associated with the same dynamic input terminal for the next earliest collection in the first-in-first-out queue checks the message. In case the message is rejected by all of the event handlers, a new collection to the end of the first-in-first-out queue is added by the collector node, to accept the message.
  • Based on the user configurable criteria, the collector node further determines whether the collection is ready for propagation or not. The user configurable criteria comprises a quantity threshold for the number of messages in the collection, an event handler timeout threshold, a collection expiry for maximum collection timeout, a correlation path, and the correlation pattern sending completed collections to an out terminal, and sending expired collections to an expired terminal.
  • Any variations of the above teaching are also intended to be covered by this patent application.
  • A system, apparatus, or device comprising one of the following is an example for this invention: server, client machine, mail server, PC, mobile device, storage holding messages, router, switches, cables, fiber optics, communication devices, or antenna, sending the information, with the method mentioned above.

Claims (1)

1. A system of grouping messages using message content, said system comprising:
a collector node; and
a first-in-first-out queue;
wherein a message is processed in a distributed network;
said message is transformed;
said message is routed;
said message is collected into a first group at said collector node, based on a user configurable criteria;
wherein said collector node comprises dynamic input terminals;
said dynamic input terminals receives said message;
wherein the name and number of said dynamic input terminals are configurable by said user;
a correlation path is used to determine a first location and to extract a first value from the content of said message;
a first correlation string is determined, based on said extracted first value and a correlation pattern;
said first correlation string is compared with a second correlation string, to find a common correlation string;
said message received from said dynamic input terminals mid-flow is paused, to process said message in collection;
said collector node groups incoming messages into a collection, based on said common correlation string;
said collector node holds said collection in said first-in-first-out queue;
wherein said collection in a first-in-first-out queue has a set of event handlers;
wherein each of said set of event handlers corresponds to one of said dynamic input terminals;
one of said set of event handlers either accepts said message or rejects said message;
in case said one of said set of event handlers accepts said message, said message becomes a part of said collection;
in case said one of said set of event handlers rejects said message, another one of said set of event handlers associated with the same input for the next earliest collection in said first-in-first-out queue checks said message;
in case said message is rejected by all of said set of event handlers, a new collection is added to the end of said first-in-first-out queue, to accept said message;
based on said user configurable criteria, it is determined whether said collection is ready for propagation;
wherein said user configurable criteria comprises:
a quantity threshold for the number of messages in said collection;
an event handler timeout threshold;
a collection expiry for maximum collection timeout;
a correlation path; and
said correlation pattern;
wherein completed collections are sent to an out terminal; and
expired collections are sent to an expired terminal.
US12/271,916 2008-01-26 2008-11-16 Using message content to group messages Abandoned US20090193095A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/271,916 US20090193095A1 (en) 2008-01-26 2008-11-16 Using message content to group messages

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US12/020,529 US7454475B1 (en) 2008-01-26 2008-01-26 Method and system for using message content to group messages
US12/271,916 US20090193095A1 (en) 2008-01-26 2008-11-16 Using message content to group messages

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US12/020,529 Continuation US7454475B1 (en) 2008-01-26 2008-01-26 Method and system for using message content to group messages

Publications (1)

Publication Number Publication Date
US20090193095A1 true US20090193095A1 (en) 2009-07-30

Family

ID=40000837

Family Applications (2)

Application Number Title Priority Date Filing Date
US12/020,529 Expired - Fee Related US7454475B1 (en) 2008-01-26 2008-01-26 Method and system for using message content to group messages
US12/271,916 Abandoned US20090193095A1 (en) 2008-01-26 2008-11-16 Using message content to group messages

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US12/020,529 Expired - Fee Related US7454475B1 (en) 2008-01-26 2008-01-26 Method and system for using message content to group messages

Country Status (1)

Country Link
US (2) US7454475B1 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20140012927A1 (en) * 2012-07-09 2014-01-09 Ben Gertzfield Creation of real-time conversations based on social location information
US20140325008A1 (en) * 2012-01-23 2014-10-30 Fujitsu Limited Computer readable non-transitory medium, electronic mail information output method and electronic mail information output device
US9940163B2 (en) 2015-09-08 2018-04-10 International Business Machines Corporation Ordering repeating elements within a message

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8335827B2 (en) * 2008-07-11 2012-12-18 Yuriy Mishchenko Systems and methods for exchanging information in a large group
CN102025650A (en) * 2010-06-04 2011-04-20 西本新干线股份有限公司 Message processing system and message processing method of enterprise service bus
US8856807B1 (en) * 2011-01-04 2014-10-07 The Pnc Financial Services Group, Inc. Alert event platform
US11055754B1 (en) 2011-01-04 2021-07-06 The Pnc Financial Services Group, Inc. Alert event platform

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5191326A (en) * 1991-09-05 1993-03-02 Schlumberger Technology Corporation Communications protocol for digital telemetry system
US6393460B1 (en) * 1998-08-28 2002-05-21 International Business Machines Corporation Method and system for informing users of subjects of discussion in on-line chats
US6397209B1 (en) * 1996-08-30 2002-05-28 Telexis Corporation Real time structured summary search engine
US20040117340A1 (en) * 2002-12-16 2004-06-17 Palo Alto Research Center, Incorporated Method and apparatus for generating summary information for hierarchically related information
US20040128305A1 (en) * 2002-12-27 2004-07-01 International Business Machines Corporation Data consolidation component for integration of heterogeneous sources of control events
US20040133672A1 (en) * 2003-01-08 2004-07-08 Partha Bhattacharya Network security monitoring system
US20040186776A1 (en) * 2003-01-28 2004-09-23 Llach Eduardo F. System for automatically selling and purchasing highly targeted and dynamic advertising impressions using a mixture of price metrics
US20040264405A1 (en) * 2003-06-14 2004-12-30 Agilent Technologies, Inc. Service usage records for mobile data communications
US7035903B1 (en) * 2000-11-22 2006-04-25 Xerox Corporation Systems and methods for the discovery and presentation of electronic messages that are related to an electronic message
US20070198490A1 (en) * 2004-08-31 2007-08-23 Nhn Corporation Method and system for selecting information of advertiser in internet search engine in response to search-ordering of partner-site
US20070206633A1 (en) * 2006-02-21 2007-09-06 Shawn Melamed Method and system for transaction monitoring in a communication network

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7320001B1 (en) * 1999-01-15 2008-01-15 Hon Hai Precision Industry, Ltd. Method for visualizing information in a data warehousing environment
US6377934B1 (en) * 1999-01-15 2002-04-23 Metaedge Corporation Method for providing a reverse star schema data model
US6918053B1 (en) * 2000-04-28 2005-07-12 Microsoft Corporation Compensation framework for long running transactions
US7523459B2 (en) * 2003-10-14 2009-04-21 Sprint Communications Company Lp System and method for managing messages on a queue
US7822653B2 (en) * 2004-06-09 2010-10-26 Syncada Llc Transaction accounting payment and classification system and approach
US7962401B2 (en) * 2004-08-25 2011-06-14 Cinnober Financial Technology Ab Message consolidation
US20070192490A1 (en) 2006-02-13 2007-08-16 Minhas Sandip S Content-based filtering of electronic messages

Patent Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5191326A (en) * 1991-09-05 1993-03-02 Schlumberger Technology Corporation Communications protocol for digital telemetry system
US6397209B1 (en) * 1996-08-30 2002-05-28 Telexis Corporation Real time structured summary search engine
US6393460B1 (en) * 1998-08-28 2002-05-21 International Business Machines Corporation Method and system for informing users of subjects of discussion in on-line chats
US7035903B1 (en) * 2000-11-22 2006-04-25 Xerox Corporation Systems and methods for the discovery and presentation of electronic messages that are related to an electronic message
US20040117340A1 (en) * 2002-12-16 2004-06-17 Palo Alto Research Center, Incorporated Method and apparatus for generating summary information for hierarchically related information
US20040128305A1 (en) * 2002-12-27 2004-07-01 International Business Machines Corporation Data consolidation component for integration of heterogeneous sources of control events
US20040133672A1 (en) * 2003-01-08 2004-07-08 Partha Bhattacharya Network security monitoring system
US20040186776A1 (en) * 2003-01-28 2004-09-23 Llach Eduardo F. System for automatically selling and purchasing highly targeted and dynamic advertising impressions using a mixture of price metrics
US20040264405A1 (en) * 2003-06-14 2004-12-30 Agilent Technologies, Inc. Service usage records for mobile data communications
US20070198490A1 (en) * 2004-08-31 2007-08-23 Nhn Corporation Method and system for selecting information of advertiser in internet search engine in response to search-ordering of partner-site
US20070206633A1 (en) * 2006-02-21 2007-09-06 Shawn Melamed Method and system for transaction monitoring in a communication network

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20140325008A1 (en) * 2012-01-23 2014-10-30 Fujitsu Limited Computer readable non-transitory medium, electronic mail information output method and electronic mail information output device
US9660952B2 (en) * 2012-01-23 2017-05-23 Fujitsu Limited Computer readable non-transitory medium, electronic mail information output method and electronic mail information output device
US20140012927A1 (en) * 2012-07-09 2014-01-09 Ben Gertzfield Creation of real-time conversations based on social location information
US9412136B2 (en) * 2012-07-09 2016-08-09 Facebook, Inc. Creation of real-time conversations based on social location information
US10896191B2 (en) 2012-07-09 2021-01-19 Facebook, Inc. Creation of real-time conversations based on social location information
US9940163B2 (en) 2015-09-08 2018-04-10 International Business Machines Corporation Ordering repeating elements within a message

Also Published As

Publication number Publication date
US7454475B1 (en) 2008-11-18

Similar Documents

Publication Publication Date Title
US7454475B1 (en) Method and system for using message content to group messages
EP2068516B1 (en) E-mail management services
US7603472B2 (en) Zero-minute virus and spam detection
US8762457B2 (en) Electronic message routing using a routing tag
CN111124819B (en) Method and device for full link monitoring
US20090150400A1 (en) Processing of network content and services for mobile or fixed devices
US20060036764A1 (en) Priority control device
CA2707536A1 (en) Processing of network content and services for mobile or fixed devices
US20070214506A1 (en) Method and system of providing an integrated reputation service
CN103248670A (en) Connection management in a computer networking environment
CN1415150A (en) Online aggregation in unified messaging
CN112087520B (en) Data processing method, device, equipment and computer readable storage medium
US20060265459A1 (en) Systems and methods for managing the transmission of synchronous electronic messages
CN114866528A (en) Data communication method based on MQTT and Websocket
US9679262B2 (en) Image index routing
US20060195537A1 (en) Systems and methods for managing directory harvest attacks via electronic messages
US11811894B2 (en) Reduction of data transmissions based on end-user context
US8874646B2 (en) Message managing system, message managing method and recording medium storing program for that method execution
CN114201314B (en) Contract-based routing method for realizing service dependency discovery and service access
US20050216588A1 (en) Blocking specified unread messages to avoid mailbox overflow
KR100425000B1 (en) System and method for managing specification of a remote place computer
Vassilakis et al. Integrating e-government public transactional services into public authority workflows
CN112910763B (en) Method, device, equipment and medium for providing real-time data interface service
US20140380300A1 (en) Dynamic configuration framework
CN117221871A (en) Request response method and device, electronic equipment and computer readable storage medium

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:COLEMAN, ANDREW;REEL/FRAME:021941/0562

Effective date: 20080121

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO PAY ISSUE FEE