Re: JSP Server with IIS

2000-12-22 Thread PIYUSH NIGAM
Try www.allaire.com Piyush Nigam [EMAIL PROTECTED] -Original Message- From: suying [mailto:[EMAIL PROTECTED]] Sent: Friday, December 22, 2000 12:05 PM To: [EMAIL PROTECTED] Subject: Re: JSP Server with IIS Hello,Can you tell me where to get jrun3.0 and configure it with IIS? suying

Re: double value 10.20 -10.00 = ?? HELP!

2000-12-22 Thread Breskovac Mario
I have the same problem with C++ program! I compiled with Borland C++ 5.5 compiler. float a = 100.20; float b = 100.00; float c = a - b; Result of c is 0.1875 We tried this on the same machine but on Linux operating system. Same problem with Java

Java Date Class problem

2000-12-22 Thread Senaka Suriyaarachchi
Hi All I tried to show drop down list with next 30 dates. but it doesn't work. It correctly add up to 25 days after that it show previous days. Please advice me. BR Senaka !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" %@ page language="java" import="java.sql.*, java.util.Date"%

Re: JSP Server with IIS

2000-12-22 Thread Gebriel George
hi it is like this .in the post increment operation in question has the following sequence * value of i is fetched and stored in a temporary place *original i is incremented *temporarily stored value is used in the assignment operation further changing i's value ok "Balkrishna R.Parab"

Re: Java Date Class problem

2000-12-22 Thread G.Nagarajan
Hi, Use the java.util.Calendar class instead of the Date class. It has methods for incrementing by date, month or year. For example you can give Calendar cal = Calendar.getInstance(); cal.add(Calendar.DATE, 5); Hope it helps, Nagaraj. -Original Message- From: A mailing

Using Tomcat webapps with JRun

2000-12-22 Thread G.Nagarajan
Hi, I have not tried JRun before. I have used tomcat 3.1 with IIS. It works fine but now and then the browser shows "file not found jakarta/isapi_redirect.dll". The problem is either with IIS, isapi_redirect.dll or tomcat. I just want to know if anyone has solved the above problem. I also want

Fran Bocain/CHASE is out of the office.

2000-12-22 Thread FRAN . BOCAIN
I will be out of the office from 12/22/2000 until 01/02/2001. I will respond to your message when I return. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL

Re: JSP Server with IIS

2000-12-22 Thread Srinivas K. R.
I think it is because of the post increment operator that is incrementing i and the assignment is happening before increment. so it is printing the value of i which is 0 . - Original Message - From: Balkrishna R.Parab [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 22,

Database is freaking out!!!!

2000-12-22 Thread Panos Konstantinidis
Hello there. I have written a jsp file that opens a connection with a database on the local network. This database has a table (lets say users) that has two fields (lets say created and last_cist)of type timestamp(14). I have a login and a registration form for the user. The first time the user

Re: JSP Server with IIS

2000-12-22 Thread Balkrishna R.Parab
Thankx "The beauty of life does not depend on how happy you are but on how happy others can be because of you" -Original Message- From: Gebriel George [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, May 10, 2000 1:59 AM To: [EMAIL PROTECTED] Subject: Re: [JSP-INTEREST] JSP Server

Database freaked out!!!!

2000-12-22 Thread Panos Konstantinidis
To my previous message I sent about the database. The problem solved. I set the type of the field to DATETIME instead of TIMESTAMP. _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

To compile JSP into Servlets

2000-12-22 Thread Pau GarcĂ­a
Hi all, We have just developed a JSP-based web site but we need to place it in a Server which does not support JSP, only Servlets. We use Tomcat's JSPC to compile JSP and Java Beans into Servlets and we get many ClassNotFound errors. Once added Java 2 Enterprise Edition classes to the

Re: double value 10.20 -10.00 = ?? HELP!

2000-12-22 Thread paul
u.. Finite precision variables I have the same problem with C++ program! I compiled with Borland C++ 5.5 compiler. float a = 100.20; float b = 100.00; float c = a - b; Result of c is 0.1875 We tried this on the same machine but on

Java/JSP Tips

2000-12-22 Thread Panos Konstantinidis
I found this while serfing the net (from JavaWorld): http://www.javaworld.com/javaworld/javatips/jw-javatips.index.html It has got some really nice tips of how to write more efficient code and how debugging can be easier. It is worth taking a look. Panos

Slightly off topic

2000-12-22 Thread Nitin Tomer
Hi Guys, I am using Apache 1.3.9 web server and am not able to share a directory through http. The directory is not in my virtual root i.e. htdocs folder of apache, is there any way I can access this dir via http. (I tried to make some changes in httpd.conf but nothing doing), pl help me out.

Re: double value 10.20 -10.00 = ?? HELP!

2000-12-22 Thread Doug Turner
This is seriously off-topic. Try reading up on binary vs. decimal arithmetic. As other posters have found, this is not a problem with Java, but it isn't a "bug" in Pentium processors either. As for solving your problem, to display the number in the proper format, check out the DecimalFormat

Re: Database is freaking out!!!!

2000-12-22 Thread Daryani Santosh
What does your update statement look like. ? Are you specifying and Insert or an update ? What are you using to update the tables , is it a entity bean ? Santosh Panos Konstantinidis [EMAIL PROTECTED] on 12/22/2000 04:28:26 AM Please respond to A mailing list about Java Server Pages

Re: arrays

2000-12-22 Thread Shirley Chen
Thanks everybody, I finally find the error. You are right, Doug, it is not in the code I send you. I have the error when I collect the data. I really appreciate all your help. --Shirley From: "Doug Turner" [EMAIL PROTECTED] Reply-To: "Doug Turner" [EMAIL PROTECTED] To: "A mailing list

running code at server

2000-12-22 Thread sumit shah
hi all, i want to run some script on the server in backend while a jsp page is being processed. I wnat both of them to run at same time. how cna this be done. thanks in advance, Sumit _ Get your FREE download of MSN Explorer at

jsp:setProperty/ Custom Type

2000-12-22 Thread Dean
Hello, The spec seems to say that jsp:setProperty / will try to set any property (in addition to the types in table 4.1) from a string in the value attribute or request parameter if a PropertyEditor with a setAsText() method can be found for that type. I've tested a bean and property editor and

Re: Database is freaking out!!!!

2000-12-22 Thread Kai Hackemesser
If your mySQL table has a timestamp field and you update or insert a row without setting a value to the timestamp field, it will be set to actual time. This is valid for the first timestamp field only if there are more than one in a table. This is documented in mySQL documentation. Kai

Re: jsp:setProperty/ Custom Type

2000-12-22 Thread Hans Bergsten
Dean wrote: Hello, The spec seems to say that jsp:setProperty / will try to set any property (in addition to the types in table 4.1) from a string in the value attribute or request parameter if a PropertyEditor with a setAsText() method can be found for that type. I've tested a bean and

Re: jsp:setProperty/ Custom Type

2000-12-22 Thread Dean
Thank you very much, Hans. You refer to the draft of the JSP 1.2 specification. The currently released specification is JSP 1,1. and I'm pretty sure that's the version JRun supports. You're absolutely right; I've been looking at the 1.2 draft and didn't think to look back at 1.1. It has

help needed with Apache-Jserv installer

2000-12-22 Thread Sushma.R
Hi guys, I have been trying to configure Tomcat and Apache together.It says that I will have to download a Apache-Jserv installer from the site http://java.apache.org/jserv/dist/ If i go there I have no idea which to use for Windows-2000 system. It tells "For Apache JServ 1.0b5 the installer is

Re: help needed with Apache-Jserv installer

2000-12-22 Thread Straight, Christian
Sushma, I've been able to successfully install and run Apache/Tomcat on a local NT box as follows: 1. download and install Apache 2. download Tomcat from http://jakarta.apache.org using the Release Build for Windows: jakarta-tomcat.zip 3. download the WIN32 connector DLL from the

Re: Java Date Class problem

2000-12-22 Thread Nova Bhojwani
PLEASE USE GREGORIAN CALENDARTHERE IS A FUNCTION KNOWN AS GETMONTHS.USE THAT. --- Senaka Suriyaarachchi [EMAIL PROTECTED] wrote: Hi All I tried to show drop down list with next 30 dates. but it doesn't work. It correctly add up to 25 days after that it show previous days. Please

Re: double value 10.20 -10.00 = ?? HELP!

2000-12-22 Thread Brad Wilson - BTWeb Enterprises
This appears to be a case of a phenomenon called "Subtractive Cancellation" - 2nd year computer science mathematics stuff. When a floating point number is subtracted from another on a binary machine, the error is many times greater than when performing any of the other three basic arithmetic