![]() |
Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
If I remember correctly, you don't want to just format the html nicely and let the client print from the browser, you want your Java program to talk to the printer, right? If that is the case, you'll need either a signed applet or an application running on the client, if that is feasible. There is a facility that allows client apps to have a limited and controlled access outside the sandbox, including printing (the JVM pops up a "the app is trying to use the printer, do you wan to allow it?" message). You can see this in the Notepad and other apps in the default Java Webstart Applications Manager. It has been a while since I installed it and I forget the details of how that it working (it may be a feature of WebStart), but it is in the area between an application (with full system access) and an applet. - mfg Replies:
|
Sponsored Links
|