Pushing realtime data feed to clients

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ryan

    #1

    Pushing realtime data feed to clients

    I have a question about pushing realtime stock quotes to clients
    through the Internet.

    Is this even possible in .NET environment without creating serious
    network bottleneck problems?

    The clients may go in and out of the server zone.

    I am leaning towards client-initiated posts to a web service (every x
    milliseconds) -about 500 clients.
    [Licensing issues are taken care of].

    Or will remoting be an option? Isn't there a TCP/IP connection
    limitation on the server?

    Any input is welcome.

    Thanks.

  • m.posseth

    #2
    Re: Pushing realtime data feed to clients

    remoting is interesting on intranets , but can handle 500 clients or even
    more without problems , in your situation i would more likely use a
    webservice aproach
    instead of pushing it would be retrieving :-)

    regards

    M. Posseth


    "ryan" <cartist@hotmai l.com> schreef in bericht
    news:1129228008 .961970.115880@ o13g2000cwo.goo glegroups.com.. .[color=blue]
    >I have a question about pushing realtime stock quotes to clients
    > through the Internet.
    >
    > Is this even possible in .NET environment without creating serious
    > network bottleneck problems?
    >
    > The clients may go in and out of the server zone.
    >
    > I am leaning towards client-initiated posts to a web service (every x
    > milliseconds) -about 500 clients.
    > [Licensing issues are taken care of].
    >
    > Or will remoting be an option? Isn't there a TCP/IP connection
    > limitation on the server?
    >
    > Any input is welcome.
    >
    > Thanks.
    >[/color]


    Comment

    Working...