• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

The requested resource (Servlet action is not available) is not available. ...

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Below is my Struts.xml

<action-mappings>

<action path="/valid"
type="com.hitech.customer.actions.LoginAction"
name="loginForm"
scope="session"
parameter="module"
input="/web/jsp/HiTech_Login.jsp">
<forward name="success" path="/web/jsp/HiTech_HomePage_Home.jsp"/>
<forward name="reset" path="/web/jsp/HiTech_Login.jsp" />
<forward name="ErrorPage" path="/web/jsp/HiTech_ErrorPage_Error.jsp"/>
<forward name="error" path="/web/jsp/HiTech_Login.jsp" />
</action>

</action-mappings>

And also below is my jsp page..

Here i have given /valid but even though its kicking me back.

<html:form action="/valid.do" method="Post" >

<table class="DefaultTable" width="95%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#BFD5FEA">
<tr>
<table class="DefaultTable" width="100%" border="0" cellpadding="0" cellspacing="0" bordercolor="#BFD5EA">
<tr>
<td width="10%"><img src="/HitechEngineering/web/images/inner01.jpg" width="136" height="102" ></td>
<td width="33%" bgcolor="#294062"><div align="center">
<table class="DefaultTable" width="100%" border="0" cellpadding="0" cellspacing="0" bordercolor="#294062">
<tr>
<td width="14%"> </td>
<td width="78%"><font size="3" face="Verdana" color="#990000"> </font></td>
</tr>
<tr>
<td> </td>
<td><font size="4" face="Verdana" color="#FFFFFF"><b>HitechEngineering (Base From LEE)</b></font></td>
</tr>
<tr>
<td> </td>
<td><font size="2" face="Verdana" color="#990000"> </font></td>
</tr>
</table>
<html:hidden property="module" value=""/>
<font size="3" face="Verdana" color="#990000"><b> </b></font></div></td>
<td width="57%" bgcolor="#294062"><table width="59%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="27%"> </td>
<td width="73%"><font size="3" face="Verdana" color="#990000"> </font></td>
</tr>
<tr>
<td> </td>
<td><font size="2" face="Verdana" color="#FFFFFF"> </font></td>
</tr>
<tr>
<td> </td>
<td><font size="1" face="Verdana" color="#FFFFFF"> </font></td>
</tr>
</table></td>
</tr>
</table>
</table>
<table width="100%" border="0"><tr>
<td height="31"></td>
</tr></table>

<table width="92%" border align="center" cellpadding="0" cellspacing="0" bordercolor="#BFD5EA" color="cccccc">
<tr>
<td width="326"><img src="/HitechEngineering/web/images/welcome1.jpg" width="600" height="400" ></td>
<td width="627">
<table border="0" align="center">


<tr>
<td width="375" align="center"><font size="6" face="Verdana" color="#0C285F">HitechEngineering</font></td>
</tr>
<tr>
<td align="center"><table width="97%" height="146" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="34%"> </td>
<td width="2%"> </td>
<td width="46%"><font size="3" face="Verdana" color="#990000"> </font></td>

<tr>
<td>        <b><font color="#000033" size="2" face="Verdana">UserName<FONT SIZE="1" COLOR="#FF0000">*</FONT> </font></b></td>
<td> </td>
<td><html:text property="userName" maxlength="20" size="40"/></td>
</tr>

<tr>
<td>        <b><font color="#000033" size="2" face="Verdana">Password<FONT SIZE="1" COLOR="#FF0000">*</FONT> </font></b></td>
<td> </td>
<td><html:password property="password" maxlength="20" size="40"/></td>
</tr>

<tr>
<td align="right"> </td>
<td> </td>
<!-- submit button for login button -->
<td>
<html:submit value="Login" styleClass="Button" />
<!-- submit button for clear button -->
<html:submit value="Clear" styleClass="Button" />
</td>
</tr>

<%-- User Name :<html:text property="userName" maxlength="6" size="31"/>
Password :<html:password property="password" maxlength="20" size="40"/> --%>
</table>
</table>
</table>
</html:form >

Action class is:
public ActionForward login(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response) throws Exception {

// Business Logics..
}

Can any one help me on this please..
 
Ranch Hand
Posts: 329
Eclipse IDE Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Paari,

Welcome to JavaRanch!!!

1. As you used colors in the post we also have "code" tags. Additionally, the designers of this great forum also provided a "preview" button to verify the post before submitting. Please make best use of it.

2. I think you would have had an exception thrown at deployment time/server startup. Please check your server startup logs and if that is happening post the stack trace.
3. If 2 is wrong, then still post the stack trace when you are getting the exception. This is no logic problem, it should be configuration problem.

 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic