Re: Client Date

2001-09-04 Thread Dinesh Somasundram
Thanx, That makes sense. Dinesh, S. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of SriHari Sent: Tuesday, September 04, 2001 12:07 PM To: [EMAIL PROTECTED] Subject: Re: Client Date Hi Why dont u store

Client Identification in JSP

2001-09-04 Thread M Sankar
Hi How to handle client identification while using JSP. The scenario is that we should know that the same client is using the JSP 's to send a request? We can get this done by prividing some unique ID which changes with every response. But this id should be stored on the client side not on the

Problem using jsp:forward to servlet. IllegalStateException.

2001-09-04 Thread LouisVoo
Hello, I have a jsp page which will forward to the servlet. The servlet will generate a pdf file and then using the response.getOutputStream() to write the pdf file. So the user can download the pdf file. My problem is when I using response.getOutputStream() in my servlet class, I got

Re: jni c/c++ calls from java

2001-09-04 Thread Joseph Ottinger
The performance points of C++ typically aren't much better than Java, although your results may vary on the specific application and your skill at coding. As far as whether JNI or out-of-process calls are more efficient... I'd say using JNI is much harder to DO (in terms of maintenance time) but

Re: jni c/c++ calls from java

2001-09-04 Thread SriHari
Hi Pl Correct me if i am wrong what i am trying to do is to use java runtime /or ... to execute a exe file which stores all the system level parameters and information in a encoded file which will be called by jsp script pages (jsp project) will this process help me any way of hiding my

AW: jni c/c++ calls from java

2001-09-04 Thread [Your Full Name]
Hi SriHari, hier are some URL: http://www.javaworld.com/javaworld/javatips/jw-javatip17.html http://www.javaworld.com/javaworld/jw-11-2000/jw-1110-proxy.html? http://www.javaworld.com/javaworld/jw-07-1997/jw-07-javadev.html? -Ursprüngliche Nachricht- Von: SriHari [mailto:[EMAIL

Re: Problem using jsp:forward to servlet. IllegalStateException.

2001-09-04 Thread Chitra Muthukrishnan
Hi Louis, if the page output is unbuffered and if you try to write something, you will get this error. -M.Chitra www.3rdagenda.com At 10:58 AM 9/4/01 -0700, you wrote: Hello, I have a jsp page which will forward to the servlet. The servlet will generate a pdf file and then using the

dynamic cursor in sql

2001-09-04 Thread Niraj Soni
sorry for off topic i am deleting more than1 records from a single table now i have an log table i want to write log in log table now i want all records shoud be loggd in log table with one row for each when i use select @EmpName from deleted and user insert into log values ( @EmpName

Re: Page caching problem with JSP 1.1 on iPlanet 4.1

2001-09-04 Thread Rice, David
Set your browser to clear cache on every visit to the page. When you refresh by hand, in IE use CTRL+F5--in Nutscrape I think it's CTRL+R or something like that. Also, there are PRAGMA No-Cache commands you can use in the browser. David -- -Original Message-

Server Authentication

2001-09-04 Thread Lemonte Squibb
I have an IIS Server 5 with UserAuthentication running. What I need is for my JSP Page to automatically pass a username and password to the server so it'll allow the data to come through. Ex. http://hostname/images/1/2/3/imagename.tif will issue a NT challenge response for username and

JDBC, MS-SQL server and mySql

2001-09-04 Thread Alireza Nahavandi
Hi All, Is there any free JDBC out there for SQL-server? if not what is a good one to buy? did you find MySql a reliable database? Thank you. === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST.

Re: JDBC, MS-SQL server and mySql

2001-09-04 Thread Richard Yee
Alireza, Check this link out: http://archives.java.sun.com/cgi-bin/wa?S2=jsp-interestq=free+JDBC+drivers=f=a=b= I personally have MySQL running and find it to be very good. How suitable it is depends on what you want it to do and what the requirements of your installation are. Regards,

Re: JDBC, MS-SQL server and mySql

2001-09-04 Thread Jim Rueschhoff
A good one that is not free is J-netdirect's JSQLConnect if you are looking for a pure java solution and their JDataConnect is you can use a type 3 driver instead. They work well. I am not connected in any way to netdirect. There are many other good drivers out there as well. Do not use the

simple compiling question

2001-09-04 Thread sufi malak
Hi, I have a java file called db.java: C:\mydownload\dir1\dir2\unjar\db.java db.java needs classes already compiled in : C:\mydownload\dir1\dir2\unjar\com\dir3\java classes C:\mydownload\dir1\dir2\unjar\com\dir4\java classes 1)How to compile db.java ? 2) I have jbuilder, but never use it, what

Re: tomcat with apache??

2001-09-04 Thread Alex
Hi Hugo, Did you try using mod_jk instead of mod_jserv by including following line in appache's httpd.conf: Include TOMCAT_HOME/conf/mod_jk.conf-auto Note: I am using dispatcher architecture for my web applications where I have a controller servlet mapped to an url (via web applications's

Re: tomcat with apache??

2001-09-04 Thread Emir Alikadic (ADNOC IST)
It's actually rather simple: 0. Download the latest Tomcat (3.2.1 or later) 1. Download the mod_jk instead of the *deprecated* mod_jserv 2. Follow the Tomcat/Apache integration docs included with your Tomcat distribution mod_jserv has been deprecated for quite some time now in favour of mod_jk

Re: list all files

2001-09-04 Thread Roger Sutro
Hi: I was also looking for this code, and found ARUN's example, so I put it in a servlet. Thanks, Roger import java.io.*;import java.text.*;import java.util.*;import javax.servlet.*;import javax.servlet.http.*; /*** @author Roger Sutro, with FileListing code from [EMAIL PROTECTED]*/

Re: JDBC, MS-SQL server and mySql

2001-09-04 Thread Andrew Bruno
You might want to look at http://www.mycgiserver.com/~andrewbruno/howto/jsp/jdbc/testfreetdsjdbcty pe4driver.jsp.txt Its a simple JSP file that uses the tds.org JDBC driver I am using it in my development environment, and have not used it commercially (yet). I'd be interested to know if

Re: simple compiling question

2001-09-04 Thread Andrew Bruno
YOu would need to import the classes that you need, i.e. import com.dir3.*; import com.dir4.* :ab -Original Message- From: sufi malak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 5 September 2001 4:01 AM To: [EMAIL PROTECTED] Subject: simple compiling question Hi, I have a java file

File Upload in JSP

2001-09-04 Thread Naresh Chhuttani
Title: File Upload in JSP Hi, I want to upload file thru JSP, How can i select a file thru JSP from clients area and upload? Are there any classes to do uploading? If anyone knows pls let me know Thanks in adv, Naresh

RECORDSET TO array OR VECTOR

2001-09-04 Thread Andrew Bruno
Hello, I was wondering if anyone knows of any docs, or can give some ideas of the best way to convert a recordset into an array or vector so that the data may be referenced many times, even though the connection is closed. ON a side note, does anyone have information on storing data into

getting machineid( MACID) from Java or C++

2001-09-04 Thread SriHari
Hi SriHari here Can any one tell me how to get machine id(machine unique id ) nor N.T4/N.T5 from java /c++ code Pl send me some info Regards SriHari === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff

Re: File Upload in JSP

2001-09-04 Thread Smita Kotnis
Hi, You can use classes readly avilable. One such thing is JSP smart upload. You may go to the site, www.jspsmart.com for details, you need to put these class files in your application server path and it works. Hope this helps. Regards Smita Naresh Chhuttani [EMAIL PROTECTED]: Hi, I

Re: File Upload in JSP

2001-09-04 Thread Surender Rana
Title: File Upload in JSP please go to www.smartjsp.com there you will get an example related to it. thanks - Original Message - From: Naresh Chhuttani To: [EMAIL PROTECTED] Sent: Wednesday, September 05, 2001 9:34 AM Subject: File Upload in JSP Hi, I want

encryption in java

2001-09-04 Thread SriHari
Hi there can any one send me code to encrypt a string using a key passed by the user in java Its urgent Regards SriHari === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL

how do i pass data from servlet to jsp bean ?

2001-09-04 Thread chenghong
hi all, how do i pass data from servlet to jsp bean ? example in my servlet i have this object call config which is a hastable type.is it a way touse it in jsp bean and taglib program ? ignore this if there isn;t thanks.