Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > Hi Everyone,
    >
    > IS it possible in ASP.NET that Server should automatically push data to
    the
    > client ?
    >
    > Thanks
    >
    > Arun Gandhi
    >
    >

    Marc Hoeppner Guest

  4. #3

    Default Re: Auto Push

    no

    "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 to
    the
    > client ?
    >
    > Thanks
    >
    > Arun Gandhi
    >
    >

    William F. Robertson, Jr. Guest

  5. #4

    Default 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...
    > Hi Everyone,
    >
    > IS it possible in ASP.NET that Server should automatically push data to
    the
    > client ?
    >
    > Thanks
    >
    > Arun Gandhi
    >
    >

    Steve C. Orr, MCSD Guest

  6. #5

    Default 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...
    > 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...
    > > Hi Everyone,
    > >
    > > IS it possible in ASP.NET that Server should automatically push data to
    > the
    > > client ?
    > >
    > > Thanks
    > >
    > > Arun Gandhi
    > >
    > >
    >
    >

    Null Guest

  7. #6

    Default 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...
    > 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...
    > > 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...
    > > > Hi Everyone,
    > > >
    > > > IS it possible in ASP.NET that Server should automatically push data
    to
    > > the
    > > > client ?
    > > >
    > > > Thanks
    > > >
    > > > Arun Gandhi
    > > >
    > > >
    > >
    > >
    >
    >

    Steve C. Orr, MCSD Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139