Hello, i'm using this dynamic link to pass a parameters to an action:

http://localhost:8081/deleteEvent.do?action=confirmDelete

* code in deleteEventAction :

        try {
            
            String action = (String) request.getAttribute("action");
            
            if (action.equals("confirmDelete")) {
                
                request.setAttribute("action",action);
                
            }
            
        } catch (NullPointerException e) {
            
            
            System.err.println("attribute action onot found");
        }


but i get an NullPointerException :(


* Action mapping :

<action path="/deleteEvent"
type="org.jcrontab.web.struts.DeleteEventAction" />


what can be the problem ?


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

Reply via email to