I have a WPF singleton application, wherein only one instance is running at any time, if user tries to launch another instance, we check if its already running then we kill this new process and bring to front the existing one.
Now, we have a requirement to open/access and send message (set of arguments) to this WPF application from another process which can be xls, word, or another standalone application. We also want to make sure that if the process is already running, that process should hear the message and respond.
Any idea how we can implement it in our WPF application
Thanks