Access peripheral devices through the browser

I am developing a web system for financial control you need to print invoices in thermal/fiscal printer.

Would it be possible to integrate this device through the browser or will I be required to develop a desktop application for this?

Author: Maniero, 2014-07-07

2 answers

Depending on your infrastructure, you can have your Web application interact directly with your tax printer from your server. For this it is necessary that the latter has access to the printer.

This way you eliminate individual settings for each machine that will use your application; only your server will need to have the driver for the device.

insert the description of the image here

Or namespace System.Drawing.Printing it has classes that can meet your need. Here follows an example in MSDN .

 3
Author: OnoSendai, 2014-07-07 16:54:04

It is possible, just define a print layout and send the document like any other, to the printer of the equipment, whether thermal or not, who manages the printer is the machine, you will only generate a kind of Report, where it will be diagrammed in the format of the note you use.

 1
Author: Marcelo Aymone, 2014-07-07 15:40:39