RT Forms

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

    #1

    RT Forms

    I am wondering how i should develop a web application. The customer wants
    some pages that contains controls like leds and graphs that is displaying
    current status. The data is Near Real Time data. So the led will be turned
    on and off.
    I do not want to solve this using meta refresh and have a "flickering " page.
    The web pages will be developed using c# and datasource is MsSQL 2000.
    Should i "attach" this using ActiveX controls? Or is there a better way?
    Best regards
    Trond


  • Dan Bass

    #2
    Re: RT Forms


    Publish Subcribe architecture isn't great with HTTP. I recently updated an
    existing implementation of this and it contained a page java applet, which
    established a seperate connection to the server, then for each client
    connection the server monitored, there was a subscription mechanism so the
    server knew which data to send to which client. Overly complicated and
    painful.

    I'd use meta refresh, but then if you're fussy about the "flicker" for a
    whole page refresh, move to having the data that needs to be refreshed in
    iframe's. The pages contained in these iframes would contain the refresh,
    and not the containing page. The result would be a page that has only the
    relevant parts of it refreshing, rather than the entire page.

    "Trond" <trond@montanis .com> wrote in message
    news:OdGo9I$aFH A.580@TK2MSFTNG P15.phx.gbl...[color=blue]
    >I am wondering how i should develop a web application. The customer wants
    >some pages that contains controls like leds and graphs that is displaying
    >current status. The data is Near Real Time data. So the led will be turned
    >on and off.
    > I do not want to solve this using meta refresh and have a "flickering "
    > page.
    > The web pages will be developed using c# and datasource is MsSQL 2000.
    > Should i "attach" this using ActiveX controls? Or is there a better way?
    > Best regards
    > Trond
    >[/color]


    Comment

    • Trond

      #3
      Re: RT Forms

      Would Smart Clients be an option? I know its new but i kind of hope someone
      in here has tested it.
      Best regards
      Trond

      "Dan Bass" <Not Listed> wrote in message
      news:eCSCQqAbFH A.3016@tk2msftn gp13.phx.gbl...[color=blue]
      >
      > Publish Subcribe architecture isn't great with HTTP. I recently updated an
      > existing implementation of this and it contained a page java applet, which
      > established a seperate connection to the server, then for each client
      > connection the server monitored, there was a subscription mechanism so the
      > server knew which data to send to which client. Overly complicated and
      > painful.
      >
      > I'd use meta refresh, but then if you're fussy about the "flicker" for a
      > whole page refresh, move to having the data that needs to be refreshed in
      > iframe's. The pages contained in these iframes would contain the refresh,
      > and not the containing page. The result would be a page that has only the
      > relevant parts of it refreshing, rather than the entire page.
      >
      > "Trond" <trond@montanis .com> wrote in message
      > news:OdGo9I$aFH A.580@TK2MSFTNG P15.phx.gbl...[color=green]
      >>I am wondering how i should develop a web application. The customer wants
      >>some pages that contains controls like leds and graphs that is displaying
      >>current status. The data is Near Real Time data. So the led will be turned
      >>on and off.
      >> I do not want to solve this using meta refresh and have a "flickering "
      >> page.
      >> The web pages will be developed using c# and datasource is MsSQL 2000.
      >> Should i "attach" this using ActiveX controls? Or is there a better way?
      >> Best regards
      >> Trond
      >>[/color]
      >
      >[/color]


      Comment

      • Dan Bass

        #4
        Re: RT Forms


        But then you appear to be moving away from web pages into windows
        applications.





        "Trond" <trond@montanis .com> wrote in message
        news:%23mMscDBb FHA.3196@TK2MSF TNGP14.phx.gbl. ..[color=blue]
        > Would Smart Clients be an option? I know its new but i kind of hope
        > someone in here has tested it.
        > Best regards
        > Trond
        >
        > "Dan Bass" <Not Listed> wrote in message
        > news:eCSCQqAbFH A.3016@tk2msftn gp13.phx.gbl...[color=green]
        >>
        >> Publish Subcribe architecture isn't great with HTTP. I recently updated
        >> an existing implementation of this and it contained a page java applet,
        >> which established a seperate connection to the server, then for each
        >> client connection the server monitored, there was a subscription
        >> mechanism so the server knew which data to send to which client. Overly
        >> complicated and painful.
        >>
        >> I'd use meta refresh, but then if you're fussy about the "flicker" for a
        >> whole page refresh, move to having the data that needs to be refreshed in
        >> iframe's. The pages contained in these iframes would contain the refresh,
        >> and not the containing page. The result would be a page that has only the
        >> relevant parts of it refreshing, rather than the entire page.
        >>
        >> "Trond" <trond@montanis .com> wrote in message
        >> news:OdGo9I$aFH A.580@TK2MSFTNG P15.phx.gbl...[color=darkred]
        >>>I am wondering how i should develop a web application. The customer wants
        >>>some pages that contains controls like leds and graphs that is displaying
        >>>current status. The data is Near Real Time data. So the led will be
        >>>turned on and off.
        >>> I do not want to solve this using meta refresh and have a "flickering "
        >>> page.
        >>> The web pages will be developed using c# and datasource is MsSQL 2000.
        >>> Should i "attach" this using ActiveX controls? Or is there a better way?
        >>> Best regards
        >>> Trond
        >>>[/color]
        >>
        >>[/color]
        >
        >[/color]


        Comment

        • Radek Cerny

          #5
          Re: RT Forms

          I would use a Web Service to publish the data, and invoke it using a
          client-side (javascript) timer. Display the results with DHTML (no flicker).
          No activex, and you can hide the computations behind the web service, and
          publish the data so that XSL can be used to render. Easy.

          "Trond" <trond@montanis .com> wrote in message
          news:OdGo9I$aFH A.580@TK2MSFTNG P15.phx.gbl...[color=blue]
          > I am wondering how i should develop a web application. The customer wants
          > some pages that contains controls like leds and graphs that is displaying
          > current status. The data is Near Real Time data. So the led will be turned
          > on and off.
          > I do not want to solve this using meta refresh and have a "flickering "[/color]
          page.[color=blue]
          > The web pages will be developed using c# and datasource is MsSQL 2000.
          > Should i "attach" this using ActiveX controls? Or is there a better way?
          > Best regards
          > Trond
          >
          >[/color]


          Comment

          • Trond

            #6
            Re: RT Forms

            Yes i agree. The iframes approach is something i will look into. Sounds like
            an good idea :-)
            Best regards
            Trond

            "Dan Bass" <Not Listed> wrote in message
            news:eHWsOwBbFH A.3572@TK2MSFTN GP12.phx.gbl...[color=blue]
            >
            > But then you appear to be moving away from web pages into windows
            > applications.
            >
            > http://www.codeproject.com/dotnet/Do...ildSmClnts.asp
            >
            >
            >
            > "Trond" <trond@montanis .com> wrote in message
            > news:%23mMscDBb FHA.3196@TK2MSF TNGP14.phx.gbl. ..[color=green]
            >> Would Smart Clients be an option? I know its new but i kind of hope
            >> someone in here has tested it.
            >> Best regards
            >> Trond
            >>
            >> "Dan Bass" <Not Listed> wrote in message
            >> news:eCSCQqAbFH A.3016@tk2msftn gp13.phx.gbl...[color=darkred]
            >>>
            >>> Publish Subcribe architecture isn't great with HTTP. I recently updated
            >>> an existing implementation of this and it contained a page java applet,
            >>> which established a seperate connection to the server, then for each
            >>> client connection the server monitored, there was a subscription
            >>> mechanism so the server knew which data to send to which client. Overly
            >>> complicated and painful.
            >>>
            >>> I'd use meta refresh, but then if you're fussy about the "flicker" for a
            >>> whole page refresh, move to having the data that needs to be refreshed
            >>> in iframe's. The pages contained in these iframes would contain the
            >>> refresh, and not the containing page. The result would be a page that
            >>> has only the relevant parts of it refreshing, rather than the entire
            >>> page.
            >>>
            >>> "Trond" <trond@montanis .com> wrote in message
            >>> news:OdGo9I$aFH A.580@TK2MSFTNG P15.phx.gbl...
            >>>>I am wondering how i should develop a web application. The customer
            >>>>wants some pages that contains controls like leds and graphs that is
            >>>>displayin g current status. The data is Near Real Time data. So the led
            >>>>will be turned on and off.
            >>>> I do not want to solve this using meta refresh and have a "flickering "
            >>>> page.
            >>>> The web pages will be developed using c# and datasource is MsSQL 2000.
            >>>> Should i "attach" this using ActiveX controls? Or is there a better
            >>>> way?
            >>>> Best regards
            >>>> Trond
            >>>>
            >>>
            >>>[/color]
            >>
            >>[/color]
            >
            >[/color]


            Comment

            • Trond

              #7
              Re: RT Forms

              Yes, we will develope it using a SOA (SO/A is more correct to say :-))
              approach. Web services is part of that. Some of the views are using graphs,
              leds, Gauges and so on. These "instrument s" should run smoothly and not
              "flicker". That is why i was considering ActiveX / class.

              It is tempting to use a third party component like CSTSOFT's Instrumentation
              Suite, offered as both native NET and ActiveX. There are many more available
              out there so i am trying to figure out what the optimal solution would be in
              this case.

              I thank you and Mr. Bass for your post and will for sure try it out :-)
              Best regards
              Trond


              "Radek Cerny" <rcerny@optusne t.nospam.com.au > wrote in message
              news:OvxRQnCbFH A.2984@TK2MSFTN GP15.phx.gbl...[color=blue]
              >I would use a Web Service to publish the data, and invoke it using a
              > client-side (javascript) timer. Display the results with DHTML (no
              > flicker).
              > No activex, and you can hide the computations behind the web service, and
              > publish the data so that XSL can be used to render. Easy.
              >
              > "Trond" <trond@montanis .com> wrote in message
              > news:OdGo9I$aFH A.580@TK2MSFTNG P15.phx.gbl...[color=green]
              >> I am wondering how i should develop a web application. The customer wants
              >> some pages that contains controls like leds and graphs that is displaying
              >> current status. The data is Near Real Time data. So the led will be
              >> turned
              >> on and off.
              >> I do not want to solve this using meta refresh and have a "flickering "[/color]
              > page.[color=green]
              >> The web pages will be developed using c# and datasource is MsSQL 2000.
              >> Should i "attach" this using ActiveX controls? Or is there a better way?
              >> Best regards
              >> Trond
              >>
              >>[/color]
              >
              >[/color]


              Comment

              • clintonG

                #8
                Re: RT Forms

                Also learn about AJAX [A(synchronous) JA(vascript) X(ml)] which is supported
                in all versions of the framework noting ASP.NET 2.0 beta 2 includes a
                control that is distributed with the framework (very lightweight I am
                hearing it said) where independent implementations are more robust.

                Start here http://ajax.schwarz-interactive.de/c...e/default.aspx

                <%= Clinton Gallagher
                METROmilwaukee (sm) "A Regional Information Service"
                NET csgallagher AT metromilwaukee. com
                URL http://metromilwaukee.com/
                URL http://clintongallagher.metromilwaukee.com/


                "Trond" <trond@montanis .com> wrote in message
                news:O62MK5CbFH A.1456@TK2MSFTN GP15.phx.gbl...[color=blue]
                > Yes i agree. The iframes approach is something i will look into. Sounds
                > like an good idea :-)
                > Best regards
                > Trond
                >
                > "Dan Bass" <Not Listed> wrote in message
                > news:eHWsOwBbFH A.3572@TK2MSFTN GP12.phx.gbl...[color=green]
                >>
                >> But then you appear to be moving away from web pages into windows
                >> applications.
                >>
                >> http://www.codeproject.com/dotnet/Do...ildSmClnts.asp
                >>
                >>
                >>
                >> "Trond" <trond@montanis .com> wrote in message
                >> news:%23mMscDBb FHA.3196@TK2MSF TNGP14.phx.gbl. ..[color=darkred]
                >>> Would Smart Clients be an option? I know its new but i kind of hope
                >>> someone in here has tested it.
                >>> Best regards
                >>> Trond
                >>>
                >>> "Dan Bass" <Not Listed> wrote in message
                >>> news:eCSCQqAbFH A.3016@tk2msftn gp13.phx.gbl...
                >>>>
                >>>> Publish Subcribe architecture isn't great with HTTP. I recently updated
                >>>> an existing implementation of this and it contained a page java applet,
                >>>> which established a seperate connection to the server, then for each
                >>>> client connection the server monitored, there was a subscription
                >>>> mechanism so the server knew which data to send to which client. Overly
                >>>> complicated and painful.
                >>>>
                >>>> I'd use meta refresh, but then if you're fussy about the "flicker" for
                >>>> a whole page refresh, move to having the data that needs to be
                >>>> refreshed in iframe's. The pages contained in these iframes would
                >>>> contain the refresh, and not the containing page. The result would be a
                >>>> page that has only the relevant parts of it refreshing, rather than the
                >>>> entire page.
                >>>>
                >>>> "Trond" <trond@montanis .com> wrote in message
                >>>> news:OdGo9I$aFH A.580@TK2MSFTNG P15.phx.gbl...
                >>>>>I am wondering how i should develop a web application. The customer
                >>>>>wants some pages that contains controls like leds and graphs that is
                >>>>>displayi ng current status. The data is Near Real Time data. So the led
                >>>>>will be turned on and off.
                >>>>> I do not want to solve this using meta refresh and have a "flickering "
                >>>>> page.
                >>>>> The web pages will be developed using c# and datasource is MsSQL 2000.
                >>>>> Should i "attach" this using ActiveX controls? Or is there a better
                >>>>> way?
                >>>>> Best regards
                >>>>> Trond
                >>>>>
                >>>>
                >>>>
                >>>
                >>>[/color]
                >>
                >>[/color]
                >
                >[/color]


                Comment

                Working...