Please excuse the newbie question. I spent the last three hours researching this, and I can't find the right answer, or maybe I just don't find it as simple as it seems.
I need to deploy the application so that the server-side application does a heavy lift, the database is wise, and the client version is quite light.
I created a data access level class library (or at least a dll) that does all the heavy lifting. I created a Windows Forms application that can serve as a light client. They see each other. They are talking to each other. They work happily together.
I kind of hope that all I need to do is put the DLL on the server, provide a link to it in the client, and everything will be fine. The DLL will run its code on the server using server resources, and the client will work on the client. This is what various websites offer but looks too simple.
Do I need to configure something like remote access on the server? Do I need to use System.Runtime.Remoting for something? Or is it really as simple as it looks?
Again, please forgive the main question.
source
share