is it possible to access native windows api from javascript? More exactly I want to use UDP sockets from javascript. I know this is possible in Internet Explorer by using ActiveX, but I want to have the same thing for other browsers also.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Nope, this isn't possible. It's outside JavaScript's scope. JavaScript is meant to run in the browser's sandbox for security reasons, and access to outside resources is strictly limited. ActiveX controls are able to do this; maybe also Java Applets, although I don't know for sure. |
|||
|
|