how to call an API on a remote machine

A

Aussie Rules

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
 
H

Herfried K. Wagner [MVP]

Aussie Rules said:
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?
 
K

kimiraikkonen

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
 
A

Aussie Rules

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
 
M

Michel Posseth [MCP]

"kimiraikkonen" <[email protected]> schreef in bericht
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


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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top