Right now, I'm starting OpenOffice.org 3.3 with the arguments "-accept=socket,host=0,port=8100;urp;" using a shell script (.bat file on Windows, .sh file on Solaris). OpenOffice.org starts and the main screen appears (the one where you can select a document type, open a template, or open a file). Eventually, this screen will be disabled, though - I see there are arguments for that purpose.

After starting OpenOffice.org, I can launch my application and create my document with the UNO API libraries for Java. At this point, both the OpenOffice.org main menu screen and my document are open. However, when I close the document, the OpenOffice.org main menu screen also closes and the OpenOffice.org process terminates. If I use my application to generate another document, it is unable to connect (because the soffice process is no longer running).

My goal is to be able to start the process (or have it start with system startup, if the user configures it that way), have it sit until explicitly terminated, and contine accepting new generated documents.

How can I get the desired the desired behavior? Right now, my use case is that the soffice process is started from a shell script, however another use case is that soffice is configured to run on system startup. Is my behavior only possible with running the soffice process another way (as in on system startup, rather than executing via a batch script)? The only other option that I see (which I'm considering now) is to launch the OpenOffice.org process "on-demand" from my Java application, either start it from the Java application and terminate it when the Java application ends or launch the process every time I need to produce a new document.

link|improve this question

feedback

1 Answer

You can add the parmeters -invisible and -headless to the commandline when starting soffice.exe.

That will hide the main window when OOo - very similar to a "service".

As far as I remember, opening a document will then not even display the OOo main window.

link|improve this answer
That's not my problem. My problem is that the OO.org process terminates when the document window is closed. After a document is generated and displayed in the OO.org application, if the user closes the document, the OO.org process also terminates, preventing the user from generating a second document. – Thomas Owens Sep 20 '11 at 15:41
I think the -invisible will prevent the "service process" to terminate. Try them out. It worked for me – a_horse_with_no_name Sep 20 '11 at 15:45
I'll double check. I know -headless didn't achieve what I was looking for. – Thomas Owens Sep 20 '11 at 16:09
feedback

Your Answer

 
or
required, but never shown

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