Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
I have created a new action class and written: /** * Add Editors to Domains * * @struts.action name="domainAdminEditorForm" path="/admin/domainAdminEditor" scope="request" parameter="method" * * @struts.action-forward name="domainAdminEditor.page" path=".domainAdminEditor" * * @author Shervin

Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Antonio Petrelli
Shervin Asgari ha scritto: Have I forgotten something?? Did you run XDoclet??? I am asking this because it seems that you wrote some XDoclet tags. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
Hm...Maybe I should explain better. I have already a full working application, with a couple of action classes and a few jsp pages. I wanted to add one more action class and one more jsp page, but suddenly it didn't work, and I can't remember if I have forgotten to do something. I thought I wa

[OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Antonio Petrelli
Shervin Asgari ha scritto: I thought I was runnign XDoclet. How can I check this? XDoclet is a tool that must be run at build time! So you need to execute it before you deploy your webapp. Anyway I am not a wizard with XDoclet and this is not the right list to ask (sorry). Ciao Antonio ---

[OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Dave Newton
Shervin Asgari wrote: > I thought I was runnign XDoclet. How can I check this? Look at your console when you run the Ant build. Look at your Ant build file. Remember what you do when you build the project and see if at any time you run XDoclet. Dave

Re: [OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
Yes I run XDoclet. Because all of my other forwards are working correctly. It is only this one that seems to not work. What I have done to come around this issue is including data in an already existing actionform class. This is not feasible, but works temporary until I figure out what I am mis

Re: [OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Dave Newton
Shervin Asgari wrote: > Yes I run XDoclet. Because all of my other forwards are working correctly. But they already existed, and this is a new one. Are you certain you are running it again to capture the new class's annotations? Dave ---

Re: [OT] Re: Why doesn't struts-config.xml read my action class?

2006-06-14 Thread Shervin Asgari
Yes I am quite sure, I can show you a code snip of the build.xml file . . . And since my action class name is under the package org.roller.presentation.website.actions; And the name is DomainAdminEditorAction It should automatically be include