Periodically pings a URL of your choice indicating live printers available from pool.
Sends HTTP POST request with valuable data back to a URL of your choice, useful for monitoring all printers from a central location
Run server in secure mode or use CORS to enable printing from SSL secured pages
Ability to automatically print without user interaction (no clicking of a print button) and set up queues.
If configured, it can be called from remote computers or across the internet via HTTPS
Ability to have multiple shipping stations configured and distribute load across workstations.
Send one or multiple labels in a single request
Works great with Windows, Mac, Linux, and ARM via Raspberry Pi
Send thermal ZPL print codes or a gif/png graphic. We will automatically convert, resize, and rotate images to be thermal compatible
Thermal printers require their own special print codes which need to be sent to the printer unaltered. Most web browsers do not support this for security reasons.
We created a special print server which will allow you to easily send thermal labels direct to your Zebra or Eltron thermal printer.
<form method="post" action="http://localhost:8080">
<input type="hidden" name="label" value="<?php echo $base64Label; ?>" />
<input type="submit" value="Print" />
</form>
{
"order_number": "1000002",
"date": "08/07/2015",
"user": "[email protected]",
"ship_date": "08/12/2015",
"shipping_cost": 10.88,
"tax": 5.00,
"discounts": 10.00,
"shipper_address": {
"name": "RocketShipIt",
"addr1": "101 E Ave",
"addr2": "#100",
"city": "San Francisco",
"state": "CA",
"postcode": "94115"
},
"to_address": {
"name": "John Doe",
"addr1": "123 Main St",
"addr2": "#14",
"city": "San Francisco",
"state": "CA",
"postcode": "94115"
},
"items": [
{
"sku": "ups",
"desc": "RocketShipIt for UPS Shippers",
"price": 289,
"qty": 1
}
]
}
Fore more information see the RocketShipIt Thermal Print Server documentation