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.