Can I print with an azure worker?

In my scenario, I will have documents stored in Azure blob memory. I would like to be able to take them and print them when the user asks.

The setup will look something like this:

Azure | _____________ | | | B1 B2 B3 

Where every "B" is a building. When a B2 user clicks on a web application to print a document, the worker role starts the logic to print to the specified printer in B2.

I have already created my employees for other tasks, but I'm not sure where to start looking for print settings. Is this possible?

For security reasons, I would like as little user interaction as possible.

0
source share
1 answer

The simple answer is No. No. In order for the working role of the VM to print a document, it needs to connect to the printer. How will your work role connect to the printer? Instead, you can download the document through a web application on your local computer and print it from there.

+2
source

Source: https://habr.com/ru/post/1233175/


All Articles