Drucken in URL

257
Michael Frey

Ich habe eine Anwendung zur Auftragssteuerung, die nur eine Ausgabeoption hat, nämlich das Drucken.

Ich würde es vorziehen, wenn diese Jobs per SMS versendet werden.

Ich könnte einen der vielen SMS-Dienste im Web nutzen, die das Senden von SMS über URL-Aufrufe ermöglichen. Leider kann ich keine Software / Treiber finden, die es mir ermöglichen, an eine Webadresse oder etwas Ähnliches zu drucken.

Gibt es eine solche Software? Wenn nicht, an welche anderen Lösungen könnten Sie denken?

Das Schreiben von Software in C # oder einer PHP-Website wäre für mich kein Problem, wenn dies bei Ihrer Lösung hilft.

0

1 Antwort auf die Frage

0
Julian Knight

You can print to a URL, you need to set up a port. If you look at the printer properties for a printer, you will see a list of the available ports and, if you have local admin rights, you can create your own port which can be a URL.

Add a printer port of type "Standard TCP/IP Port". The IP address can be a name and can include a path if required.

The big problem, of course, is that the resulting URL has to accept and respond with the appropriate protocol messages. So you will need to research how to implement the appropriate protocol. The easiest is probably LPR which is one of the UNIX simple print protocols.

Having second thoughts about this though, I think there may be a simpler answer. If you use a "Print to File" setting, you could easily set up a monitor that checked for new files, read them and passed them to a web service. You could do this with something like AutoHotkey if you wanted to.