Paul Joseph | 30 Jan 17:31
Picon

not sure how to handle this error

Hi there

My cocoon app has a form where one can upload files.  Should they choose an incorrect file type, they get a small button with two tiny dots in it.

When they click that, it throws the following error:

An Error Occurred

org.apache.cocoon.ProcessingException: Sitemap: <map:call continuation> did not send a response at <map:call> - file:///C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%207.0/webapps/array/webtask/login/sitemap.xmap:226:33


My question is how do I configure my sitemap to handle this error...presently I have the following, but that does not catch this error...

<map:handle-errors>
      <map:select type="exception">
        <map:when test="invalid-continuation">
      <map:generate type="jx" src="context://webtask/invalid_continuation.xml"/>
      <map:transform src="context://resources/resources/forms-page-styling.xsl"/>
      <map:serialize/>
        </map:when>
      </map:select>
 </map:handle-errors>

Paul

Gmane