XML-Questions

2020-08-27 Thread Manfred Rebentisch
Hello, I wrote a tool in C++ to work on content.xml directly to replace some placeholders without using the libreoffice libraries. I wonder about some XML constructions. In a Writer document I write: Manfred Rebentisch{{today}} The XML: Manfred Rebentisch{{today}} Why is the "h"

Re: soffice headless on server consumes 100% CPU

2019-05-23 Thread Manfred Rebentisch
Hi Stephan, Am 23.05.19 um 17:33 schrieb Stephan Bergmann: > > The soffice --accept command-line option and the UNO > css.bridge.UnoUrlResolver service expect different kinds of arguments. > The latter is documented to expect a full uno URL (see >

Re: soffice headless on server consumes 100% CPU

2019-05-23 Thread Manfred Rebentisch
Hi, if I start soffice with --accept="socket,host=localhost,port=2083;urp;StarOffice.ServiceManager" it runs normal. But if I want to connect from client C++ programm: sConnectionString = "socket,host=localhost,port=2083;urp;StarOffice.ServiceManager"; xContextM = ::cppu::defaultBootstrap_Init

Re: soffice headless on server consumes 100% CPU

2019-05-23 Thread Manfred Rebentisch
Hi Jan-Marek, Am 23.05.19 um 12:29 schrieb Jan-Marek Glogowski:> Hi Manfred, > > Am 23.05.19 um 06:29 schrieb Manfred Rebentisch: >> if I call the headless mode: >> >> # /usr/lib/libreoffice/program/soffice --headless --nologo --norestore >> --accept="u

soffice headless on server consumes 100% CPU

2019-05-23 Thread Manfred Rebentisch
Hello, if I call the headless mode: # /usr/lib/libreoffice/program/soffice --headless --nologo --norestore --accept="uno:socket,host=localhost,port=2083;urp" & then the computer needs all its power for that software. top shows 100% and the fans working hard. What is wrong with this mode? #

Read and write on linux server

2019-04-25 Thread Manfred Rebentisch
Hello, i am new to this list. Is this the right place to talk about developing linux-server-software using libreoffice headless? I want to use libreoffice libraries for generation of ods or xlsx files from my c++ application lib. Thank you Manfred ___