Here is the simple scenario that I want to apply;
- There is a .NET application(console or windows) appA and this code updates a large global variable(+50MB) in the project every 30sec.
- I have another application appB which is a .NET web application and I want to be able to access the updated value of global variable in appA from appB whenever I want.
What do you suggest to me for this purpose?
Flat file, database, remoting, or sockets are some ways you can do it. The answer would vary based on certain factors, such as whether or not the data is sensitve, how many computers you plan on distributing the app to, and whether or not multiple instances of appA could exist.