Send ZPL command to Zebra 170PAX4 via TCP/IP Socket

I am trying to print to a Zebra ZD410. I have used this snippet-
system.net.httpPost(‘http://10.50.100.250/pstprnt’, postData="^XA^WD^XZ")

I cannot get the printer to do anything. I am able to ping it, and can print to it directly with the Zebra Setup Utility.
I have a TCP device driver setup for port 6101.
Can anyone help me out with what we may be missing here?

Thanks!

Put something like this in a project script:

import socket, sys
def sendToZebra(payload):
	zebraAddr = ('10.50.100.250', 6101)
	try:
		s = socket.connect(zebraAddr)
		s.sendAll(payload)
	finally:
		s.close()

Then call it from your button event like so:

project.zebra.sendToZebra("^XA^WD^XZ")

Not tested precisely as above, but I use this pattern at a customer site. NOTE: No driver required.

Awesome! I will give it a try. Thank you!

Sorry maybe I should make a new post but my question rides right here along the path of this post.
I have a project in perspective where I need to print a small label, I would love to print usb but it doesn’t look like that is viable option. I have followed the rabbit to the zebra ZPL implementation where I would send a payload to the printer over the network. Looking for anymore success that anyone has had using perspective to print a label. I do not want to render a pdf and rely on the user to choose printing the pdf on the OS either.

As long as the gateway has access to the printer, there should be no issue using ZPL.

1 Like

In the one post by malcolm I would like to send the image of the container to the label.
I will use dropdown menus to populate the values in the container but there are also some graphics, mainly a logo. I also see the other fellow with the zebra API. That looks interesting. I have not decided if perspective is a good application for this or not. Even usb printers have setup involved so I dont know why I am hung up on usb other than past experience and usual lack of ethernet ports not consumed by something. doing the http post sound possible but its the payload being a graphic container. Maybe that is the part I dont understand. How to render a container with other variable content into this ZPL. I am not familiar with ZPL. It surely isn’t a simple as passing the container as an object into some script payload…?

@tailfire One thing you can do is download Zebra’s label design software called ‘ZebraDesigner’ as well as Zebra setup utilities. Then what you do is design the label in the ZebraDesigner, then change some settings to output the ZPL code for your label to a file rather than sending it to the printer. Then you can copy and paste the ZPL code into a script in perspective. In your script you can insert the data that the user selected into the label’s code before you send the code to the printer. In order to send the code to the printer (assuming your printer is on your network) you can create a socket in your script, connect to the printer using its IP, then convert your ZPL code string to bytes and send it to the printer using the socket.

To send the code to a file you open Zebra Setup Utilities, open Printer Tools for your printer, and change the port to “print to file”. If you google how to send ZPL code to file using ZebraDesigner you should be able to find more information (that’s how I learned about this).

Hope this helps!

2 Likes

What I did was put easily recognizable values for each part of my label, so that when I looked at the code they were easy to find and modify for my script. here is a simple example that puts a few strings on a label as well as writes to an RFID tag:

^XA
^MMT
^PW799
^LL1199
^LS0
^FO19,995^GB760,0,8^FS
^FT159,1078^A0N,83,132^FB433,1,21,C^FH\^CI28^FDthis is my string^FS^CI27
^FT139,1122^A0N,28,30^FB480,1,7,C^FH\^CI28^FD12345678901234567890123456789012^FS^CI27
^RFW,H,1,2,1^FD4000^FS
^RFW,H,2,16,1^FD01234567890123456789012345678901^FS
^PQ1,0,1,Y
^XZ

Then I could modify the code to look like this:

^XA
^MMT
^PW799
^LL1199
^LS0
^FO19,995^GB760,0,8^FS
^FT159,1078^A0N,83,132^FB433,1,21,C^FH\^CI28^FD{}^FS^CI27
^FT139,1122^A0N,28,30^FB480,1,7,C^FH\^CI28^FD{}^FS^CI27
^RFW,H,1,2,1^FD4000^FS
^RFW,H,2,16,1^FD{}^FS
^PQ1,0,1,Y
^XZ

and insert the values that I actually want on the label using python’s str.format function before I send the code to the printer.

3 Likes

Hi All,
What I have done is just what @Chandler.Teigen mentioned, I created the label using the Zebra’s label designer send the print to a file exposing the ZPL code. The application I currently have running consist of a Database that has all the parameters of the label including any logos. When ever the particular label needs to be printed I call the database that has all the information and create a string (similar to what @JordanCClark mentioned) that I send to the printer.
You can use Labelary Online ZPL Viewer to check the ZPL code.

example:
#Create Label String
#Header, LOGOS, BARCODE, ID Number, Item Number, Use Thru Date, Product Name, WEIGHT, PRODUCTION DATE, ORIGIN
strLabel = “%s%s%s%s%s%s%s^FO1103,464^GB347,103,4^FS^FT1149,549^A0N,75,74^FH^FD%s lb^FS%s%s” %(strLabelHeader,strLabelLogos,strBarcode,strID_number,strItem_number,strUseThruDate,strProduct,strLabelWeight,strProductionDate,strCountry)
#ALLERGEN, ING1, ING2, ING3, ING4, ING5, 2nd Barcode, DIST1, DIST2, LOT, BATCH, SAMPLE, FOOTER
strLabel = “%s%s%s%s%s%s%s%s%s%s%s^FT1371,837^A0N,83,81^FH^FD%s^FS” %(strLabel,strAllergen,strIngredient1,strIngredient2,strIngredient3,strIngredient4,strIngredient5,str2ndbarcode,strDistributed_by1,strDistributed_by2,strLot1,strSerial)

SAMPLE, FOOTER

strLabel = “%s%s%s” %(strLabel,strSample,strLabelFooter)
system.tag.write("Petaluma/Cheese/Packing/Label

Print Label

clientSocket=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
clientSocket.connect((strIP,port))
clientSocket.sendall(strLabel)
clientSocket.close()

1 Like