Likes
No photo
Go to the mobile site
An exception occurred processing [html/profile-view.jsp] at line [6] 3: // in case of get, we can use the query string otherwise we need to build a new url as post cannot be redirected 4: String profileURL = "/html/profile/profile-view.jsp"; 5: if ("GET".equals(request.getMethod())) { 6: pageContext.forward(profileURL + (request.getQueryString() != null ? "?"+request.getQueryString() : "")); 7: return; 8: } else { 9: pageContext.forward(profileURL + com.jnj.util.ServletUtils.buildQueryString(request)); Stacktrace: