Prasad Yarehalli

Greenhorn
+ Follow
since Dec 08, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Prasad Yarehalli

What you are trying to do is new thing and is only available in JSP 2.0
18 years ago
JSP
What version of JSP and SERVLETS are you using? I think you should use JSP 2.0 and servlet 2.4 to make this work.
18 years ago
JSP
I have tomcat 5. My question is where do I get API for SimpleTagSupport class? I don't know If I am asking the right question. I am trying to develop tag files using WSAD 5.1.2 IDE. I will use TOMCAT 5 for testing.
18 years ago
I have WSAD 5.1.2. I need to work on JSP 2.0 and Servlet 2.4 for the exam. What needs to be done? Can I download some Jar files and put them in proper locations to make it work? Please help me. I am not even seeing SimpletagSupport class in Type Hierarchy.
18 years ago
I am trying to do an example in HFSJ. I am not able to make the following work. It is not accepting attribute tagdir

%@ taglib prefix="myTags" tagdir="/WEB-INF/tags" %>

My webxml is using http://java.sun.com/dtd/web-app_2_3.dtd. I think my JSP is 1.2 and the book examples are JSP 2.0

What should I do make book examples to work in WSAD?
18 years ago
Thanks, I down loaded JSTL 1.0 Jar files. It started working.
But EL is not working. Any Idea?

My servlet is 2.3, JSP 1.2, J2EE 1.3, JSTL 1.0

KindStatusPriorityDescriptionResourceIn FolderLocation
ErrorJspTranslate: Page directive: Invalid attribute, isELIgnored.MyJSP.jspJSPTest/WebContentline 6
18 years ago
JSP
I HAVE COPIED jstl.jar AND standard.jar INTO WEB-INF/LIB FOLDER.
MY WEB.XML IS AS BELOW.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

My JSP is as below.
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
I am stil getting same error

KindStatusPriorityDescriptionResourceIn FolderLocation
ErrorJspTranslate: This absolute uri (http://java.sun.com/jsp/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application.MyJSP.jspJSPTest/WebContentMyJSP.jsp
18 years ago
JSP
i AM NEW TO JSTL. My JSP is as below.

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

I am getting following error.


WarningBroken Link - http://java.sun.com/jsp/jstl/coreMyJSP.jspJSPTest/WebContentline 2


ErrorJspTranslate: This absolute uri (http://java.sun.com/jsp/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application.
18 years ago
JSP
I am not able to get Security working in Websphere 5.1.2. Please help.

When I try to add <login-config></login-config> to DD. I get the following error

The content of element type "web-app" must match "(icon?,display-name?,description?,distributable?,context-param*,filter*,filter-mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-mapping*,
welcome-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,security-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-ref*)".

My DD Doc type is as below.

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

[EDIT - broke long line]
[ December 11, 2005: Message edited by: David O'Meara ]
18 years ago
I am new to Java and JSP. I passed SCJP 1.4 recently and I am working on SCWCD preparation. I am in the process of learning EL in JSP. But my EL doesn't seem to work at all. When my EL's are rendered , I get the same as I typed in/ Is there any setting that I have to do make it work?
18 years ago
JSP