Ask a Question related to ASP.NET General, Design and Development.
-
Arun Gandhi #1
Auto Push
Hi Everyone,
IS it possible in ASP.NET that Server should automatically push data to the
client ?
Thanks
Arun Gandhi
Arun Gandhi Guest
-
Push XML to FMS
Can FMS create an XML socket that listens for and accepts connections from external services? I know that FMS can create an XML socket and... -
Push URL
I am trying to create a URL push call to send a url that will open a browser and navigate to the url for all users in the room. Does anyone have any... -
Need a bit of a push...
OK, ive been given a brief to simulate a tank. Ie, a flexible track around several wheels that drives a tank across a terrain. Anyone know of... -
push
hey all, i know a little about flash, but my problem is that, i want to make a counter-strike cartoon, but I want to press a little button in the... -
Auto Levels and Auto color stopped working right
When I have an image opened in Photoshop 7 and I hit either Auto Levels or Auto color, the image always brightens now to an unattractive looking... -
Marc Hoeppner #2
Re: Auto Push
Hi,
I think this is not so much a question about ASP.NET but about the HTTP
protocoll and browsers. To my knowledge there is currently no real push
technology. What you can do independent of ASP.NET is that you can use
XMLHTTP as an object inside IE 5.x or higher to do call backs to the server.
Or you could use an invisible IFRAME that you keep refreshing every now and
then. Then the server could 'push' data to the client by answering the
continous request.
Best regards,
Marc Höppner
NeoGeo
"Arun Gandhi" <arungandhi@hotmail.com> wrote in message
news:eTI5X8uSDHA.3796@tk2msftngp13.phx.gbl...the> Hi Everyone,
>
> IS it possible in ASP.NET that Server should automatically push data to> client ?
>
> Thanks
>
> Arun Gandhi
>
>
Marc Hoeppner Guest
-
William F. Robertson, Jr. #3
Re: Auto Push
no
"Arun Gandhi" <arungandhi@hotmail.com> wrote in message
news:eTI5X8uSDHA.3796@tk2msftngp13.phx.gbl...the> Hi Everyone,
>
> IS it possible in ASP.NET that Server should automatically push data to> client ?
>
> Thanks
>
> Arun Gandhi
>
>
William F. Robertson, Jr. Guest
-
Steve C. Orr, MCSD #4
Re: Auto Push
No, this is not possible.
With HTTP, a request MUST initiate from the client.
Therefore about the best you could do is have a timer on a web page that,
every x seconds, requests a "push" of data if one is available. Of course
this eats a lot more bandwidth but it's your only hope without switching to
a client that is more sophisticated than a web browser.
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Arun Gandhi" <arungandhi@hotmail.com> wrote in message
news:eTI5X8uSDHA.3796@tk2msftngp13.phx.gbl...the> Hi Everyone,
>
> IS it possible in ASP.NET that Server should automatically push data to> client ?
>
> Thanks
>
> Arun Gandhi
>
>
Steve C. Orr, MCSD Guest
-
Null #5
Re: Auto Push
Hmm. I'm interested....What kind of client would enable this? Wouldn't you
have to have some sort of "bound" connection via tcp/ip? How would you
approach this?
I'm curious to know of examples of how this would be done....
Cheers!
"Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
news:OeZPkMwSDHA.1916@TK2MSFTNGP12.phx.gbl...to> No, this is not possible.
> With HTTP, a request MUST initiate from the client.
> Therefore about the best you could do is have a timer on a web page that,
> every x seconds, requests a "push" of data if one is available. Of course
> this eats a lot more bandwidth but it's your only hope without switching> a client that is more sophisticated than a web browser.
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> [url]http://Steve.Orr.net[/url]
>
>
>
> "Arun Gandhi" <arungandhi@hotmail.com> wrote in message
> news:eTI5X8uSDHA.3796@tk2msftngp13.phx.gbl...> the> > Hi Everyone,
> >
> > IS it possible in ASP.NET that Server should automatically push data to>> > client ?
> >
> > Thanks
> >
> > Arun Gandhi
> >
> >
>
Null Guest
-
Steve C. Orr, MCSD #6
Re: Auto Push
Yes, tcp would be the most likely choice.
Here's more info:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemnetsocketstcplistenerclasstopic.asp[/url]
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Null" <farthumstill@hotmail.com> wrote in message
news:uW4nIbxSDHA.2432@TK2MSFTNGP10.phx.gbl...you> Hmm. I'm interested....What kind of client would enable this? Wouldn'tthat,> have to have some sort of "bound" connection via tcp/ip? How would you
> approach this?
>
> I'm curious to know of examples of how this would be done....
>
> Cheers!
>
>
>
> "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
> news:OeZPkMwSDHA.1916@TK2MSFTNGP12.phx.gbl...> > No, this is not possible.
> > With HTTP, a request MUST initiate from the client.
> > Therefore about the best you could do is have a timer on a web pagecourse> > every x seconds, requests a "push" of data if one is available. Ofto> to> > this eats a lot more bandwidth but it's your only hope without switching> > a client that is more sophisticated than a web browser.
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > [url]http://Steve.Orr.net[/url]
> >
> >
> >
> > "Arun Gandhi" <arungandhi@hotmail.com> wrote in message
> > news:eTI5X8uSDHA.3796@tk2msftngp13.phx.gbl...> > > Hi Everyone,
> > >
> > > IS it possible in ASP.NET that Server should automatically push data>> > the> >> > > client ?
> > >
> > > Thanks
> > >
> > > Arun Gandhi
> > >
> > >
> >
>
Steve C. Orr, MCSD Guest



Reply With Quote

