I am currently creating a WCF service to Print a HTML file that has been saved in a specific location. This HTML file then needs to be printed to a specific printer on our network, the issue I am currently facing is in regards to printing the HTML.
As this is a WCF service some of the basic methods that can be used in WinForm applications cannot be used (for example WebBrowser). This causes issues as I am not entirely sure what other methods and options I have. The service is also asynchronous which means that multiple files can be sent through the application for printing at any point, which means that the solution also needs to be able to handle multi threading.
I have currently used the PDF method of printing within this WCF application, but have had issues with this so have been asked to convert the WCF to print passed in HTML instead. the issues are associated with the use of Adobe, and before we decide to move over to FoxItReader I have been asked to validate HTML as an option.
Thank you for your time.