Hi All,, Thanx for all your reply. I have found where i made mistake.. I put all my classes in WEB-INF/lib directory. After i put my all classes in WEB-INF/classes directory, i can able to run the application.
Here i have a doubt Why the war file didnt take the class files from lib directory..? But my struts.jar in WEB-IN/lib directory.. If i jar my all classes into one jar and i put into WEB-INF/lib whether it will be work or not. Thanx Kalaiselvan.S ----- Original Message ----- From: "Amit Badheka" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, September 27, 2002 10:16 AM Subject: Re: Startup Problem > Hi, > make sure that the action/form class is declared public. > > Amit. > ----- Original Message ----- > From: "Kalaiselvan" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]> > Sent: Friday, September 27, 2002 7:56 AM > Subject: Re: Startup Problem > > > > Sorry, it was a pasting problem the package name is > > > > <form-bean name="loginForm" type="com.login.LoginForm"/> > > > > Still i got the same error. Plz help where i made a mistake > > its very urgent for me to solve. > > > > Thanx > > Kalaiselvan.S > > > > ----- Original Message ----- > > From: "Mark Maimone" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Thursday, September 26, 2002 10:54 PM > > Subject: Re: Startup Problem > > > > > > > I see that the package name for your LoginForm has .. in it > > > > > > <form-bean name="loginForm" type="com..login.LoginForm"/> > > > > > > > > > >>> [EMAIL PROTECTED] 09/26/02 13:13 PM >>> > > > Hi All, > > > > > > Here i'm facing serious problem.. > > > I already configured test application in Struts. > > > > > > But when I configure my original Application i face serious problem.. > > > > > > I got an error like > > > > > > "No action instance for path /login could be created" > > > "The server encountered an internal error (No action instance for path > > > /login could be created) that prevented it from fulfilling this > > > request." > > > > > > I gave my code here > > > > > > struts-config.xml > > > -------------------- > > > > > > <?xml version="1.0" encoding="ISO-8859-1"?> > > > > > > <!DOCTYPE struts-config PUBLIC > > > "-//Apache Software Foundation//DTD Struts Configuration > > > 1.0//EN" > > > "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd"> > > > > > > <struts-config> > > > <form-beans> > > > <form-bean name="loginForm" type="com..login.LoginForm"/> > > > </form-beans> > > > <global-forwards> > > > <forward name="error" path="/login.jsp"/> > > > </global-forwards> > > > <action-mappings> > > > <action path="/login" > > > type="com.login.LoginAction" > > > name="loginForm" > > > scope="request" > > > input="/login.jsp"> > > > <forward name="success" path="/home.jsp"/> > > > </action> > > > </action-mappings> > > > </struts-config> > > > > > > web.xml > > > --------- > > > > > > <?xml version="1.0" encoding="ISO-8859-1"?> > > > > > > <!DOCTYPE web-app > > > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" > > > "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd"> > > > > > > <web-app> > > > > > > <!-- Action Servlet Configuration --> > > > <servlet> > > > <servlet-name>action</servlet-name> > > > > > > <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> > > > <init-param> > > > <param-name>application</param-name> > > > > > > > <param-value>com.openwave.careertracks.ApplicationResources</param-value> > > > </init-param> > > > <init-param> > > > <param-name>config</param-name> > > > <param-value>/WEB-INF/struts-config.xml</param-value> > > > </init-param> > > > <init-param> > > > <param-name>debug</param-name> > > > <param-value>2</param-value> > > > </init-param> > > > <init-param> > > > <param-name>detail</param-name> > > > <param-value>2</param-value> > > > </init-param> > > > <init-param> > > > <param-name>validate</param-name> > > > <param-value>true</param-value> > > > </init-param> > > > <load-on-startup>1</load-on-startup> > > > </servlet> > > > > > > > > > <!-- Action Servlet Mapping --> > > > <servlet-mapping> > > > <servlet-name>action</servlet-name> > > > <url-pattern>*.do</url-pattern> > > > </servlet-mapping> > > > > > > > > > <!-- The Welcome File List --> > > > <welcome-file-list> > > > <welcome-file>login.jsp</welcome-file> > > > </welcome-file-list> > > > > > > <!-- Application Tag Library Descriptor --> > > > <taglib> > > > <taglib-uri>/WEB-INF/app.tld</taglib-uri> > > > <taglib-location>/WEB-INF/app.tld</taglib-location> > > > </taglib> > > > > > > <!-- Struts Tag Library Descriptors --> > > > <taglib> > > > <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri> > > > <taglib-location>/WEB-INF/struts-bean.tld</taglib-location> > > > </taglib> > > > > > > <taglib> > > > <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri> > > > <taglib-location>/WEB-INF/struts-html.tld</taglib-location> > > > </taglib> > > > > > > <taglib> > > > <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri> > > > <taglib-location>/WEB-INF/struts-logic.tld</taglib-location> > > > </taglib> > > > </web-app> > > > > > > login.jsp > > > ----------- > > > <%@ taglib uri='/WEB-INF/struts-template.tld' prefix='template' %> > > > > > > <template:insert template='/logintemplate.jsp'> > > > <template:put name='title' content='Strus' direct='true'/> > > > <template:put name='header' content='/header.htm' /> > > > <template:put name='content' content='/login.htm'/> > > > <template:put name='footer' content='/footer.htm' /> > > > </template:insert> > > > > > > login.html > > > ------------ > > > <form> > > > <table align="center" cellpadding="0" cellspacing="0"> > > > <td class="text11bold">***Username:**<input class="inbox" > > > type="text" name="userName" value="" size="15"></td> > > > </tr> > > > <tr></tr> > > > <tr> > > > <td class="text11bold">***Password:**<input class="inbox" > > > type="password" name="password" size="15"> > > > <a href="login.do"><img src="images/login_button.gif" > > > border="0"></a></td></table> > > > </form> > > > > > > > > > Please help > > > where i made a mistake.. > > > > > > Thanx in Advance > > > > > > > > > -- > > > To unsubscribe, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > For additional commands, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > > > > > > > > > -- > > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

