I have a Java Application which calls libreoffice command to convert documents to PDF. Since my application can have multiple requests at same point of time as Java supports multi-threading, I’m firing multiple libreoffice convert commands but somehow until the first command completes the second command doesn’t complete even though the second document was quite small document in size.
For Ex: First document given to convert is of size 2 MB
Second document given to convert is of size 50 KB
Until the first document conversion completes, second document conversion doesn’t complete even though the size of the 2nd document is quite small.
Is this the limitation of libreoffice that multi-threading is not supported? I had read in jodconverter page saying so
http://manpages.ubuntu.com/manpages/precise/man1/jodconverter.1.html
Please help,
Gowtham