Печать PDF-файлов с помощью <cfprint>
Я использую ColdFusion 2018 в Windows 2016 (IIS) и у меня возникают проблемы при печати файла PDF, созданного с помощью <cfdocument>
, Принтер виден в CFAdmin и я могу <cfdump>
Это. Вот что я сделал:
<html>
<head>
<title>Printing PDF</title>
</head>
<body>
<cfdocument format="PDF" name="3099274.pdf">
<cfoutput>
.... HTML is here ...
</cfoutput>
</cfdocument>
<cfprint type="pdf" source="3099274.pdf" printer="HP LaserJet 4345 CS">
</body>
</html>
Что я делаю неправильно?