Is it possible to launch client side desktop applications like Adobe Reader,any game or any other soft-wares from web?
I have got one link How to launch an EXE from Web page (asp.net)
where one of them have given way to open a notepad(desktop application)using java script,which is limited to IE.
In similar way I want to create such links on my web page so that if user clicks on that links like
e.g if user clicks on link "Adobe Reader" then Adobe application should get open/launch.
Is there any way to open any desktop applications from web?
I have came across signed applet concept, where we will call signed applet from web page i.e using tag , & inside
applet we will call desktop applications.
By using applet way ,I have created a signed applet, & I am able to open notepad application by providing directly path like this in applet:
Process process = new ProcessBuilder("C:\\Windows\\notepad.exe").start();
But how can I do this in generic way, means notepad application or any other softwares can be installed on anywhere in the system.
So we will not have idea about application's installed path, so is there any way by using which we can start them as a service by providing service name like this??
Process process = new ProcessBuilder("notepad.exe").start();