Hello.

In the top of my action class I have the following:

-**
* Administer Your Domain
*
* @struts.action name="domainAdministratorForm" path="/admin/domainAdministrator" scope="request"
*                parameter="method"
* @struts.action-forward name="domainAdministrator.page" path=".domainAdministrator"
*
* @author <a href="" class="moz-txt-link-rfc2396E" href="mailto:[EMAIL PROTECTED]">"mailto:[EMAIL PROTECTED]">Shervin Asgari</a>
*
*/
public class DomainAdministratorAction {
.
.
.
}

However in my struts-config.xml file which is auto generated, I do not get the Action Mapping Definitions.

I want something like this:
<action
     path="/admin/domainAdministrator"
     type="org.roller.presentation.website.actions.DomainAdministratorAction"
     name="domainAdministratorForm"
     scope="request"
     parameter="method"
     unknown="false"
     validate="true"
   >
     <forward
       name="domainAdministrator.page"
       path=".domainAdministrator"
       redirect="false"
     />
</action>

What is missing? What have I forgotten to do? All my other Action Mapping Definitions are correctly auto-generated.

-- 
Shervin Asgari


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
xdoclet-user mailing list
xdoclet-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to