eVetPractice Printing - How it Works and Why Windows & Mac Are Required
-
@scottalanmiller Another investment and venture? Buy it and fix it!
-
@JasGot said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
Another investment and venture? Buy it and fix it!
It's a garbage product. Very, very out of date and has no real redeeming technical value. They are owned by a large pharmacy and use that to push their product. But I've never met a happy customer of theirs.
-
@scottalanmiller said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
Instead it only calls proprietary Dymo software
We have one stupid shipping app and its the exact same thing, it calls the Dymo software not the printer to print labeles so we have to run a "dedicated" windows box at each office just to print shipping labels even though the shipping "app" is web based and could work great from a chromebook.
-
@scottalanmiller said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
Now this is important to understand, it doesn't try to print (at all) to a Dymo printer, no. It never calls any printer, even if you have a working Dymo installed. Instead it only calls proprietary Dymo software and asks that software to print on its behalf. Nothing particularly wrong with this other than being unnecessary fragile and complicated, that Dymo only makes that software for Windows and MacOS, no other OS. So because of this, full functionality (and pretty critical functionality) of eVetPractice isn't web based but is installed local software and isn't included with the product itself.
You can probably work around this. How does it call proprietary Dymo software from the browser?
What I think is that the webpage uses javascript to send commands over http/https to a locally installed Dymo web service. And that is that web service that sends the print to the printer driver.
If that is the case maybe you can do some port redirection so the http commands will redirected to another server (windows) that has the dymo software installed and can turn http into print.
-
@Pete-S said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
@scottalanmiller said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
Now this is important to understand, it doesn't try to print (at all) to a Dymo printer, no. It never calls any printer, even if you have a working Dymo installed. Instead it only calls proprietary Dymo software and asks that software to print on its behalf. Nothing particularly wrong with this other than being unnecessary fragile and complicated, that Dymo only makes that software for Windows and MacOS, no other OS. So because of this, full functionality (and pretty critical functionality) of eVetPractice isn't web based but is installed local software and isn't included with the product itself.
You can probably work around this. How does it call proprietary Dymo software from the browser?
What I think is that the webpage uses javascript to send commands over http/https to a locally installed Dymo web service. And that is that web service that sends the print to the printer driver.
If that is the case maybe you can do some port redirection so the http commands will redirected to another server (windows) that has the dymo software installed and can turn http into print.
There is actually no standard way to have a web browser print something that the web server has rendered (generated). Normally the web browser renders html or pdf from the webserver, and then that can be printed by the user.
The proper way is to leave the web browser out of it completely and have the web server talk to the printer/print server directly. This can be done with IPP/IPPS but then you have to open the firewall to the printer/print server.
But the lack of a standard for sending print files from the web server to the printer via the web browser is the actual problem.
-
@Pete-S said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
There is actually no standard way to have a web browser print something that the web server has rendered (generated). Normally the web browser renders html or pdf from the webserver, and then that can be printed by the user.
There is, we do it for other software. There's no need for an intermediary format. HTML5 (and older versions) have a direct to printer option. Yes, it uses the browser, but no format needed.
-
@scottalanmiller said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
@Pete-S said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
There is actually no standard way to have a web browser print something that the web server has rendered (generated). Normally the web browser renders html or pdf from the webserver, and then that can be printed by the user.
There is, we do it for other software. There's no need for an intermediary format. HTML5 (and older versions) have a direct to printer option. Yes, it uses the browser, but no format needed.
Scott, I think you are mistaken but I would be very, very happy if you are right.
Please share what html function/javascript function/tech/whatever you use to make this happen.
-
@Pete-S said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
Please share what html function/javascript function/tech/whatever you use to make this happen.
I think we are at cross purposes. I'm not saying that the app can print from INSIDE the browser. I'm saying that the app can present the HTML TO the browser and the browser's print function can print directly without needing a third party application. Straight from browser to printer.
However, JavaScript can do this because the HTML5 DOM allows for it, as well. So no need to HAVE to use the browser's print button. If you want the page itself to do it, this is the DOM call... window.print();
-
@scottalanmiller said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
@Pete-S said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
Please share what html function/javascript function/tech/whatever you use to make this happen.
I think we are at cross purposes. I'm not saying that the app can print from INSIDE the browser. I'm saying that the app can present the HTML TO the browser and the browser's print function can print directly without needing a third party application. Straight from browser to printer.
However, JavaScript can do this because the HTML5 DOM allows for it, as well. So no need to HAVE to use the browser's print button. If you want the page itself to do it, this is the DOM call... window.print();
Thanks Scott. We are at cross purposes because I was being very specific when I mentioned where the print is rendered. In a lot of label applications you can't have it rendered in the web browser from html because you need to send special commands to the label printer inside the label. More advanced label printer have lots of special commands, for instance to generate bar codes on the fly (not from graphics) or time of day or a serial number for each label printed.
-
@Pete-S said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
@scottalanmiller said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
@Pete-S said in eVetPractice Printing - How it Works and Why Windows & Mac Are Required:
Please share what html function/javascript function/tech/whatever you use to make this happen.
I think we are at cross purposes. I'm not saying that the app can print from INSIDE the browser. I'm saying that the app can present the HTML TO the browser and the browser's print function can print directly without needing a third party application. Straight from browser to printer.
However, JavaScript can do this because the HTML5 DOM allows for it, as well. So no need to HAVE to use the browser's print button. If you want the page itself to do it, this is the DOM call... window.print();
Thanks Scott. We are at cross purposes because I was being very specific when I mentioned where the print is rendered. In a lot of label applications you can't have it rendered in the web browser from html because you need to send special commands to the label printer inside the label. More advanced label printer have lots of special commands, for instance to generate bar codes on the fly (not from graphics) or time of day or a serial number for each label printed.
Dymo doesn't have that. You can print these exact labels directly, nothing special needed. And this software doesn't need that, they have three products that print identically from the same vendor, they all print the same codes and only this one do they not provide a direct print option. But even in the cases that you are giving, that's not printing exactly, it's using a third party application to do some of your work for you. Again, totally nothing wrong with that, but it's a hokie setup and a really bad design to keep basic printing out of your platform agnostic app and require a potentially buggy or discontinued third party and very limited application to do that simple task for you.
Same vendor, but different product, uses MS Word in the same way. Can't be bothered to do basic tasks in their software and actually put in more effort, rather than less, to make Word do it for them.