How does flex keep track of changes?

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default How does flex keep track of changes?

    I'm a bit confused about the RIA part of flex. Let's say I wanted to have a
    stock quote app at work. All stock quote data was being retrieved from a web
    service. How does the data then become dynamic when displayed? Meaning the
    data I'm displaying is only as accurate as the last time I made a request to
    the web service. Unless I automated my app to check for any changes every
    minute, it would not reflect the changes as they were made. Perhaps a web
    service is not the best way to develop this type of app, I'm just starting to
    investigate the possibilities of Flex, but was wondering if anyone out there
    could perhaps explain to me how Flex handles this. Thanks.

    *Ludwig* Guest

  2. Similar Questions and Discussions

    1. how to track an ASP form
      My friend and I are trying to find a script that enables us to track the asp form sent to us with its own specific number. With either numbers or...
    2. Track CF Administrator Changes
      I wondered this myself. The only way I can figure how to do this is to do it manually. Kind of like using CVS to track changes to your source...
    3. Track Changes During Review
      We finally have contribute 3.1 running. We send drafts of news articles around between 5 of us to check for proof-reading, and such. The problem...
    4. Track statistics
      Is there a way to track statistics as far as page views, page hits or even how many people opted out of checking out after a purchase with...
    5. Help needed to track down a PHP error
      A friend just changed servers with her web site. The new server uses PHP 4.3.2 as opposed to the old server that had one of the 4.0.x's (don't...
  3. #2

    Default Re: How does flex keep track of changes?

    Nearly every implementation of 'server push' is really client pull.
    Some peope do the pull asa you say by polling. Another design is to use
    a blocking client request, that the server hangs on, and returns control
    when the 'event' fires. This is sometimes known as the blocking
    registration pattern.

    In any case, yes, its always client pull. However Flex has some neat
    API's for doing nicer designs like blocking registration.

    Weve done many 'server push' architectures with many products in the
    past this way.

    Dave Wolf
    Cynergy Systems
    [url]http://www.cynergysystems.com[/url]

    *Ludwig* wrote:
    > I'm a bit confused about the RIA part of flex. Let's say I wanted to have a
    > stock quote app at work. All stock quote data was being retrieved from a web
    > service. How does the data then become dynamic when displayed? Meaning the
    > data I'm displaying is only as accurate as the last time I made a request to
    > the web service. Unless I automated my app to check for any changes every
    > minute, it would not reflect the changes as they were made. Perhaps a web
    > service is not the best way to develop this type of app, I'm just starting to
    > investigate the possibilities of Flex, but was wondering if anyone out there
    > could perhaps explain to me how Flex handles this. Thanks.
    >
    Dave Wolf Guest

  4. #3

    Default Re: How does flex keep track of changes?

    To add on to what Dave has said, MM does offer more of a true server push
    through the Flash Communication Server but it does require an additional
    license and I'm not familiar with the pricing model.


    Carson

    ________________________________

    Carson Hager
    Cynergy Systems, Inc.
    [url]http://www.cynergysystems.com[/url]


    "Dave Wolf" <dave.wolf@cynergysystems.com_nospam> wrote in message
    news:cv2g6u$duh$1@forums.macromedia.com...
    > Nearly every implementation of 'server push' is really client pull. Some
    > peope do the pull asa you say by polling. Another design is to use a
    > blocking client request, that the server hangs on, and returns control
    > when the 'event' fires. This is sometimes known as the blocking
    > registration pattern.
    >
    > In any case, yes, its always client pull. However Flex has some neat
    > API's for doing nicer designs like blocking registration.
    >
    > Weve done many 'server push' architectures with many products in the past
    > this way.
    >
    > Dave Wolf
    > Cynergy Systems
    > [url]http://www.cynergysystems.com[/url]
    >
    > *Ludwig* wrote:
    >> I'm a bit confused about the RIA part of flex. Let's say I wanted to
    >> have a stock quote app at work. All stock quote data was being retrieved
    >> from a web service. How does the data then become dynamic when
    >> displayed? Meaning the data I'm displaying is only as accurate as the
    >> last time I made a request to the web service. Unless I automated my app
    >> to check for any changes every minute, it would not reflect the changes
    >> as they were made. Perhaps a web service is not the best way to develop
    >> this type of app, I'm just starting to investigate the possibilities of
    >> Flex, but was wondering if anyone out there could perhaps explain to me
    >> how Flex handles this. Thanks.
    >>

    Carson Hager 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