This is the error message that I got in the browser:
'Cannot retrieve mapping for action /content/AddLinks'


What would be the cause of this error message?  My
eyes do not see the problem.  Your experience and help
are much needed.

I have the action mapping in the struts-config.xml
like:

    <action
        path="/content/AddLinks" 
        type="org.dhsinfo.content.doSomething3"
        name="addLinkForm"
        scope="request"
        validate="false"
        input=".frame.content">
      <forward 
           name="success"
           path=".link.Confirmation"/>
    </action>

and the form that invokes this action is like:

<html:form action="/content/AddLinks">
<fieldset>
  <table>
    <tr>
      <td align="left" nowrap="nowrap">
        Select Page to Add Links:
      </td>
      <td>
        <bean:define id="pageList" name="PageBeans"
scope="request" type="java.util.ArrayList"  />
        <html:select size="1" property="page"
multiple="false">
          <html:options collection="pageList"
property="name" labelProperty="name"/>
        </html:select>
      </td>
    </tr>
    <tr>
      <td align="left" nowrap="nowrap">
        Type in Link Name or Title:
      </td>
      <td>
        <input type="text" name="linkname" size="60"
/>
      </td>
    </tr>
    <tr>
      <td align="left" nowrap="nowrap">
        Type or Paste in Link Location:
      </td>
      <td>
        <input type="text" name="linklocation"
value="http://"; size="60" />
      </td>
    </tr>
    <tr>
      <td>
        <br />
      </td>
      <td>
        <html:submit>Submit Updates</html:submit>
        <html:submit>Reset Form</html:submit>
      </td>
    </tr>
</html:form>
    <tr>
      <td>
        <br />
      </td>
    </tr>
    <tr>
      <td>
         Links History
      </td>
      <td>
         <input type="text" name="xxx" size="60"/>
      </td>
      <td>
        <button type="button">
          List History
        </button>
      </td>
    </tr>
    <tr>
      <td>
        <br />
      </td>
    </tr>
  </table>
</fieldset>





        
                
__________________________________
Do you Yahoo!?
New and Improved Yahoo! Mail - 100MB free storage!
http://promotions.yahoo.com/new_mail 

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

Reply via email to