Reputation: 213
Here is the simple scenario that I want to apply;
What do you suggest to me for this purpose?
Upvotes: 0
Views: 272
Reputation: 8760
If the 2 are running on the same machine, you can use the Registry or Store it on a file or database.
If it may run on different machine database might be the best alternative.
Upvotes: 0
Reputation: 1969
My initial thoughts are to have application A run as a windows service and have that write to some shared location for the web application.
Upvotes: 2
Reputation: 9193
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.
Upvotes: 0