Hi. First of all, sorry for my english. It's not my native language.
Here is the problem: I'm writing client-server application based on .net remoting. The application is some kind of calculator.
Client application has some field(number A and number B, and label for result) and some possible actions, represented by the buttons: Add, Substract, Multiply, Divide, etc..
Server application is a console application, that should habe following functions:
- make this calculations
- detect, what actions are done by the specific client.
Eg of output:
Server started
Client A(IP: 192.168.0.133) connected<br>
Client A Add 18 to 12<br>
Client A disconnected
The main problem is - how to get actions on server and how can i detect, what clients do. Thx for help.