tyron bangs

Greenhorn
+ Follow
since Sep 28, 2007
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 tyron bangs

Hi,

i'm new to JSF and i try to create simplest jsf pages. I've installed the "glassfish-tools-bundle-for-eclipse-0.99.1" and deployed a Project.

When i try to launch the jsp first.jsp i get following error:

StandardWrapperValve[jsp]: PWC1406: Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: /WebContent/first.jsp(2,57) PWC6188: The absolute uri: http://java.sun.com/jsf/core cannot be resolved in either web.xml or the jar files deployed with this application


this my jsp:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<f:view>
<h:commandButton></h:commandButton>
<h:outputText>HELLO</h:outputText>
</f:view>
</body>
</html>


14 years ago
JSF
Hi All,

i have similar problems with session hanging around and loking database records. I'm searching for that holy "button" to daectivate such sessions without restarting tomcat. Is there any hint to follow
15 years ago