cookies

2002-02-25 Thread JavaSoft
anyone knows any tutorial about cookies and how i control cookies i my jsp/servlet page ? I wanna make my own session manager and handle all tasks about session and not gonna using http session that can find in a servlet engine. Any one has tried to make own session manager ? === thx, a Java Addi

JavaMail with attachments

2002-02-25 Thread Rodelio A. Pagui
Hi, all! I hope somebody can help me out on how to handle attachments with JavaMail. Thanks. Rodel === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with b

Re: Taglib in Tomacat.

2002-02-25 Thread Hans Bergsten
Smita Kotnis wrote: > Hi thanks for reply, > > I fear, my mail server is adding the backslashes. I actually have not added these in >my code. I tried with your suggestions and still it is not working. I have put my jar >file in this path, > E:\\jakarta-tomcat-3.2.3\\webapps\\skillset\\WEB-INF\\

Bean not returning entire string

2002-02-25 Thread Means, Garann R.
Hi, I have a page that used to work perfectly and broke when I changed a few if statements (approximately). Now I can't get 's to work, and one of my beans is returning a very bizarre result. This is the call to the bean from the jsp: ... <% sColl = mkDate.newDate(); %> ... <%= sColl %> And t

Re: Calling a jsp page from a servlet...

2002-02-25 Thread ShriKant Vashishtha
Hi, The JSP specification clearly states that the url to which you want to forward should be in the same servlet context. Hence, it will not be possible to use forward() method in your case. The only method, that can be used is response.sendRedirect(). -ShriKant "Shahata, Ashraf" wrote: > Hi a

Re: JSP I/O error

2002-02-25 Thread ShriKant Vashishtha
I think the package should start with com. In current situation, the JSP engine is trying to find beans.DataBean which does not exist. -ShriKant Mark Stray wrote: > Hi, > > Can anyone help me out here. This is the error I receive. > > org.apache.jasper.JasperException: Unable to compile class f

Re: Removing cookie!

2002-02-25 Thread Sami Saul
cookie.setMaxAge(-1); // cookie is deleted when the browser is closed. response.addCookie(cookie); - Original Message - From: "It, Cockpit (CAP, Contractor)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 25, 2002 10:48 Subject: Removing cookie! > Dear Friends, > I

Removing cookie!

2002-02-25 Thread It, Cockpit (CAP, Contractor)
Dear Friends, I have set cookies in my web site. If I want to log out the user I have to remove the cookie manually, right..? How do I do that in JSP? I am not able to overwrite the cookie using "" value. Please help me. Yogaraj "THIS E-MAIL MESSAGE ALONG WITH ANY ATTACHMENTS IS INTENDED ONLY FO

Re: Taglib in Tomacat.

2002-02-25 Thread Smita Kotnis
Hi thanks for reply, I fear, my mail server is adding the backslashes. I actually have not added these in my code. I tried with your suggestions and still it is not working. I have put my jar file in this path, E:\\jakarta-tomcat-3.2.3\\webapps\\skillset\\WEB-INF\\lib is it okay? Is this is th