Monday, December 20, 2010

Fixing a common bug in iStore Billing Page of Release 12

This article describes you how to fix a common bug in iStore Billing page of Release 12.

Billing page error show up is

“cannot find symbol symbol : method setAttribute(java.lang.String,boolean,int) location: class javax.servlet.jsp.PageContext pageContext.setAttribute(”reloadFlag”, false, PageContext.REQUEST_SCOPE); ”

this error won’t take you beyond the Billing Page, results not able to place any order using iStore.

For fixing this issue, you have to edit line 948 of the ibeCCkpBHdrBillPay.jsp page

ie,

original code on line 948:-

pageContext.setAttribute(”reloadFlag”, false, PageContext.REQUEST_SCOPE);

change it to:-

pageContext.setAttribute(”reloadFlag”, “false”, PageContext.REQUEST_SCOPE);

just change the type of second argument from boolean to string by adding ” “.

ie from-> false

to -> “false”

This change will fix the above bug and allows you to go beyond billing page and Place order Successfully.

No comments:

Post a Comment