This is a discussion on Null Pointer Exception - Weblogic ; Hi iam trying to access jsp included in custom tags iam getting run time exception say Null pointer exception. when i trace the code i found at public int doEndTag() throws JspException { try { pageContext.getOut().print(bodyContent.getString() ); return EVAL_PAGE; } ...
Hi iam trying to access jsp included in custom tags iam getting run
time exception say Null pointer exception. when i trace the code i
found at
public int doEndTag() throws JspException {
try {
pageContext.getOut().print(bodyContent.getString() );
return EVAL_PAGE;
} catch (IOException exp) {
throw new JspException(exp.getMessage());
}
}
i found the null pointer exception at bodyContent. every time iam
getting bodycontent null.
why.
Please Help to solve this problem. it is very urgent.
this code works fine when i deployed at weblogic 8.1 but this null
exception is getting when i deployed at weblogic 9.
Thanks
Buchiveeram