I've seen this "streaming" in several Java-Chats with HTML-Front-End (no applet!) and I would be surprised if this is not possible with Perl.

Indeed it is possible. There are two principal schemes for active chat, both of which require JavaScript on the client side. On scheme relies on doing a periodic refresh from a frame to a server CGI that responds with the most recent messages. Posting a new message happens from a different frame.

The second scheme relies on streaming a sequence of JavaScript commands into a hidden frame. The commands will append to the message stream in a visible frame. Posting a new message happens from a different frame.

To make either of these schemes work, the server side has to do a certain about a client "capability detection", so that the server can know what flavor of frames and JavaScript to use. If you go either route, you'll end up with templates that have conditional chunks of Netscape or IE-flavored JavaScript.

merlyn has a column that shows how to implement the former scheme. For details on the latter scheme, see this paper, which talks about the scheme from a Java-centric viewpoint.


In reply to Re: Real-Time Web-Chat with Perl by dws
in thread Real-Time Web-Chat with Perl by BioHazard

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.