Let's say I have a VM (windows) running on MS-Azure. Lets say I have programs Y and Z on that VM which are logging some critical data. Let's say I also have a program X inside the VM which accepts some arguments and returns some of that critical data based on filters.
Now, I am building a front end webapp, An ASP.NET website, where the owner of the above mentioned VM can login and view data that program X can provide.
I already have my logging programs running inside the VM and program X installed. How can I access an exectuble inside a VM, pass arguments to it, run it and get results back to me? is this doable? Can someone suggest how I can achieve this?
Thanks.