how to call an API on a remote machine

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

    how to call an API on a remote machine

    Hi,

    I have an application installed on a remote server that also has an SDK
    installed. I want to be able to access some of the API stuff within the SDK
    from any other machine. The API will perform function on the server it is
    installed on.

    Is it possible to call those API on the server, and get back the result to
    my local machine?

    Thanks

  • Herfried K. Wagner [MVP]

    #2
    Re: how to call an API on a remote machine

    "Aussie Rules" <aussie@nospam. comschrieb:
    I have an application installed on a remote server that also has an SDK
    installed. I want to be able to access some of the API stuff within the
    SDK from any other machine. The API will perform function on the server it
    is installed on.
    How do you access the server from the client?

    Is it possible to place a program on the server?

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

    Comment

    • kimiraikkonen

      #3
      Re: how to call an API on a remote machine

      On Jun 1, 4:51 am, "Aussie Rules" <aus...@nospam. comwrote:
      Hi,
      >
      I have an application installed on a remote server that also has an SDK
      installed. I want to be able to access some of the API stuff within the SDK
      from any other machine. The API will perform function on the server it is
      installed on.
      >
      Is it possible to call those API on the server, and get back the result to
      my local machine?
      >
      Thanks
      Hi Aussie,
      I think you can add reference to file which resides on a remote server
      via "browse" tab from "add reference" if your API is located within a
      DLL.

      But after building and compiling your project, the DLL may have been
      copied to your local application's bin\debug folder.ü

      Thanks,

      Onur Güzel

      Comment

      • Aussie Rules

        #4
        Re: how to call an API on a remote machine

        Hi Herfried,

        The client and server are on the same network, and the client is logged into
        the network...

        I could have another application running on the server that acts inbetween
        the two if that is a solid method.

        Thanks

        "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.atwrot e in message
        news:uJAOERCxIH A.3968@TK2MSFTN GP04.phx.gbl...
        "Aussie Rules" <aussie@nospam. comschrieb:
        >I have an application installed on a remote server that also has an SDK
        >installed. I want to be able to access some of the API stuff within the
        >SDK from any other machine. The API will perform function on the server
        >it is installed on.
        >
        How do you access the server from the client?
        >
        Is it possible to place a program on the server?
        >
        --
        M S Herfried K. Wagner
        M V P <URL:http://dotnet.mvps.org/>
        V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

        Comment

        • Michel Posseth  [MCP]

          #5
          Re: how to call an API on a remote machine


          "kimiraikko nen" <kimiraikkonen8 5@gmail.comschr eef in bericht
          news:cd5ae8bd-dc77-4186-b604-9456f99de318@r6 6g2000hsg.googl egroups.com...
          On Jun 1, 4:51 am, "Aussie Rules" <aus...@nospam. comwrote:
          Hi,
          >
          I have an application installed on a remote server that also has an SDK
          installed. I want to be able to access some of the API stuff within the
          SDK
          from any other machine. The API will perform function on the server it is
          installed on.
          >
          Is it possible to call those API on the server, and get back the result to
          my local machine?
          >
          Thanks
          >>Hi Aussie,
          >>I think you can add reference to file which resides on a remote server
          >>via "browse" tab from "add reference" if your API is located within a
          >>DLL.
          >>But after building and compiling your project, the DLL may have been
          >>copied to your local application's bin\debug folder.ü
          >>Thanks,
          >>Onur Güzel

          In addition to the above if your goal is to interact with a process that
          must be running and perform actions on the server WCF / Remoting is the way
          to go

          HTH

          Michel





          Comment

          Working...