We are working with Domino 8.5.3 and we noticed an issue with xpages validation messages being displayed on the server console.
Here is a simple xpage we created to re-create the issue:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">
<xp:inputText id="inputText1" required="true">
<xp:this.validators>
<xp:validateRequired message="Value is required."></xp:validateRequired>
</xp:this.validators>
</xp:inputText>
<xp:messages id="messages1"></xp:messages>
</xp:view>
Even though we have a xp:messages on the page and we are able to see those error messages on the xpage, we also see them displayed on the server console! Has anyone else noticed this?
Any help would be appreciated.