We have developed a webshop using Coldfusion. Now we are adding new functionality for printing labels over the internet.

What happens, or rather what should happen is:

  • The customer logs in at the shop and selects the order for which to print the labels.
  • Our Coldfusion code creates a label by use of the native ZPL language: the label is saved on the server as a plain text file with the ZPL instructions.
  • Javascript is used to open the text file in a new window.

The problem is: Printing the text file from the browser doesn't work. Not even when I set the printing not to show any additional header and footer details. Only when I request the source code and print it, the labels are printed. I Have tested this on IE9 and FF7.

So my questions are:

  • Is their a way to use Javascript to send plain text to a printer, so without any HTML mark up? I came across some Javascript code that embeds the text into HTML mark up and then using the window.print() command. This is not an option.
  • Or is there a way to make the printing of plain text file from out the browser work properly?

Thank you for your attention!

link|improve this question
What "Content-type" is your server giving to the files? – Pointy Oct 5 '11 at 11:37
Confused: You say you are saving the ZPL to the server as a plain-text file, but aren't ZPL labels = the barcodes you see on products that get scanned at the store? If so, how can that be stored as a plain-text file...shouldn't it be an image? – Shawn Holmes Oct 5 '11 at 14:12
ZPL consists of number of tags to produce the label lay-out. So this is opposite of using a barcode font or some image. The tags are saved in a text file and the text file is sent directly to the label printer. – Roeland Oct 5 '11 at 15:38
@Pointy, I now open a page in a new browser window, using the content type text/plain and Content-Disposition attachment. The browser then ask to open the file in a text-editor and allows the user to print. Still looking for a better solution though. In Coldfusion terms I'm using: <cfcontent type="text/plain"><cfheader name="Content-Disposition" value="attachment; filename=label.txt"><cfcontent file="Some file I want to show" type="text/plain"> – Roeland Oct 5 '11 at 15:43
There's no better solution with JavaScript in a browser, unless you want to write an ActiveX control (and thus deny the feature to pretty much everybody not using IE on Windows). – Pointy Oct 5 '11 at 15:47
show 1 more comment
feedback

1 Answer

If your service is limited to Windows users, you can have them install the UPS ActiveX control which will direct the ZPL code to a connected thermal printer.

UPS Thermal Printer ActiveX

Simply return the data with a MIME type of application/epl2 and the ActiveX control will take the data and send it to the thermal printer.

Note that newer Zebra printers still support EPL rendering which allows for greater printer compatibility (LP2844 + ZP450 series).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.