Server program logic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Good day!
Please tell me how to solve the problem, I have been looking for an answer for a long time.
How can I create a revit application with program logic located on the server.
It is required to create a subscription application so that the main code is not available to the user
Typically a revit application will refer to the local path where the DLL resides. You can make a main DLL that
will refer to other DLLs lying on the server. What is the mechanism for this to apply?
I read a little about WPF, gPRC, I only realized that data transfer is possible in the form of numbers, strings, characters, etc.
It seems that the transfer of objects is also possible, they can be serialized, but, as I understand it, only simple objects
I looked Revit objects, and there are very complex classes with thousands of methods and variables
And this, in my opinion, is not serialized. The WALL class takes 1500 lines of code, no less
Maybe I'm going the wrong way. Tell me, in what direction should I think, what to read?