- This topic has 1 reply, 2 voices, and was last updated 19 years, 10 months ago by Riyad Kalla.
-
AuthorPosts
-
alexstevensonMember– System Setup ——————————-
Operating System and version: WindowsXP, SP2
Eclipse version: 3.0.1
Eclipse build id: 200409161125
Fresh Eclipse install (y/n): y
If not, was it upgraded to its current version using the update manager?
Other installed external plugins: com.ibm.etools.project.interchange_1.0.0.2
com.objfac.xmleditor_2.0.10
com.sysdeo.eclipse.tomcat_3.0.0
kodo.eclipse_2.1.0
org.junit_3.8.1
org.eclipsebook.ch12.Ch12_01_1.0.0
org.eclipsebook.ch12.Ch12_02_1.0.0
org.eclipsebook.first
Number of plugins in the <eclipse>/plugins directory that begin with org.eclipse.pde.*: 8
MyEclipse version: 3.8.3
Eclipse JDK version: j2sdk1.4.2_06
Application Server JDK version: j2sdk1.4.2_06
Are there any exceptions in the Eclipse log file? No, don’t think so.If this is a DB related question please answer the following:
RDBMS vendor and version:
JDBC driver vendor and version, and access type (thin, type-2, etc):
Connection URL:
Eclipse error logs related to com.genuitec.eclipse.sqlexplorer packages:– Message Body ——————————-
I am trying to launch a very simple web application using its start up URL. I get a Tomcat 5.0.28 error message headed by “javax.servlet.ServletException: Cannot retrieve mapping for action /LoginSubmit”. This is an action-mapping path from a previous small web application. The path doesn’t exist in any of the struts-config.xml files which remain in the instance of MyEclipse which I am using (or any other instance which I have used before). The project details have been removed from my Tomcat/webapps directory and also my workspace. Is there some other file that I need to edit to remove historical information which is causing my problem?
Riyad KallaMemberTIP: If Tomcat is giving you an error, then the problem is with your web application. MyEclipse does not do any ‘hooking in’ to your application server like some other IDEs that ship with embedded servers.
SO, with that being said, I would first check your JSP page, I’m willing to bet somewhere in there you have a:
<html:form action=”/LoginSubmit.do”>or some other line like that, that is causing the taglib to barf when it sees you are trying to reference an action mapping that doesn’t exist. The quickest way to figure this out is to do a Search > File for the text “LoginSubmit” in your project.
-
AuthorPosts