Subject RE: [IB-Architect] Messaging API
Author Jim Starkey
At 11:01 AM 5/17/00 -0400, Leyne, Sean wrote:
>Jim,
>
>I want to make sure that I read your functional outline correctly.
>
>Are you saying that a client would need to "subscribe" to the exact
>String_Message (say - "Hi my name is Sean") in order to receive the
>message from the server message handler?
>
>Example: PostMessage( "Hi my name is " || First_Name)
>
>


Not quite. The proper way to post a message would be:

PostMessage ("name=" | First_Name)

An appropriate message filter to get it would be:

"name=*"

If you wanted to make sure than you missed nothing, you could
use the message filter:

"*=*"

Jim Starkey