Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-02-07 Thread Peter Vertes
era but still... it works, and is architecturally rather clean, so why not use it? -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Peter Vertes Sent: Thursday, January 25, 2007 10:32 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-02-07 Thread Kamen Lilov
sday, January 25, 2007 10:32 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Streaming Data to a Webpage OK, thanks for clearing that up for me Peter. I'm looking at docs for the XMLHttpRequest object right now and it does look promising. Thanks for pointing me in the

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-02-07 Thread Kamen Lilov
] Streaming Data to a Webpage On 1/25/07, Peter Vertes <[EMAIL PROTECTED]> wrote: > > I believe it is impossible to do with the requirements... http://www.justfuckinggoogleit.com/ [1] Cheers, Stoyan [1] http streaming === This list is hosted by De

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-26 Thread Jason Bunting
ED- > [EMAIL PROTECTED] On Behalf Of Peter Vertes > Sent: Thursday, January 25, 2007 10:14 AM > To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > Subject: [ADVANCED-DOTNET] Streaming Data to a Webpage > > Hello List, > > I've been presented with an interesting project

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Peter Suter
Thinking 'pull' rather than 'push'; I'd use a javascript timer then ajax to get changed content. ps - Original Message - From: "Peter Vertes" <[EMAIL PROTECTED]> To: Sent: Friday, January 26, 2007 4:14 AM Subject: [ADVANCED-DOTNET] Streaming

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Geoff Taylor
> Yes that's exactly that I'm looking for however this site uses AJAX but > yes > the basic idea is this. Thanks for the site... > > -Pete I don't think it is, y'know. At least, not AJAX as it's commonly known these days - I don't think it's making much use of the XML-HTTP object. So maybe 'AJ'

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Peter Vertes
Yes that's exactly that I'm looking for however this site uses AJAX but yes the basic idea is this. Thanks for the site... -Pete Hi, Sounds remarkably like this page I was on recently: http://www.binarybet.com/ The home page has a datagrid-like view that auto-updates from the server

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Peter Vertes
OK, thanks for clearing that up for me Peter. I'm looking at docs for the XMLHttpRequest object right now and it does look promising. Thanks for pointing me in the right direction. -Pete On 1/25/07, Peter Ritchie < [EMAIL PROTECTED]> wrote: Yes, that's wrong. You can use the XMLHttpRequest'

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Geoff Taylor
> -Original Message- > From: Discussion of advanced .NET topics. [mailto:ADVANCED- > [EMAIL PROTECTED] On Behalf Of Peter Vertes > Sent: 25 January 2007 17:14 > > For instance imagine a DataGrid that has 10 > ticker > symbols in it. Whenever the price changes for a symbol the backend > pus

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Peter Ritchie
Yes, that's wrong. You can use the XMLHttpRequest's open method to open a connection to a URL (including port #) and wait for a response. The default is to do it "asynchronously" (it's asynchronous to the client code) and process state change via the onreadstatechange event [1]. See http://msdn.

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Krebs Kristofer
- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Peter Vertes Sent: den 25 januari 2007 18:14 To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] Streaming Data to a Webpage Hello List, I've been presented with an interesting project but

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Stoyan Damov
On 1/25/07, Peter Vertes <[EMAIL PROTECTED]> wrote: I believe it is impossible to do with the requirements... http://www.justfuckinggoogleit.com/ [1] Cheers, Stoyan [1] http streaming === This list is hosted by DevelopMentorĀ® http://www.develop.com View arc

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Peter Vertes
Thanks for the quick response Peter. What I meant by the line "...with AJAX you can't have an open socket" is that I don't think it is possible for me to connect to a remote machine on a specific port and wait for updates on that port to come. Am I wrong in assuming this ? -Pete P.S.: Thanks f

Re: [ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Peter Ritchie
What do you mean by "...with AJAX you can't have an open socket"? Without opening a socket AJAX can't do much. At the lowest level AJAX uses an XMLHttpRequest object (in IE6, this *is* technically using an ActiveX object) in the client-side Javascript to open a connection to a server to get an XM

[ADVANCED-DOTNET] Streaming Data to a Webpage

2007-01-25 Thread Peter Vertes
Hello List, I've been presented with an interesting project but after doing some research into it I believe it is impossible to do with the requirements given by the client. The client would like to stream data to a webpage and the webpage should display the updates delivered by the data as c