Dear All,
I am running my oracle ADF application. My requirement is to run the Application on client machine. Like when end user click the button then EXE file should open on client machine not at server side. Currently when i open the application it opens at server end where WEBLOGIC is installed not at client end.
I am using below command to run the application
try {
Process p =Runtime.getRuntime().exec("c:\\windows\System32\\calc.exe");
p.waitFor();
} catch (IOException ioe) {
// TODO: Add catch code
ioe.printStackTrace();
} catch (InterruptedException ie) {
// TODO: Add catch code
ie.printStackTrace();
}
please help me to resolve this matter.