|
Home > Archive > WebSphere Portal Server > October 2005 > How do I enable error messages for my portlet?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How do I enable error messages for my portlet?
|
|
|
| I am running a portal in Websphere Application Server 5.
I can login to the portal, but my portlet displays a blank screen. It appears to be having trouble forwarding to my struts actions. Here is my index.jsp:
<%@ page language="java" %>
<%@ taglib uri="/tags/struts-logic.tld" prefix="logic" %>
<% System.out.println(" ABAB in index.jsp: forwarding to stormwater"); %>
%>
<logic:forward name="stormwater" />
I see my print statement inside SystemOut.log, but I don't see any errors generated by the logic:forward tag.
I have log4J set to log everything at debug or higher:
<root>
<level value = "debug"/>
<appender-ref ref="ConsoleAppender" />
</root>
Does anyone know what I should configure to get more output logging?
| |
|
| It looks like my original post's html tags got munched by the software... I hope my text comments were sufficient to explain what I'm trying to do. Basically my app is failing sometime after calling a struts logic:forward and I don't see any error message
s telling me why.
|
|
|
|
|