I have Java Uno application which runs on server and performs automated text extraction from documents. I want to shutdown OpenOffice from my application before exiting. How can I do this?

Thanks in advance!

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I'm using XDesktop.terminate()

http://api.openoffice.org/docs/common/ref/com/sun/star/frame/XDesktop.html

But this will only work (as far as I know) if you started OpenOffice locally.

link|improve this answer
XDesktop xDesktop = XDesktop)UnoRuntime.queryInterface(XDesktop.class, oDesktop);xDesktop.terminate(); xDesktop = null; – Darius Kucinskas Mar 15 '11 at 15:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.