passing array to bean from JSP - platform issues

2002-09-20 Thread Dave Deniman
I've a problem I can't seem to find anything about... I have a few JSPs with forms containing an array of input: Keywords 1) 2) 3) 4) 5) 6) 7) 8) I submit this form to a 2nd JSP for processing... The bean has a setter method which passes the

Multiple versions of Java in the same machine

2002-09-20 Thread Lorena Carlo
Hello, Does somebody know if I can use multiple Java Virtual Machines in the same server. What I want to know is if I can use a JDK 1.1.7 for certain applications and Java 2 for other applications, if it is possible, how can I do it. Thanks in advance for your help. Lorena ===

Re: Generation of 30 digit random number

2002-09-20 Thread Joseph Ottinger
www.opensymphony.com has a GUID generation class that doesn't generate thirty digit NUMBERS per se, but it does generate strings that could be mapped, if there's a requirement to specifically have thirty-digit numbers. >From: Geert Van Damme <[EMAIL PROTECTED]> >Reply-To: A mailing list about Ja

Re: websphere and JSP

2002-09-20 Thread Vipin Bhatia
when i have to enable the JSP Processor i only see 0.92 and 1.0, how do i add JSP 1.1 compiler? - Original Message - From: "Steven A. Martin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 20, 2002 6:41 PM Subject: Re: websphere and JSP > Websphere 3.5 supports 1.1.

Re: websphere and JSP

2002-09-20 Thread Steven A. Martin
Websphere 3.5 supports 1.1. Just add the JSP 1.1 compiler. - Original Message - From: "Vipin Bhatia" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 20, 2002 7:32 AM Subject: websphere and JSP I am deploying JSP's on websphere 3.5, but my JSP's use the i.e. nested p

Re: Generation of 30 digit random number

2002-09-20 Thread Geert Van Damme
A Real pseudo-random number? I mean with equal distribution, no autocorrelation, a 10^30 cycle. In that case, it's going to be difficult. You'll need to create your own RNG and I'm not sure that you'll find info on which primes and multipliers are good in that high range. However, if it just need

Generation of 30 digit random number

2002-09-20 Thread Arunkumar_N
Hello, In one of my application,I need to generate 30 digit unique number randomly. Is there any Java component which I can use ready made. Regards Arun ** This email (including any attachments) is intended for the s

Re: websphere and JSP

2002-09-20 Thread Zerbe John W
Upgrade your WebSphere to version 4.0 with fixpack 4. -Original Message- From: Vipin Bhatia [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 7:32 AM To: [EMAIL PROTECTED] Subject: websphere and JSP I am deploying JSP's on websphere 3.5, but my JSP's use the i.e. nested param

websphere and JSP

2002-09-20 Thread Vipin Bhatia
I am deploying JSP's on websphere 3.5, but my JSP's use the i.e. nested param tags in forward tag, this is not supported in JSP 1.0, but it is supported in JSP 1.1. The JSP Processor coming with WebSphere 3.5 is only JSP 1.0 complaint, how do i upgrade this to JSP 1.1 Looking forward to an im

Re: adding security to specific servlets

2002-09-20 Thread Joseph Ottinger
You could always use the servlet spec's built-in security, which is mandated by the spec spec. You can read the spec at http://java.sun.com/products/servlet/download.html#specs - it has the spec. In case you haven't grasped it, the spec has neat stuff in it. >From: randie ursal <[EMAIL PROTECTED

How to implement an interface in a JSP page?

2002-09-20 Thread Luca Ventura
Hello everybody! I would like that my jsp-page implements an interface that I have defined. I mean...I would like to know if in jsp there is something of equivalent to the statement "implements" of Servlet API. If I declare a servlet in the following way: public class MyServlet extends HttpSer