Hi all,
I'm trying to send an image to print on a ZC300 printer.
This project is running locally on a windows through USB connection without any problems, but its extremely important to run it on a Linux server with the printer connected by network.
I already installed the driver from https://www.zebra.cn/cn/zh/support-downloads/printers/card/zc300.html and when i request to print a sample card using CUPS, it works fine.
But when i try to update my Java project to find the printers on network, it cannot find any printer. Sample code used https://techdocs.zebra.com/link-os/2-14/pc_card/content/com/zebra/sdk/common/card/printer/discovery/networkcarddiscoverer
Also tried to create an TcpConnection manually, but it gives me an error "com.zebra.sdk.comm.ConnectionException: Unable to determine printer type"
Manual TcpConnection Code
"String ipAddress = "10.10.66.28";
int port = 9100;
Connection c = new TcpConnection(ipAddress, port);
ZebraCardPrinter printer = ZebraCardPrinterFactory.getInstance(c);"
Is there any advices or guides that i can use to configure that?
Best regards
0 Replies