Re: What is equivalent of EJB in ASP?

2001-08-20 Thread Chandra Patni
There is nothing in M$ suite which comes close to EJB. COM+ with DNA is something similar to EJBs. But as you know they are great software with great security features. Regards, Chandra The statements and opinions expressed here are my own and do not necessarily represent those of Oracle

Re: code Security in java

2001-08-14 Thread Chandra Patni
Hello Hari, You can make your classes impossible to reverse engineer or unjar, by encrypting them using an 'vanishing key' algorithm proposed by Prof Michael Robin. It is mathematically proven that you can't break it while all the algorithm like RSA, DES can be broken theoretically. But what

Re: Designing problem

2001-08-03 Thread Chandra Patni
check out this standalone opensource app which is cute and cool. http://isql.sourceforge.net/ Regards, Chandra The statements and opinions expressed here are my own and do not necessarily represent those of Oracle Corporation. -Original Message- From: A mailing list about Java Server

Re: regarding java mail

2001-07-24 Thread Chandra Patni
You can find a lot of examples either at JavaMail page at Sun site or jguru.com FAQ for javamail. For example, see the following link http://www.jguru.com/faq/view.jsp?EID=30251 Regards, Chandra Discliamer: The statements and opinions expressed here are my own and do not

Re: Dynamic PDFs

2001-07-06 Thread Chandra Patni
see FOP prject at xml.apache.org regards, Chandra The statements and opinions expressed here are my own and do not necessarily represent those of Oracle Corporation. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On

Bigfoot LDAP queries

2001-07-05 Thread Chandra Patni
Hello, Does anyone cann tell me what are the ldap schema queries for bigfoot. Regards, Chandra -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Frank Mancini Sent: Thursday, July 05, 2001 8:46 AM To: [EMAIL

Re: Best way to load up a connection pool?

2001-07-05 Thread Chandra Patni
No they are not the same. ServletContext is application variable in jsp Regards, Chandra The statements and opinions expressed here are my own and do not necessarily represent those of Oracle Corporation. -Original Message- From: A mailing list about Java Server Pages specification and

Re: Please wait how to ???

2001-06-13 Thread Chandra Patni
secs until your FormProcessingBean is done. Of course, FormProcessingBean has to process the request in a separate thread of execution. Regards, Chandra Patni Oracle Corp -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED

Re: How to get rid of objects ( beans) when the user abandons the sit e

2001-06-13 Thread Chandra Patni
will NEVER suggest you finalize() method to do some 'smart things'. By overriding finalize(), you are effectively increasing the life of the object as GC now has to deal with this object at least twice. Regards, Chandra Patni Oracle Corp -Original Message- From: A mailing list about Java

Re: Who know how to create a Connection Pool in Java?

2001-06-13 Thread Chandra Patni
. The datasource object may be JNDI administered object which facilitate vendor agnostic code. Additionally, it is recommend method over DriverManager.getConnection() which is may potentially deprecate in future. Regards, Chandra Patni Oracle Corp -Original Message- From: A mailing list about

Re: How to get rid of objects ( beans) when the user abandons the sit e

2001-06-13 Thread Chandra Patni
ratio. You can be pretty sure to see very good performance inspite of the fact that you are creating lots of object. I don't mean that you create lots of objects to get better performance :). Regards, Chandra Patni -Original Message- From: A mailing list about Java Server Pages specification

Re: Who know how to create a Connection Pool in Java?

2001-06-13 Thread Chandra Patni
for pool oraclePool_JMINI At 01:26 PM 6/13/2001, Chandra Patni wrote: With JDBC 2.0, you don't have to resort of 3rd party pooling classes. A preferred way of using connection pool object is to use JDBC2.0 optioanal package compliant driver (Oracle driver complies with these spec) and the create