Reputation: 84
I am developing a application for automating task and The Server i am using is Tomcat Apache It's based on java. In between my code execution i have to open a Microsoft Excel At Desktop Level. I have tried Command Line Execution as Well as Desktop Class from AWT. Both of them works when i execute my app from command line but both of them will not respond when job runs from Web Browser.
Any Comment would be appreciable...
Upvotes: 0
Views: 641
Reputation: 168825
Only an applet on the client side could use the Desktop
class and it would need full trust to do so. Further, using it would not guarantee either IE or Excel here. An XLS file would be handled by Open Office.
And that is 'a good thing' because that is my choice and should not be meddled with by a web-app. that thinks it knows better.
Upvotes: 1