Re: url rewriting for sessions

2000-08-16 Thread Joe Hanink
> > > > If you don't want to go through the hassle, just use cookies and tell you users to > > accept them. IMHO they are absolutely no scurity risk. > > > > -hendrik > > - - - - - - - - - - - - - - - - - - - - - - - - - - - > > tagtraum industries http://www.tagtraum.com/ > > jo!

MultipartRequest

2000-08-16 Thread Joe Hanink
I am unable to find MultipartRequest in the SDK1.3 nor in J2EE. is this in an extension? can someone point this out for me. thx -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Sundeep Goswami Sent: Wednes

Tag Libraries

2000-08-16 Thread Joe Hanink
I got good info on url encoding. Next Question: Tag Libraries Tag Libraries seem to be an excellent way of separating business logic from presentation withing JSP. After implementing the class that extends TagSupport and making the XML tag descriptor, are you then ready to use the tag after es

Re: JDBC - recordcount

2000-08-16 Thread Joe Hanink
I see no method in JDBC 2.0 that retrieves record count directly, either from a ResultSet or a RowSet. If this exists, please name the function. in a TYPE_SCROLL_SENSITIVE resultset, the record count could indeed change during its lifetime, so I can see how this might impose some limitations on

Re: How to limit charecters

2000-08-16 Thread Joe Hanink
textfields in HTML can have a character limit imposed like this: the maxlength attribute will not allow a user to type more than 3 characters. If you don't want to impose a limit of typed characters but would rather validate the length of the field value, using javascript is good for this, bu

Re: bit off topic - HELP on books

2000-08-15 Thread Joe Hanink
I've been reading Professional JSP (May 2000), covering Servlets 2.2, JSP 1.1, Beans, Tag Extensions, XML, etc. It started off rather lightly, but got going very nicely by chapter 5. The treatment of JDBC and connection pooling was insightful, and the tag library information seems excellent. --

Re: JDBC-ODBC and NULL

2000-08-15 Thread Joe Hanink
using NT, SQL Server 7, and JDK1.3, getString on a null valued varchar field evaluated successfully. import java.sql.*; public class SqlThis { public static void main(String args[]) { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

url rewriting for sessions

2000-08-15 Thread Joe Hanink
Questions about URL Rewriting: what exactly is this and how is it done? what does the server do, and what is programmed? i've read that sessions tied to cookies can fail due to client side settings. url-rewriting was indicated as the workaround. do you build an adapted url or is it automated b

Re: JDBC - access order of fields

2000-08-15 Thread Joe Hanink
The Java 2 SE v.1.3 says this of the ResultSet interface: "For maximum portability, result set columns within each row should be read in left-to-right order, and each column should be read only once." This would indicate some drivers (in this case, JDBC-ODBC) do not support bi-directional column

Re: Behavior of the implicit session object?

2000-08-10 Thread Joe Hanink
the session is tied to a browser session. hence, when u close the last browser instance on a machine, ur session ends. that's why closing and opening reinitializes ur variable. as for why two different machines were experiencing the problem u describe, i have no idea -Original Message-

Re: JSP on IIS? Possible?

2000-04-28 Thread Joe Hanink
-Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Joe Hanink Sent: Friday, April 28, 2000 9:49 PM To: [EMAIL PROTECTED] Subject: Re: JSP on IIS? Possible? The JRUN install gives the option to create an IIS

Re: JSP on IIS? Possible?

2000-04-28 Thread Joe Hanink
The JRUN install gives the option to create an IIS connector. This will allow you to serve JSP pages from your IIS web directories as long as your JRUN services are running. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECT

Re: JSP on IIS? Possible?

2000-04-28 Thread Joe Hanink
yes, you'll need an IIS connector. One is provided with the free Allaire JRUN at www.allaire.com the connector is configurable during installation. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Ca

Re: newbie to JSP

2000-04-28 Thread Joe Hanink
http://java.sun.com/products/jsp/jsp-asp.html -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Brown, Sam Sent: Friday, April 28, 2000 8:29 AM To: [EMAIL PROTECTED] Subject: newbie to JSP Hello, Has anyon

Re: A compilation question

2000-04-28 Thread Joe Hanink
the Package javax.servlet.http package is supported by a number of development kits. Look for where you installed your kit and look for the lib subdirectory. with jsdkee1.2, the lib directory contains j2ee.jar, which contains the servlet classes. I therefore include j2ee.jar in my classpath. i

Re: using a concatinated string as a variable

2000-04-28 Thread Joe Hanink
you can approximate this by creating a structure that mimics an associative array. use a HashMap to define key/value pairs. keys can be an arbitrary object type, such as string -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PRO

Re: A compilation question

2000-04-28 Thread Joe Hanink
did you include the jswdk installation in your classpath? -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Charles Tam Sent: Thursday, April 27, 2000 11:38 PM To: [EMAIL PROTECTED] Subject: A compilation que

Re: DATE IN JAVA

2000-04-27 Thread Joe Hanink
import java.util.*; public class DateTest { static { String date = new Date().toString(); System.out.println(date); System.exit(0); } } -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf O

Re: DATE IN JAVA

2000-04-27 Thread Joe Hanink
String date = java.util.Date().toString(); -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Munish Talwar Sent: Thursday, April 27, 2000 2:31 PM To: [EMAIL PROTECTED] Subject: Re: DATE IN JAVA Thanks a lo

Re: DATE IN JAVA

2000-04-27 Thread Joe Hanink
To: [EMAIL PROTECTED] Subject: Re: DATE IN JAVA Thanks for the reply Is this going to work if I want to assign todays date to a variable. Thanks -Original Message- From: Joe Hanink [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 27, 2000 4:41 PM To: [EMAIL PROTECTED] Subject: Re: DATE

Re: DATE IN JAVA

2000-04-27 Thread Joe Hanink
out.println(new Date()); -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Munish Talwar Sent: Thursday, April 27, 2000 1:03 PM To: [EMAIL PROTECTED] Subject: DATE IN JAVA Hi, Can anybody tell me how can I

Re: Need some help

2000-04-27 Thread Joe Hanink
http://java.sun.com/products/jsp/docs.html http://java.sun.com/products/jsp/ -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Mukka, Srikanth (GEA, 097902) Sent: Thursday, April 27, 2000 9:38 AM To: [EMAIL P