A Java EE application is been developed with JPA and JSF. But it needs advanced printing (like changing the printer and paper depending on requirements without bringing the PrintDialog) and sending fax. A simple Java SE application, running in each client machine, can be developed using Java SE to meet those specific requirements. Is there any way the Web browser can communicate with a Java SE application.
I thought of:
- If a XML file is downloaded to a folder where there is the Java SE application which can search to extract the data periodically from newly downloaded XML files, but the download location varies frequently.
- Develop a Java Applet,
But not sure about the practicality of the above scenarios.