Re: A basic doubt

1999-12-23 Thread JChen
I don't know "is there anything that CAN be done by a SERVLET but not by a JSP? " It is about design strategy, you may take a look at "... In my opinion, this approach typically results in the cleanest separation of presentation from content, leading to clear delineation of the roles and respon

Re: Error compiling a custom tag

1999-12-23 Thread Praveen Kumar S .
The problem is pretty simple, you "extend" a "class" you "implement" a "interface" see the basic java tutorials about classes & interfaces, for further info about interfaces Amit > -Original Message- > From: SUBSCRIBE JSP-INTEREST Noj [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, December

Help on JRUN Error Message

1999-12-23 Thread Moonim Masaoud
Hi, I am using JRun 2.3.3, along with Apache Web Server 1.3.9. I have a HTML which takes in some user input via a Form and calls a JSP upon submitting. In that that JSP I have some checks which if fail forward to another JSP. This JSP works fine but displays a message below, which is as follows :

Error compiling a custom tag

1999-12-23 Thread SUBSCRIBE JSP-INTEREST Noj
Hello, I use Apache 1.3.9, JDK 1.2, RESIN 1.1b4 (JSP) When i try to compile my Test.java file who defines a custom tag, i get this error : Can't subclass interfaces: interface javax.servlet.jsp.tagext.Tag public class Test extends Tag { Doers anybody know why ? Thanks - Noj

A basic doubt

1999-12-23 Thread Srihari Chandana
Hi friends, Iam quite comfortable using java and jsp.We(me and my team mates) developed a web application using jsp and beans.In that we never found the need to write a servlet(as the jsp creates one).My doubt is, when we create a web application, is there anything that CAN be done

Re: Writing cookie in jsp

1999-12-23 Thread Praveen Kumar S .
hi, I have tested it cross platform, i am sure it is not a browser bug the problem does not arise in the JS nor in the JSP it might probably be a Servlet Bug, as I had done it a long time back, I have not tried it lately as I stopped my dependance on JavaScript to work in the first place, cal

extends attribute in jsp

1999-12-23 Thread jang eui jin
Hello I want to make a super class handling session from which jsp pages can be extended. I don't want to put session related code to every jsp. But, I don't know how to do. I long for help! E.J. Jang === To unsubscribe:

Re: Error getting compiled page

1999-12-23 Thread Memon Mohamed Ashraf
Try checking on JSP version 0.92 or 1.0, if you are using 0.92 then your statement with page directive would not work, Secondly goto java.sun.com site and get the JSP card, it is very helpful... HTH > Remain Kooo.., > Mohamed Ashraf Memon > Advanced Micro Devices (Singapore) > TEL : 796

JSP docs/DB connections

1999-12-23 Thread John Holland
I'm looking for info on programming JSP, especially connecting to databases. I see in the Sun guides that there are sugggested ways but no reusable components to connect JSP via JDBC. I guess this is what makes WebLogic such a big deal. Does anyone have recommendations of information and ways to

jrun error log

1999-12-23 Thread Guilherme - PerConsult
Can anyone tell me where the error log can be find into JRun 2.3? I was using the jswdk kit from Sun, but now I have to use JRun... I don`t know where to find the error that are in my jsp file, to debug... Well.. thank you, Guilherme dos Santos Tsubota _

Re: JSP Sites

1999-12-23 Thread Tolliver Reva
Venky, Thank you!!! The sites you suggested were very useful. They pointed me to a very good IBM external site: http://www.ibm.com/developer/ That site has on-line tutorials with audio and labs, and tools all for FREE!!! Thank you soo very much for your help. Thanks to everyone else who s

Re: OFF TOPIC: SQL

1999-12-23 Thread Sylvain Roche
I think the mm driver for mysql does support this... You should consider taking a look at www.mysql.org Computers are like air conditioners - they stop working properly when you open Windows UNIX _IS_ user friendly. It's just selective about who its friends are. _

Re: Servlets and JSPs

1999-12-23 Thread Reg Sherwood
Thanks all, I think I have found the problem. It appears that the JRun 2.3.3 webserver that I was using was configured incorrectly. In the mapping table used by JRun the following was found. *.jspInvoked: jsp *.jsp10 Invoked: com.livesoftware.jsp.JSPServlet I renamed the "thepag

JSPs and Sessions

1999-12-23 Thread Reg Sherwood
Q. Is it correct to assume that the JSP engine looks on the request object (eg: HTTPServletRequest) when attempting to retrieve the value of a previously set object for a given session. For example: <%@ page import=".MyClass.*" %> <%= model.getName(0) %> Is there a way to indicate to the J

Re: jsp in a javascript

1999-12-23 Thread Sergio Queijo Diaz
>I needed to use a jsp inside a javascript, for example: > > > >function ... >... >... > ><%= variable%> > >... > > >Is it possible? How? Yes, you can. The only you need is initiate the variable, and give it a value. >Thanks, > > Guilherme dos Santos Tsubota -- Saludos: Sergio Queijo Diaz [E

jsp in a javascript

1999-12-23 Thread Guilherme - PerConsult
I needed to use a jsp inside a javascript, for example: function ... ... ... <%= variable%> ... Is it possible? How? Thanks, Guilherme dos Santos Tsubota _ Perrotti Informatica - PerConsult Sao Paulo - SP - Brazil ==

Re: Web Host or ISPs who support JSP + database technology

1999-12-23 Thread Corey A. Johnson
Hello, I know this does not help your immediate situation... but i am a VP of Technology of a medium size hosting company. We do a lot of Java/C++/SQL custom development. Anyway... we are working on a service/community for JSP/J2EE developers. We are going to try and price all the J2EE/eBusin

JSP FAQ & Resource Information

1999-12-23 Thread Anil K. Vijendran
This is a weekly informative posting to the jsp-interest list. Before asking questions of a general nature, please check out the resources available online to see if your question already has an answer. The best place to start

Re: Writing cookie in jsp

1999-12-23 Thread acidzazz
Hi, If you can read the cookies from the jsp/servlets you've added from javascript, there may be some reasons. I think, 1. The path of Cookie : if you didn't set the path of cookies, then you could only see the cookies in the same path the cookie-writing page resided in. 2. The order of jav