aspose file tools
The moose likes Struts and the fly likes Error in the Strus application showing as ApplicationResources not found not Forwarded henceforth Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Error in the Strus application showing as ApplicationResources not found not Forwarded henceforth" Watch "Error in the Strus application showing as ApplicationResources not found not Forwarded henceforth" New topic
Author

Error in the Strus application showing as ApplicationResources not found not Forwarded henceforth

soven rout
Greenhorn

Joined: Feb 19, 2012
Posts: 18
web.xml

<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>



In the struts application even if I have user correct servlet class still it is showing the error as
"INFO: Servlet action is currently unavailable" and not getting Forwarded as per my requirement.

struts-config.xml

still it is not forwarded nor to the userConsole.jsp page neither to the adminConsol.jsp page just showing the error as:
HTTP Status 404 - Servlet action is not available

Please help me out.
jatan bhavsar
Ranch Hand

Joined: Jul 23, 2008
Posts: 296

Hi Soven,

HTTP Status 404 - Servlet action is not available


Check for the configuration of the action. Its related to the configuration only. you will not find the generated class files.

Regards
Jatan bhavsar
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Error in the Strus application showing as ApplicationResources not found not Forwarded henceforth
 
Similar Threads
Trouble with Struts
Error 404: No target servlet configured for uri: +websphere 6.0
Exceptional Handling in Struts