I am not sure I understand the question.Assuming you are asking if you
have to use the provided chatpod vs. implementing your own chat room,
the chat pod uses theSimpleChatModel.You can implement your own UI that
uses SimpleChatModel ifyou don't like the provided UI.If you are asking
about user to user messaging, you caneither implement your own model, or
use the SimpleChatModel with"private" conversations.If you look at the
chat pod, there is a listbox that lets yousend messages to everybody,
o...