How to call user32.dll methods from javascript

做~自己de王妃 提交于 2019-12-18 18:30:34

问题


I have a javascript running on a browser. Is it possible to call a function/method in user32.dll.

This is possible from C# by using pInvoke calls. How do I do the same in JavaScript?

Thanks,

Datte


回答1:


Because of the JavaScript sandbox, you can't do it without a middle layer requiring elevated security permissions, such as a Netscape-style browser plug-in (widely supported), ActiveX control (pretty much IE-only), or .Net control (I assume that's possible; again probably IE-only). In each case, the JavaScript would talk to the control, which would in turn make the USER32 call for you.

None of that will work without the user having granted your application elevated permissions, but I'm guessing as you're requiring Windows, this is for some kind of intranet application where that may be possible.




回答2:


You definitely need a plug-in, extension or ActiveX of your own installed on the client.

In the case of a firefox extension, you can use jsctypes to wrap the calls easily.
If you use the Jetpack API included with Firefox 4, it will be all JavaScript and won't even require a browser restart.

Here's an exemple from mozilla.org for a basic Hello World :

/* Load JS Ctypes Javascript module */
require("chrome").Cu.import("resource://gre/modules/ctypes.jsm");

/* Load windows api dll */
var lib = ctypes.open("user32.dll");

/* Declare the signature of the function we are going to call */
var msgBox = lib.declare("MessageBoxW",
                         ctypes.stdcall_abi,
                         ctypes.int32_t,
                         ctypes.int32_t,
                         ctypes.ustring,
                         ctypes.ustring,
                         ctypes.int32_t);
var MB_OK = 3;

/* Do it! */
var ret = msgBox(0, "Hello world", "title", MB_OK);

/* Display the returned value */
alert("MessageBox result : "+ret);

lib.close();



回答3:


On the client - it is not possible for security reasons (imagine every site could run system commands on your computer... end of the world - maybe possible with an ActiveX, but that's IE only, but then again, the DLL is windows only).

If you want to run it on the server you'll need to go trough AJAX and C#.




回答4:


Run dll methods on the client machine using javascript from a web page? That's what is gonna trigger apocalypse.




回答5:


If you build your own web browser in C#, you can intercept JavaScript calls and translate them to whatever you want in your browser. Though that won't work if you want it to be available to other browsers.




回答6:


Write a com object that wraps your call to user32. Invoke it in IE/javascript. Your DynamicWrapperX object would work for this (it would BE that com object, allowing you to just call your dlls as you wish).



来源:https://stackoverflow.com/questions/1550112/how-to-call-user32-dll-methods-from-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!