How to communicate across servers?

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

    How to communicate across servers?

    If I have two VB .NET apps on seperate servers, which I have full access to,
    how can they communicate with each other? For example, forms in each app
    sharing data (one form getting textbox value from another form), just as if
    the forms where in the same app.

    Thanks,
    Brett


  • Chris, Master of All Things Insignificant

    #2
    Re: How to communicate across servers?

    You should look at remoting. There are tons of examples/articles around
    about it.



    Chris

    "Brett" <no@spam.com> wrote in message
    news:ujM8Tc6BFH A.2316@TK2MSFTN GP15.phx.gbl...[color=blue]
    > If I have two VB .NET apps on seperate servers, which I have full access
    > to, how can they communicate with each other? For example, forms in each
    > app sharing data (one form getting textbox value from another form), just
    > as if the forms where in the same app.
    >
    > Thanks,
    > Brett
    >[/color]


    Comment

    • Brett

      #3
      Re: How to communicate across servers?

      ok, thanks.

      brett

      "Chris, Master of All Things Insignificant" <chris@No_Spam_ Please.com> wrote
      in message news:OIi5Ve6BFH A.1084@tk2msftn gp13.phx.gbl...[color=blue]
      > You should look at remoting. There are tons of examples/articles around
      > about it.
      >
      > http://www.codeproject.com/vb/net/RemotingTech.asp
      >
      > Chris
      >
      > "Brett" <no@spam.com> wrote in message
      > news:ujM8Tc6BFH A.2316@TK2MSFTN GP15.phx.gbl...[color=green]
      >> If I have two VB .NET apps on seperate servers, which I have full access
      >> to, how can they communicate with each other? For example, forms in each
      >> app sharing data (one form getting textbox value from another form), just
      >> as if the forms where in the same app.
      >>
      >> Thanks,
      >> Brett
      >>[/color]
      >
      >[/color]


      Comment

      • Brett

        #4
        Re: How to communicate across servers?

        I have app1 that uses a timer. It polls every 1 second to get thread state
        status. This is then displayed in a text box on app1. If app1 is on the
        server and I have app2 on my desktop that diplays the timer state in its
        textbox, will that require much use of resources or is it a feasible
        venture?

        Thanks,
        Brett

        "Chris, Master of All Things Insignificant" <chris@No_Spam_ Please.com> wrote
        in message news:OIi5Ve6BFH A.1084@tk2msftn gp13.phx.gbl...[color=blue]
        > You should look at remoting. There are tons of examples/articles around
        > about it.
        >
        > http://www.codeproject.com/vb/net/RemotingTech.asp
        >
        > Chris
        >
        > "Brett" <no@spam.com> wrote in message
        > news:ujM8Tc6BFH A.2316@TK2MSFTN GP15.phx.gbl...[color=green]
        >> If I have two VB .NET apps on seperate servers, which I have full access
        >> to, how can they communicate with each other? For example, forms in each
        >> app sharing data (one form getting textbox value from another form), just
        >> as if the forms where in the same app.
        >>
        >> Thanks,
        >> Brett
        >>[/color]
        >
        >[/color]


        Comment

        Working...