- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Barcode printing
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-19-2005 04:08 AM
тАО01-19-2005 04:08 AM
We have HP LJ 2300 with BarDIMM Pro(www.jetcapslabs.com). This printer is used to print barcodes from HP-UX. It works perfectly.
However our new HP LJ 4350 with BarDIMM pro doesn't work correctly. It prints out everything perfectly expect the barcodes.
It prints out a string like *000098734* where barcode should be.
It seems the barcode printing is somehow not triggred by the control characters.
The printers are identically configured (network printer, net_lj4x) in HP-UX, and barcode can be printed to both from Windows.
I have even compared the print jobs in the UNIX spool in case of the two (LJ2300 and LJ4350) printers. When printig the same barcode to the printers, the print jobs are identical.
It contains a string where barecode is: ^[(0Y^[(s0p4.6h12v0s3b0T*00091500*^[(3@
The LJ2300 prints it correctly the LJ4350 not. Why?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-19-2005 06:32 AM
тАО01-19-2005 06:32 AM
SolutionThe only solution is to write your own driver. Many years ago I would've been able to do this--but I did it last on a daisy wheel printer which is a far simpler system than a modern laserjet. This is a compatibility issue that you should blame on whoever bought the printer without a guarantee that it work on HPUX. Your best bet right now is to make this HP's problem in one manner or another. If they sold you the printer, they need to supply the proper driver OR sell you a printer that does work.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-19-2005 07:13 AM
тАО01-19-2005 07:13 AM
Re: Barcode printing
If you can edit the printjob, you might add the 2 characters esc Y somewhere on the page to turn on display functions (prints escape sequences and special codes) and esc Z to turn it off. This text can be used to show the mfr that the right sequences are reaching the printer but the BarDIMM is not responding.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-20-2005 03:22 AM
тАО01-20-2005 03:22 AM
Re: Barcode printing
If I create a file containing this the LJ4350 prints out a barcode:
^[(s3p5hvsb24601T0123456789012^[(10U^[(s0p12h4099T
(I get the idea from: http://www.jetmobile.com/samples/samples.htm)
And relevant sequence comming from the application is this: ^[(0Y^[(s0p4.6h12v0s3b0T*000915
00*^[(3@
In this case BARDIMM is not triggered.
What is generating this PCL codes? The modell script or the wharehouse application itself? How to find this out?
The file going to the printer is exactly the same independently if I use net_lj4x or net_lj4350 (http://www.hp.com/pond/modelscripts/index2.html).
If the application generate this PCL sequence can I easly match and replace with a right one by modifying the modellscript?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-20-2005 05:47 AM
тАО01-20-2005 05:47 AM
Re: Barcode printing
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-20-2005 11:07 AM
тАО01-20-2005 11:07 AM
Re: Barcode printing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-26-2005 07:34 PM
тАО01-26-2005 07:34 PM
Re: Barcode printing
sed 's/.(0Y//g;s/v0s3b0T/v0s3b0s24670T/;s/(3@/(10U^[(s0p10h4099T/g'
It was very helpfull: http://www.jetmobile.com/samples/samples.htm
This is a code39 barcode. The LJ2300 had a Code39 barcode font downloaded into it's firmware. And
Anyway if I change the patterns as above in the print job everything prints well on LJ4350.
How can I write this into the modellscript?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2005 12:33 AM
тАО01-27-2005 12:33 AM
Re: Barcode printing
Bill Hassell, sysadmin