Date and time parser

2002-05-27 Thread Gading
Hi, I have a timestamp object, obtain from DB using getTimestamp(date_time). output is something like 2002-05-27 14:17:00. How to get year, month, date, hour and minute in string (or int is also ok)? === To unsubscribe:

Re: IBM HTTP SERVER and JSP

2002-05-27 Thread Daniel Bergenhus
Yes, you have use an external servlet engine. - Original Message - From: M Sankar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 27, 2002 7:33 AM Subject: IBM HTTP SERVER and JSP Hi, How can I deploy JSP on IBM HTTP Server installed on an AIX box? There is not visible

Re: IBM HTTP SERVER and JSP

2002-05-27 Thread Daniel Bergenhus
Sorry ! looks like a word was missing.(to). Yes, you have to use an external servlet engine. - Original Message - From: Daniel Bergenhus [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 27, 2002 9:41 AM Subject: Re: IBM HTTP SERVER and JSP Yes, you have use an external

auto run

2002-05-27 Thread Kesav, Ramesh
Hi all, pardon me if it is out of topic. But i need this urgently. I have 2 folders say A and B. i need to copy the contents of A and its subdirectories into B. The copying should take care of the following things. 1) if the copied contents is the same as that of the already existing one

Re: auto run

2002-05-27 Thread Gunaseelan Nagarajan
hi, check out ANT, it copies only modified files while building. regards, Nagarajan On Monday 27 May 2002 11:02, you wrote: Hi all, pardon me if it is out of topic. But i need this urgently. I have 2 folders say A and B. i need to copy the contents of A and its subdirectories into B.

Re: auto run

2002-05-27 Thread Gading
Try robocopy from Nt4 reskit. It will mirror foledr A to B At 04:02 AM 5/27/2002 -0500, you wrote: Hi all, pardon me if it is out of topic. But i need this urgently. I have 2 folders say A and B. i need to copy the contents of A and its subdirectories into B. The copying should take care

Re: Date and time parser

2002-05-27 Thread Bhushan_Bhangale
Try like this:- Timestamp objTimestamp = getTimestamp(date_time) Calendar objCalendar = Calendar.getInstance(); objCalendar.setTime(objTimestamp.getDate()); int year = objCalendar.get(Calendar.YEAR); int month = objCalendar.get(Calendar.MONTH); int date = objCalendar.get(Calendar.DATE); int hour

Re: Date and time parser

2002-05-27 Thread Kesav, Ramesh
getDate() is deprecated. long lng = objTimestamp .getTime() Date date = new Date(lng); Calendar cal = Calendar.getInstance(); cal.clear(); cal.setTime(date); int yy = cal.get(Calendar.YEAR); if (yy 100)

Re: Date and time parser

2002-05-27 Thread Gading
At 05:21 PM 5/27/2002 +0530, you wrote: Try like this:- Timestamp objTimestamp = getTimestamp(date_time) Calendar objCalendar = Calendar.getInstance(); objCalendar.setTime(objTimestamp.getDate()); int year = objCalendar.get(Calendar.YEAR); int month = objCalendar.get(Calendar.MONTH); int date =

Help in JavaMail

2002-05-27 Thread Christian Hamann L
hi all I have a IMAP Server where i can watch my emails, but i wouls like to do an application which change my password, but i would like to know what class i should use atte Christian Hamann L. === To unsubscribe: mailto

Need help related to JSP + JDBC + Oracle !

2002-05-27 Thread Shamshad Alam
Dear All, I am using Tomcat 4.0, J2SDK 1.4.0 and Oracle 8i. The Operating system is Windows 2000. Both Oracle and J2SDK are in C:\ drive. I wrote a simple Java code which connects to Oracle database and updates it. The program is working absolutely fine. I compiled and kept the .class file of

signoff JSP-INTEREST.

2002-05-27 Thread [Mark Stray]
signoff JSP-INTEREST. ** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please

Re: Need help related to JSP + JDBC + Oracle !

2002-05-27 Thread LUIS BARRERA
I had a similar problem with a different RDBMS. Check if the WEB-INF/lib Tomcat directory contains the Rmijdbc.jar and any Oracle Jar files which contain the necessary drivers. That's how I fixed my problem. --- Shamshad Alam [EMAIL PROTECTED] wrote: Dear All, I am using Tomcat 4.0, J2SDK

Re: setProperty

2002-05-27 Thread Vikramjit Singh
failureBean.setUsername(config.getInitParameter(username)) Regards, Vikramjit Singh, Systems Engineer, GTL Ltd. Ph. 7612929-1031 -Original Message- From: Eric Cho [mailto:[EMAIL PROTECTED]] Sent: Monday, May 27, 2002 2:03 PM To: [EMAIL PROTECTED] Subject: setProperty Hello, What is

Case sensitive url

2002-05-27 Thread piyush jain
Hi Friends, I am facing peculiar problem, though menial but thought worth discussing. I have 2 jsps in folder Order (pl note case). 1st jsp can be called http://server/order/jsp1.jsp, without giving Order without matching case. The other jsp is called using http://server/Order/jsp1.jsp. here

Re: Need help related to JSP + JDBC + Oracle !

2002-05-27 Thread sagar arora
Hi Shamshad, You have two solutions to this problem : 1) Just copy the Oracle driver jar to common/lib directory of tomcat try. 2)In the tomcat.bat file specify the path in which your oracle driver islocated. This needs to be done because the tomcate 4.0 does not picks your system class

Re: Multiple file upload from browser in single operation

2002-05-27 Thread Patrick Riedel
See http://www.servlets.com/cos/javadoc/com/oreilly/servlet/MultipartRequest.htm l -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of asim chakraborti Sent: Monday, May 27, 2002 11:39 AM To: [EMAIL