May 2004
Intermediate to advanced
888 pages
22h 31m
English
The project group contains a shared assembly, a server, and a client console application ready to be compiled and launched.
Figure 30.1 shows how the template project looks.

The service included in the template is very basic, and it implements the following interface:
ISimpleServer = interface
function GetValue : integer;
procedure SetValue(Value : integer);
property Value : integer read GetValue write SetValue;
end;Find the code on the CD: \Chapter 30\Ex01.
This template will save you precious time while doing your first tests with .NET remoting.
To start a new remoting application, just copy ...
Read now
Unlock full access