For a project I am programming in HCL Domino and using a Notes Database. My problem is that the value I want to store as text is greater than the maximum limit for text (32KB). As an alternative rich text came into my mind. Within the application it works just fine. Yet if I directly apply any changes in the database the text will be formatted differently. If I use the application again the text will be look something like this:
<font size="2" face="sans-serif"><?xml version="1.0" encoding="UTF-8"?><br /> ...
But instead it should be xml Code:
<?xml version="1.0" encoding="UTF-8"?> ...
Is there any way to avoid this problematic? Is it even possible to change the maximum capacity for the normal text field? (with text it worked fine) For me it seems like the additional features of rich text like formatting text are causing the problem.