Hi all.
I'm trying to call an external WAS program from a view. The external program is a emulator that is installed on c:emulator (frontend). It's composed by more than one files and is necesary to run the exe file inside the directory.
I has been trying with two possible solutions:
1)
I implemented a JavaScript. When the user press a link the JavaScript create an active control:var ws = new ActiveXObject("WScript.Shell");
ws.Exec("c:/emulator/emulator.exe");
2)
When the link is pressed the controller's view catch the eventDO_HANDLE_EVENT
and i use the classcl_gui_frontend_services->execute
for execute the application but it raise an error.i knows that sound strange imaginate one internet page executing programs in your pc but i need to do it.
If some body can help me.....