Re: finally, something interesting!

2000-11-22 Thread Mark Jorritsma
Use an interface Create an interface lets call it 'Showable' for example public interface Showable { void doShow(); } Have A, B and C implement this interface ... for example: public class A implements Showable { ... public void doShow() {

Re: Problem calling Oracle

2000-10-26 Thread Mark Jorritsma
Hi, You spelled Exception wrong in 'catch (SQLExecption e) {}' Mark -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of John Pallozzi Sent: Thursday, October 26, 2000 11:07 AM To: [EMAIL

Re: Servlets vs JSP

2000-09-15 Thread Mark Jorritsma
is the list still alive? Haven't got any mail in two days. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Venu Gopal Sent: Wednesday, September 13, 2000 7:54 PM To: [EMAIL PROTECTED] Subject:

Can't connect to oracle Db

2000-07-06 Thread Mark Jorritsma
Hi everyone, I am having a problem connecting to an oracle Db. I am getting the following error message back. java.sql.SQLException: Refused:OR=(CODE=12500)(EMFI=4))(ERROR=(CODE=12547)(EMFI= 4))(ERROR=(CODE=12560)(EMFI=4))(ERROR=(CODE=517)(EMFI=4))(ERROR=(BUF='' at

JavaScript/JSP problem

2000-06-15 Thread Mark Jorritsma
What we have tried to do is add some JavaScript logic to a JSP to check user input in a text box on key events such as keypress, keydown and keyup. Using static HTML with JavaScript it works fine in both Netscape 4.5 and IE 4.0. When used in a JSP netscape completly ignores the key events but

Re: Need Urgent Help needed regarding JSP Beans

2000-03-16 Thread Mark Jorritsma
set the scope="session" in the bean tag in all three jsp's then it should only get instantiated the first time you hit one those jsp's -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Vinay Kulkarni