There's a couple of issues with this. First, a portlet only produces
page fragments, you can't use <html>, <head> or <body> tags. So you'll
have to find another way to refresh the page. Second, the url-tag
needs a specified action to produce a correct URL in a portlet
environment (there's a JIRA ticket for using the executing action if
no action is specified, but this hasn't been implemented yet). Try
using <s:url action="longProcess3"/> instead.

Nils-H

On Jan 2, 2008 10:05 PM, Wanjun Wang <[EMAIL PROTECTED]> wrote:
>
>
> Nils-H,
>
>  I noticed some error in my struts-view.xml.  It now looks like:
>  <struts>
>  <package name="view" extends="struts-portlet-default"
>  namespace="/view">
>  <action name="index">
>  <result name="success">/WEB-INF/view/index.jsp</result>
>  </action>
>
>  <action name="longProcess3"
> class="org.apache.struts2.showcase.wait.LongProcessAction">
>  <interceptor-ref name="defaultStack"/>
>  <interceptor-ref name="execAndWait">
>  <param name="delay">3000</param>
>  <param name="delaySleepInterval">1000</param>
>  </interceptor-ref>
>  <result name="wait">/WEB-INF/view/wait.jsp</result>
>  <result name="success">/WEB-INF/view/complete.jsp</result>
>  </action>
>
>  </package>
>  </struts>
>
>  wait.jsp has
>  <%@ taglib prefix="s" uri="/struts-tags" %>
>  <html>
>  <head>
>  <meta http-equiv="refresh" content="5;url=<s:url includeParams="all"/>"/>
>  </head>
>
>  <body>
>  <p style="border: 1px solid silver; padding: 5px; background: #ffd;
> text-align: center;">
>  We are processing your request. Please wait.
>  </p>
>
>  <p/>
>  You can click this link to <a href="<s:url
> includeParams="all"/>">refresh</a>.
>
>  </body>
>  </html>
>
>  It's fine if it goes straight to success page. The problem is with wait
> page. The new exception is:
>  [1/2/08 16:00:10:140 EST] 0000004c PortletRender E
> com.ibm.wps.engine.tags.PortletRenderTag doStartTag EJPEJ0066E: The portlet
> could not be rendered.
>  javax.portlet.PortletException: Error executing action renderDirect
>
>  at
> org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher.serviceAction(Jsr168Dispatcher.java:426)
>  at
> org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher.render(Jsr168Dispatcher.java:299)
>  ......
>  Caused by: javax.portlet.PortletException: java.lang.NullPointerException
>  at
> com.ibm.ws.portletcontainer.core.impl.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:136)
>  at
> com.ibm.ws.portletcontainer.core.impl.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:256)
>  at
> org.apache.struts2.portlet.result.PortletResult$IncludeTemplate.include(PortletResult.java:208)
>  at
> org.apache.struts2.portlet.result.PortletResult.executeRenderResult(PortletResult.java:177)
>  at
> org.apache.struts2.portlet.result.PortletResult.doExecute(PortletResult.java:77)
>
>  at
> org.apache.struts2.dispatcher.StrutsResultSupport.execute(StrutsResultSupport.java:178)
>  ......
>  Caused by: java.lang.NullPointerException
>  at
> org.apache.struts2.portlet.util.PortletUrlHelper.buildResourceUrl(PortletUrlHelper.java:200)
>  at org.apache.struts2.components.URL.end(URL.java:260)
>  at
> org.apache.struts2.views.jsp.ComponentTagSupport.doEndTag(ComponentTagSupport.java:43)
>  ......
>
>  Could this be caused by the portlet container?
>
>  Thanks.
>
>  Wanjun Wang
>
>  "Nils-Helge Garli Hegvik" <[EMAIL PROTECTED]>
>
>
>
>
>
>
>
> "Nils-Helge Garli Hegvik" <[EMAIL PROTECTED]>
>
> 01/02/2008 02:34 PM
> Please respond to
>  "Struts Users Mailing List" <user@struts.apache.org>
>
>
> To
>  "Struts Users Mailing List" <user@struts.apache.org>
>
>
> cc
>
>
>
> Subject
>  Re: IllegalStateException from
> org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher
>
>
>
> I have never tested the execute and wait stuff, so I don't really know
>  how it works. But from reading the code for the interceptor, and
>  reading the stack trace, I would guess that this happens because the
>  default "wait" result is invoked and is not a result type that is
>  supported in a portlet. You could try configuring a result for "wait"
>  for the action explicitly. If you still have problems, please provide
>  the relevant configuration snippets.
>
>  Nils-H
>
>  On Jan 2, 2008 7:01 PM, Wanjun Wang <[EMAIL PROTECTED]> wrote:
>  > Hi,
>  >
>  > Has anyone used interceptor-ref in a portlet?  I'm trying to port the
>  > execute-and-wait showcase to a portlet.  The initial page displays fine,
>  > but upon submit, the following exception occurs:
>  >
>  > [1/2/08 11:49:34:468 EST] 0000002b EventQueueMan E
>  > com.ibm.wps.pe.pc.waspc.event.EventQueueManager processEventLoop
>  > EJPPG1122E: An error occurred during portlet event processing.
>  >                                  javax.portlet.PortletException: Error
>  > executing action longProcess3
>  >       at
>  >
> org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher.serviceAction(Jsr168Dispatcher.java:426)
>  >       at
>  >
> org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher.processAction(Jsr168Dispatcher.java:274)
>  > ......
>  > Caused by: java.lang.IllegalStateException: Not allowed in event phase
>  >       at
>  >
> org.apache.struts2.portlet.servlet.PortletServletResponse.isCommitted(PortletServletResponse.java:177)
>  >       at
>  >
> org.apache.struts2.dispatcher.ServletDispatcherResult.doExecute(ServletDispatcherResult.java:135)
>  >       at
>  >
> org.apache.struts2.dispatcher.StrutsResultSupport.execute(StrutsResultSupport.java:178)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:348)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:253)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.validator.ValidationInterceptor.doIntercept(ValidationInterceptor.java:150)
>  >       at
>  >
> org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor.doIntercept(AnnotationValidationInterceptor.java:48)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.ConversionErrorInterceptor.intercept(ConversionErrorInterceptor.java:123)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.ParametersInterceptor.doIntercept(ParametersInterceptor.java:167)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.StaticParametersInterceptor.intercept(StaticParametersInterceptor.java:105)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> org.apache.struts2.interceptor.CheckboxInterceptor.intercept(CheckboxInterceptor.java:83)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> org.apache.struts2.interceptor.FileUploadInterceptor.intercept(FileUploadInterceptor.java:207)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor.intercept(ModelDrivenInterceptor.java:74)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor.intercept(ScopedModelDrivenInterceptor.java:127)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> org.apache.struts2.interceptor.ProfilingActivationInterceptor.intercept(ProfilingActivationInterceptor.java:107)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> org.apache.struts2.interceptor.debugging.DebuggingInterceptor.intercept(DebuggingInterceptor.java:206)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.ChainingInterceptor.intercept(ChainingInterceptor.java:115)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.I18nInterceptor.intercept(I18nInterceptor.java:143)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.PrepareInterceptor.doIntercept(PrepareInterceptor.java:121)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> org.apache.struts2.interceptor.ServletConfigInterceptor.intercept(ServletConfigInterceptor.java:170)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept(AliasInterceptor.java:123)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:176)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
>  >       at
>  >
> com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
>  >       at
>  >
> com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)
>  >       at
>  >
> org.apache.struts2.impl.StrutsActionProxy.execute(StrutsActionProxy.java:50)
>  >       at
>  >
> org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher.serviceAction(Jsr168Dispatcher.java:420)
>  >       ... 117 more
>  >
>  > Any help is greatly appreciated.
>  >
>  > Wanjun Wang
>
>  ---------------------------------------------------------------------
>  To unsubscribe, e-mail: [EMAIL PROTECTED]
>  For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to