Open web application executable

2

I have a code that opens software external to my application.

 <script>
    function run(file) {
      var ws;
      ws = new ActiveXObject("WScript.Shell");
      ws.run(file);
    }
</script>

Only the external software opens on the computer as usual, I want to make this software open inside the web page in html.

How can I fix this software on the page, can I do this?

    
asked by anonymous 31.01.2017 / 14:31

1 answer

1

If I understood correctly, you would open a program that is hosted on a machine in the browser.

In the case of running on the machine it has an environment suitable for this, since the common browser does not offer, for example access to memory, what it can do is to develop a browser that allows the execution of this program, which actually is just for that purpose, not worth it.

Another situation is you turn your code into something your browser can use.

    
31.01.2017 / 16:34