Install on JasperServer 8.0.0

@alexey.noskov @anatoly.sidorenko
That’s great, but the last version I managed to run in our environment was 23.10.3 (all newer versions cause the startup errors described earlier in this thread).

Therefore, I kindly ask you to add this fix to version 23.10.3 as well.

@TomiLi123 We are going to publish 23.10.4 version with fix of WORDSJR-402.

@TomiLi123 The issues you have found earlier (filed as WORDSJR-402) have been fixed in this Aspose.Words for JasperReports 23.10.4 hotfix.

1 Like

@alexey.noskov
I tried version 23.10.4, but unfortunately, it didn’t work.
Jasper Server with the option

<property name="allowHtmlLists" value="true"/>

started correctly this time, but the resulting docx file still lacks bullet points. I have no idea what could be wrong.
I’m attaching a fragment of the document template from Jasper Studio, the Preview in Jasper Server/pdf, and after saving to docx.



Hi @TomiLi123

I see similar behavior in our tests,
can you wrap your list in to span tag like this:

<span style=\"display:left\">
  <ul>
    <li>Test1</li>
    <li>Test2</li>
    <li>Test3</li>
  </ul>
</span>

In out tests it help to write several lists in one paragraph.

Also I will notice that html list features didn’t work then list wrapped from one page to another. Page Break broke list structure, so we emulate list with symbols and indents.

1 Like