error loading taglib

2002-03-24 Thread Isak Rickyanto
I have problem with custom tag I have added in my web.xml : counter /WEB-INF/counter.tld I also have the counter.tld : http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd";> 1.0 1.2 Counter Tag This tag display Counter counter CounterTag empty but when i use in my code : <%@

Re: using with session scope

2002-03-21 Thread Isak Rickyanto
Thank's very much.. I found the problem is I disable cookie.. ;> "Make shure that you have cookies enabled in the browser or that you use response.encodeUrl() to create the link between the two pages." -- To unsubscribe: For additional commands:

Please help me found Jar file needed to compile Tag Handler

2002-03-21 Thread Isak Rickyanto
Hello all please help me... OK... I try to compile Java program to make simple custom tag I found error when compile it... I think because it doesn't found the jar file needed to compile.. I found that the jar file needed to compile in Tomcat 3 is servlet.jar but I use Tomcat 4.0.1 now...

using with session scope

2002-03-21 Thread Isak Rickyanto
Please help me learn about getProperty ... My first page is : <%@ page language="java" session="true" %> Set The property View name and status Name : Has Married ? : Then the second page : <%@ page language="java" session="true" %> View name and status Name : Has Married ? : I found

What jar file needed to compile Taglib Handler?

2002-03-19 Thread Isak Rickyanto
Hello all please help me... OK... I try to compile Java program to make simple custom tag I found error when compile it... I think because it doesn't found the jar file needed to compile.. I found that the jar file needed to compile in Tomcat 3 is servlet.jar but I use Tomcat 4.0.1 now...

Jar file needed to compile Taglib Handler

2002-03-18 Thread Isak Rickyanto
Hello all please help me... OK... I try to compile Java program to make simple custom tag I found error when compile it... I think because it doesn't found the jar file needed to compile.. I found that the jar file needed to compile in Tomcat 3 is servlet.jar but I use Tomcat 4.0.1 now...

not suitable driver?

2002-02-22 Thread Isak Rickyanto
I have this problem and please help me... I have installed mm.mysql driver ( jar file ) in : C:\tomcat4\lib c:\tomcat4\webapps\Root\WEB-INF\lib\ c:\jdk1.3.1\lib\jre\ext c:\tomcat4\common\lib I have run this code , previous I have succeded run this program, but now it show error : javax.servlet.

Iterator.next to String

2001-10-27 Thread Isak Rickyanto
Hello all of Java Gurus... I use iterator in my code and I have succeeded to display the iterator.next() in the browser but I want to pass it to next jsp, so I want to get the value of iterator.next and convert to String variable I try String title=(String)iterator.next(); but I found erro

Bean Error

2001-10-01 Thread Isak Rickyanto
Hello I have a bean to manage form registration I think it is because nullpointerexception... (from the error below) at the foo.FormBean1.validate .. right? I read the error say (FormBean1.java.52)... it means that the error code in the line 52 right? the code : it is on line 52:if (telep

Compile Servlet

2001-09-30 Thread Isak Rickyanto
Hello all.. I am newbie... I want to compile my servlet , i have set TOMCAT_HOMe, JAVA_HOME and my javac not succedded to compile the servlet... And I confuse about setting classpath so my javac can found the servlet Please help me step by step about setting classpath in autoexec.bat

newbie Servlet

2001-09-25 Thread Isak Rickyanto
Sorry it is newbie.. I have myservlet.java and i place in tomcat/webapps/myapp/web-inf/classes and i had modified web.xml in web-inf.. I only want to ask... Is Tomcat not automatically compile it? or I must compile the servlet first?