How we can get list of local pc printers by java servlet running on other machine.
The web application running on Development server, i want to read the list of printer where the application is accessing.
Thanks in Advance.
How we can get list of local pc printers by java servlet running on other machine.
The web application running on Development server, i want to read the list of printer where the application is accessing.
Thanks in Advance.
Your servlets cannot directly access local network. If you want to identify them you will need another program which can communicate with your local printers. You might need to write a simple printer identification program and then let that data access to your servlets. Other than this there is no way you can directly interact with printers with servlets.