.Net: Working with OpenOffice 3
Thursday, November 6, 2008
Developing applications that manipulate OpenOffice documents has always been rather tricky; not very difficult, but just tricky to get right. (Updated Wednesday 03DEC2008.)
With OpenOffice 3, things got trickier and applications that used to work will now fail.
I’ve just spend nearly a day trying to get a mail-merge application I built to work again with the new version of OO.

Changes and limitations
Developing .Net applications with OpenOffice 3 now requires that the .Net framework 3.5 be installed.
Only one version of OpenOffice/StarOffice must be installed.
Getting the CLI assemblies in your project
OpenOffice used to ship with a bunch of CLI DLLs for manipulating Open Documents from .Net. With OpenOffice version 3, these DLLs are directly installed in the GAC and not available in the Program installation folder any longer, making them unavailable when you need to add them as references to your Visual Studio project.
The trick is to extract the DLLs from the installation CAB, then reference those and make sure you exclude them in your setup file so only the latest version installed on the user’s computer’s GAC will get used.
- Open the installation folder where the installation files are extracted (usually left on your desktop under a folder like
OpenOffice.org 3.0 (en-US) Installation Filesduring the OO installation process. - Open the
openofficeorg1.cabfile (using a utility like 7zip if necessary) and extract the files matchingcli_*.dl. - Add the ones you need to your VS Project’s references and make sure the properties of these references have their Copy Local and Specific Version properties set to false.
- If you have a setup project that added these references to the lsit of files, right-click each of them and select Exclude to make sure they won’t be packaged.
The reason for not deploying the DLLs is that they are very specific to a given OpenOffice version and the latest assemblies relevant to the user’s OpenOffice installation will already be deployed to the target machine’s GAC.
When .Net loads assemblies, if they are not included in the path of the application being launched, they will be loaded from the GAC if they can be found there.
Path and environment setup
Before being able to call OpenOffice from your application you now must set your application’s environment variables to the correct paths so the assemblies can find the actual OpenOffice library and program files.
Basically, you need to add to your PATH the path to the folder where the UNO java libraries reside.
You also need to add a UNO_PATH environment variable that points to the program folder of OpenOffice.
Basically, before any call to OpenOffice functions you must:
- Append to
PATHsomething likeC:\Program Files\OpenOffice.org 3\URE\bin. - Create a
UNO_PATHvariable set toC:\Program Files\OpenOffice.org 3\program.
Because there is no guarantee that these paths will not change or are valid for all systems you must get them from specific keys located in the Registry:
PATHis appended with the vaue ofHKLM\SOFTWARE\OpenOffice.org\Layers\URE\1\UREINSTALLLOCATIONto which you must append thebindirectory.UNO_PATHis set to the content of theHKLM\SOFTWARE\OpenOffice.org\UNO\InstallPathkey.
See the C# code below for a working example.
Special Considerations for x64 systems
My development machine runs Windows Server 2008 x64 and I’ve ran into some specific issues that you’re likely to encounter when deploying to a 64 bits OS.
OpenOffice is 32 bits only
That means that your .Net project must be set to target x86 systems only:
Open your Solution’s Configuration Manager and under Active solution platform click New… then:

Make sure you repeat this for both the Debug and Release configurations.
Registry keys are elsewhere
32 bit applications see their registry keys normally expected under:
HKEY_LOCAL_MACHINE\Software moved to:
HKEY_LOCAL_MACHINE\Software\Wow6432Node instead.
This of course creates issues when you’re trying to read a registry key that’s not where it should be…
The Code
The code below will allow you to correctly connect to OpenOffice 3 under 32 or 64 bit systems.
It reads the registry to find the proper paths and appends the PATH and creates the UNO_PATH environment variables expected by the the bootstrapper to find the OpenOffice program and libraries.
The code is built upon information and a test program made available by Marten Feldtmann on his blog (more information, in English, is available on OOoForum ).
Please let me know if this works for you or if you have any corrections.
In VB.Net:
Updates
03DEC2008 - Added VB.Net translation. Thanks to Stefan for suggesting it.
References
- CLI Language Binding
- OOoForum thread on getting sample C# code to work with OpenOffice 3
- OOoForum thread on upgrading code from OpenOffice 2.4 to 3
- Programming with .Net quick start guide.
- CLI UNO bridge not working
Entry Filed under : .Net, OpenOffice, Programming
4 Comments Add your own
1. George | November 23rd, 2008 at 2:24 pm
Hi. Thanks heaps for this article - you saved my bacon. After upgrading to OO3 our windows service no longer work… but then I found your article and the tip on the UNO_PATH and now its all working. Thanks again.
2. Renaud | November 23rd, 2008 at 2:28 pm
@Georges: you’re welcome, thanks for reporting back.
3. Stefan | December 3rd, 2008 at 12:02 am
Thanks, that helped a lot! I needed a VB.NET version and I like to share it for others to copy-paste.
4. Renaud | December 3rd, 2008 at 10:12 am
Thanks for the code Stefan. I’ve added a VB.Net translation to the article.
Leave a Comment
Some HTML allowed:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
Trackback this post | Subscribe to the comments via RSS Feed