In
src/resources/web/WEB-INF/classes/views.properties there is this
line:
bank.transfer.action="">
this
tells Webwork that the bank.transfer.action is the class
bank.Transfer
because of this line in
webwork.properties:
webwork.action.packages=webwork.examples,
webwork.examples.vxml
it
checks webwork.examples.bank.Transfer and uses that class. That class implements
CommandDriven and extends ActionSupport, which has a method named doDefault. It
is this method which is called, since it is not overridden, and does only
this:
return
INPUT;
Jason
-----Original Message-----
From: Hariharan [mailto:[EMAIL PROTECTED]Where can i get the bank.transfer action and the doDefault() can u pls explain in detail.