I know that there are many threads discussing these topics, but please allow me to discuss my issue in some detail.
In our project, we use many devices (cameras, printers, fingerprint devices, smart card readers) in desktop applications, and we already have C # components that are designed to work with these devices using their SDKs.
Now the problem is that we are moving on to web development, and we must convert our desktop WPF applications to ASP.NET MVC web applications, as well as use our existing device components.
Possible solutions for working with devices from the .Net web application:
- Using ActiveX (which is dead or will die soon, and this will require some experience with COM and is very difficult to develop).
- Using Silverlight (Also, it is dead or will die soon, and it is very limited, so we cannot add a link to existing C # components).
- Using Java applets (which require some Java experience, and we will rewrite existing C # components in Java).
Is there any other solution so that we can work with devices from an ASP.NET MVC application through Intranet?
user3766610
source share