Question

  • Thread starter Thread starter Simon
  • Start date Start date
S

Simon

Hi

I have this necessity and I would ask you a suggestion.

I think to develop something (like a service) to install on a server in
order to execute sql procedures, and develop an application to install on
client that send commands to the server.
Which it is the better way to make this scenario
.... create a service and install to the server ?
.... that type of communication between client and server I need to use?
.... etc.

Thanks in advance and sorry for my english.

Simon
 
The simple and quick way, I'd say, is ASP/ASP.NET: you do not need write
your own server/service (IIS is available to Win2K/XP except for WinXP
Home); you do not need to write your client (a browser should be on any
computer). You simple write code to do the thing you want to in a
ASP/ASP.NET page.

If you want more elegant solution, .NET Remoting is there for you. You write
classes to do what you want and then you write a host server/write a window
service/use IIS to host those classes. Your client app communicates with
Remoting server...
 
Back
Top