Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Unable to display Faces Message in IE 9

User_L823LDec 10 2018 — edited Dec 10 2018

Hi ,

I am displaying a Faces Message based on the condition . The same is working fine in IE11 . After the validation , the error message is coming as a ADF faces message on the UI in the pop up . But this is not happening in IE 9 . In IE 9 or any other version of IE , the error message is not getting displayed in the pop up. After the validation , no error message is shown on the UI. Please let me know what and where i need to change the code .

Please find below the code in the backing bean.

  FacesMessage msg = new FacesMessage(message.toString());

    msg.setSeverity(FacesMessage.SEVERITY_ERROR);

    FacesContext.getCurrentInstance().addMessage(null, msg);

It is weird , because the code i have used multiple times before and it works fine . This code is working fine when i try to run the application in my localhost . But when i deploy the same application in the DEV or any other server , then the Faces message does not appear . Please help me to resolve this.

Is it a IE compatibility issue?

Regards,

Dheeraj

Comments
Post Details
Added on Dec 10 2018
1 comment
109 views