For help with installation, bugs reports or feature requests, please head over to our new forums.
Genuitec Community on GitHub
- This topic has 6 replies, 2 voices, and was last updated 20 years, 5 months ago by
sgadkari.
-
AuthorPosts
-
sgadkariMember– System Setup ——————————-
Operating System and version: Windows XP Pro SP2
Eclipse version: 3.1.2
Eclipse build id: M20060118-1600
Fresh Eclipse install (y/n): Y
If not, was it upgraded to its current version using the update manager?
Other installed external plugins: “Web Standard Tools – Web Core”, MyEclipse
Number of plugins in the <eclipse>/plugins directory that begin with org.eclipse.pde.*: 4
MyEclipse version: 4.1.1
Eclipse JDK version:
Application Server JDK version:
Are there any exceptions in the Eclipse log file?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 included the following on a simple jsp page
<%@ taglib prefix=”c” uri=”http://java.sun.com/jstl/core” %>standard.jar and jstl.jar are in the WEB-INF/lib folder
the tlds are in the WEB-INF folder.jsp-api.jar, jstl.jar and standard.jar have been added to the project build path.
the following code is in the jsp file:
<c:if test=”${true}” >
<label>You have 2 rows</label>
</c:if>
Problem:
the <c:if tags are underlined and say “Unknown Tag”Please Help,
Thanks
March 8, 2006 at 9:36 am #248026
Riyad KallaMemberThe TLDs are actually in the standard.jar file, you need to add that to your build path. Also the URIs you are using are for JSTL 1.0, so if you add standard and it’s STILL not working, expand the standard.jar file and go into the META-INF folder and open the c.tld file, look near the top for the <uri></uri> section and use that URI.
TIP: Your TLDs when using default URIs are resolved from the JARs, so you don’t need them in WEB-INF.
March 8, 2006 at 10:02 am #248038
sgadkariMemberThe taglib is now
<%@ taglib prefix=”c” uri=”http://java.sun.com/jsp/jstl/core” %>the standard.jar file has been added to the project.
the <c:if tags still have the same error.
March 8, 2006 at 10:53 am #248043
Riyad KallaMemberTry and restart MyEclipse then rebuild your project.
Also do you have any <taglib> entries in your web.xml file? These will override default URIs.
March 8, 2006 at 11:43 am #248052
sgadkariMemberI have already removed references to taglib from web.xml.
Restarting eclipse and rebuilding did not help.
March 8, 2006 at 11:56 am #248054
Riyad KallaMemberI need to clarify is this actually a web project or a Java project? Open project properties, go to MyEclipse-Web, what are your 2 values in the text fields there?
If this is not a web project, you can Add Web Project Capabilities to it from the MYEclipse sub-menu off of the root of your project (right-click).
March 8, 2006 at 12:34 pm #248063
sgadkariMemberThat solved the problem.
Thank you for your help.
-
AuthorPosts
