Re: where to put bean class files in weblogic

2000-11-17 Thread Dengler Martin
please provide more info send us the exact useBean - Tag in your jsp-source Greetings md -- Sent through GMX FreeMail - http://www.gmx.net === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For

Re: keeping track of user connections

2000-11-17 Thread Dengler Martin
Hi, sorry, but HTTP is a stateless Protocoll. after a client-request is answered by a server, the transaction is finished. if the user logs in and forgets to log out, u can do nothing about it, but wait for timeout. Greetings md -- Sent through GMX FreeMail - http://www.gmx.net ===

Re: setting null in the database field using prepared statement

2000-11-13 Thread Dengler Martin
please take a look at Java 1.3.0 API: class java.sql.Types: The class that defines the constants that are used to identify generic SQL types, called JDBC types. The actual type constant values are equivalent to those in XOPEN. This class is never instantiated. u may use it like this: PreparedSta

Re: SSL

2000-11-10 Thread Dengler Martin
u absolutly right Doug, SSL must be handled by Web Server Greetings MD -- Sent through GMX FreeMail - http://www.gmx.net === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs o

Re: << Why Java Beans or Servlets ?? >>

2000-11-08 Thread Dengler Martin
hi, i think the question is: should u use jsp or servlet tech. with both u can use beans, which are reusable, selfwritten classes. beans are used to separate your logic from presentation. maybe check out tutorials at java.sun.com regarding jsp, servlet: http://developer.java.sun.com/developer/on

Re: prepared statement problem

2000-11-08 Thread Dengler Martin
hmm, ResultSet executeQuery(): Executes the SQL query in this PreparedStatement object and returns the result set generated by the query. taken from Java 2 V 1.3.0. PreparedStatement - Interface maybe take a look again: Interface PreparedStatement, package java.sql greetings MD --

Re: prepared statement problem

2000-11-08 Thread Dengler Martin
hi, one way is to create a PreparedStatement like this: SELECT name, age FROM student WHERE stud_no = ? then stud_no.length tells you, how much values are there now you can execute the PreparedStatement in a for loop Other way is to use a normal SQL-Statement, which creates the WHERE-Cause by

Re: My DB Bean

2000-11-07 Thread Dengler Martin
hmmm, look like u got a path-problem, check out if u set them correctly greetings md -- Sent through GMX FreeMail - http://www.gmx.net === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some re

Re: JSP connects to DB

2000-11-07 Thread Dengler Martin
hi, both methods are possible, although it is could style to separate your application-logic (db-access) from your presentation logic (html). This is the benefit of a java bean, which u should use in this case for db-access. greetings md -- Sent through GMX FreeMail - http://www.gmx.net =

Re: JSWDK configuration

2000-10-30 Thread Dengler Martin
if u want to use a dir withing the jswdk-dir, where u put your own beans/servlets, just edit the startserver.bat and add the path of your new createt dir (path to your beans, servlets), then it works if u got any questions concerning jswdk - configuration just contact me greetings martin -- Se

Re: servlet path?

2000-10-05 Thread Dengler Martin
try to run example servlets and jsp-pages of the devkid. take a look at WebServer configurationfile (webserver.xml in root dir of jswdk-1.0.1, and the configuration files for servlets so long martin -- Sent through GMX FreeMail - http://www.gmx.net =