> 
> Yes, Tiger is the webapp.
> 
> My struts.xml contains
>  <action name="StartOrder"
> class="com.mysite.ecommerce.actions.StartOrderAction" method="input">
>  <result>/startOrder.jsp</result>
> </action>
> 
> My struts.properties is located in WEB_INF/classes along with the
> struts.xml file and contains
> struts.devMode = true
> struts.enable.DynamicMethodInvocation = true
> 
> If I call http://localhost:8084/Tiger/StartOrder.action then I can see
> that the input() method is called on StartOrder.action through using
> System.out.println(). However
> http://localhost:8084/Tiger/StartOrder!input.action gives There is no
> Action mapped for namespace / and action name StartOrder!input. -
> [unknown location]
> 
> Is there anything else you need to see? I don't want to send too much
> unneccassary data
> 

It appears that you are hardcoding your call to the input method...
Typically, I specify a method using wildcards. Your setup would look like
this - 

<action name="StartOrder_*"
 class="com.mysite.ecommerce.actions.StartOrderAction" method="{1}">

Then whichever method I specify in the URL will be called. Of course, in my
scenario it defaults to 'execute' unless I specify otherwise.

-Wes

--
Wes Wannemacher
Director of Operations
Double A Trailer Sales, Inc.
[EMAIL PROTECTED]

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to