- Joined
- Dec 21, 2016
- Messages
- 94
I am building an application that will use .NET Remoting to send data from one application to another. The data is 3D coordinate information that I am taking from a 3D modeling application and sending it to some other 3D rendering software that will update in real time as you change the source model. Essentially a bridge between 3D modeling applications that will update in real time based on user input.
I am a novice though and there are some complications that I am not sure how to handle.
One being that both application APIs are in two different programming languages. One language is C++, which is what the server will be developed in. The second language is Python, which is what the Client will be developed in (the application that will send the data based on user events). How do you write code to handle processing in each program with two different languages? Do you compile two different DLLs (one for each programming language) and simply call them from the main module when needed?
The second issue is security and performance; could there be any stability or security issues I should be aware of from the onset by utilizing a Remoting Framework to pass data to and from different application domains? I suppose for stability and performance the main issue may be the amount of data you are handling within the framework. How much data do you think is too much?
Thanks for any help and advice you guys can provide.
I am a novice though and there are some complications that I am not sure how to handle.
One being that both application APIs are in two different programming languages. One language is C++, which is what the server will be developed in. The second language is Python, which is what the Client will be developed in (the application that will send the data based on user events). How do you write code to handle processing in each program with two different languages? Do you compile two different DLLs (one for each programming language) and simply call them from the main module when needed?
The second issue is security and performance; could there be any stability or security issues I should be aware of from the onset by utilizing a Remoting Framework to pass data to and from different application domains? I suppose for stability and performance the main issue may be the amount of data you are handling within the framework. How much data do you think is too much?
Thanks for any help and advice you guys can provide.