Workstation or Server Workspace?

G

Guest

Here's the scenario.
A user is sitting at a WinXP workstation and maps a drive to one particular
remote server. The user then transfers data files to that server and invokes
my C++ application executable that resides on that remote server from a
simple DOS command line at the workstation. For example, x:\myprogram.exe.
This scenario can and often does exist concurrently at different workstations
around the country but always with the one particular remote server.

Here's my question.
When my application is thus invoked, is a copy of it actually copied to the
respective user's workstation's local workspace and run there referencing the
data files on that remote server; or, are multiple instances of the
application somehow running in that remote server's local workspace to
process the respective data files on that remote server?

TIA.
 
C

Carl Daniel [VC++ MVP]

Don Rich said:
Here's the scenario.
A user is sitting at a WinXP workstation and maps a drive to one
particular
remote server. The user then transfers data files to that server and
invokes
my C++ application executable that resides on that remote server from a
simple DOS command line at the workstation. For example,
x:\myprogram.exe.
This scenario can and often does exist concurrently at different
workstations
around the country but always with the one particular remote server.

Here's my question.
When my application is thus invoked, is a copy of it actually copied to
the
respective user's workstation's local workspace and run there referencing
the
data files on that remote server
Yes.

; or, are multiple instances of the
application somehow running in that remote server's local workspace to
process the respective data files on that remote server?

No.

-cd
 

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