Need to call client side DLL from browser

后端 未结 3 1864
心在旅途
心在旅途 2021-01-03 05:12

I got requirement from client that when any user swipe their card then their details should be capture in web page automatically on client side. However same we are doing in

3条回答
  •  自闭症患者
    2021-01-03 05:43

    After gone through some links, it seems it can be possible through following option.

    Option 1:

    • Firefox allows you to create XPI extension aka "addon"
    • Chrome has extensions

    Calling a .dll function from a html page that runs on chrome and firefox

    Option 2:

    Create plug-in for those browser are written using the NPAPI.

    How to write a browser plugin?

    Option 3:

    Write signed applets to call dll that runs from a html or any web application. It almost run on all browsers. Here is the link for sample

    http://www.javaworld.com/javaworld/jw-10-1998/jw-10-apptowin32.html

提交回复
热议问题