I am developping an Angularjs Spring MVC application.
I am displaying a PDF in my browser (Chrome) like this :
window.open(location.pathname+'api/myReport/'+$scope.month.id,'_blank');
The PDF displays well.
Is there a way to silently print (instead of displaying it) the PDF to a chosen printer (chosen by its name) from client side?
My server is on a VPS outside the company network and I can't access to local printers from the VPS.
Thanks.