Hello,

I have the problem that an Action is not executed.
When I process the Form (by clicking Submit button), the
.do url is shown in the addressbar and an empty screen
is shown.


The start of the Action javafile does some logging (using
Log4J), but I see nothing in the MySQL (to where I am logging to).
The ActionForm also does some logging to the same Log4J appender
(in the first setter) and that one is shown.

Below is the struts-config.xml file (only the Action), it's
quite standard as you see.

    <!-- Process a user logon -->
    <action    path="/logon"
               type="fimp.logon.LogonAction"
               name="logonForm"
               scope="request"
               validate="false"
               input="/logon.jsp">
      <forward name="success-login" path="/index2.jsp" />

    </action>

Also, the first couple of lines from the Action:

  package fimp.logon;

  // <<imports removed from this extract
  public class LogonAction extends Action {

     public ActionForward execute(ActionMapping mapping,
                                   ActionForm form,
                                   HttpServletRequest request,
                                   HttpServletResponse response)
     throws IOException, ServletException {

  	  	Logger log = Logger.getLogger(LogonAction.class);
    	  log.debug("Entered the LogonAction class");


If anybody can help me, it would be appreciated.

Thank you,

Bert Catsburg


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

Reply via email to