[no subject]

2002-05-20 Thread Adrian Janssen
those tests aren't accurate... > -Original Message- > From: David Mossakowski [SMTP:[EMAIL PROTECTED]] > Sent: 20 May 2002 10:40 > To: [EMAIL PROTECTED] > Subject: > > oh... i get it > > BWAHAHAHAHA > > Galbreath, Mark wrote: > > Not according to the test - I'm still hetero > > > >

Regarding cursor in JDBC connection.

2002-05-20 Thread S Srinivas Nayak
Hi all, Here we have a problem , In our application (Java /JSP) all the database updation and retreival are done through Oracle procedures.We obtain a Refrential cursor for retrieving of records from the database to our application. The problem here is that the cursor for all the SQL querries us

Re: Marginheight

2002-05-20 Thread L-Soft list server at Sun Microsystems Inc. (1.8d)
> WORM_KLEZ.H virus Unknown command - "WORM_KLEZ.H". Try HELP. > It has been deleted. Unknown command - "IT". Try HELP. Summary of resource utilization --- CPU time:0.000 sec Overhead CPU:0.000 sec CPU model: sun4u Job origin: [EMAIL PROTECT

Re: JAR files in JBoss (off-topic)

2002-05-20 Thread Sachin Pandey
If its an ejb jar or a war archive then put it in the jboss/deploy directory. If its just an library that u want access to then put it in the lib/ext directory. Hope that helps Sachin On Tuesday 21 May 2002 07:55, Greg Dunn wrote: > Can anyone tell me where and how to deploy .jar files in > JBos

Re: how do i use session.setAttribute for arrays?

2002-05-20 Thread David Mossakowski
oops I didn't see your reply and posted basically the same thing. sorry :) Does anyone have trouble with Mozilla not being able to keep threads together? It doesn't always put a message where it belongs in a thread. d. Galbreath, Mark wrote: > Well, I notice a few things here. > > 1. Java co

Re: how do i use session.setAttribute for arrays?

2002-05-20 Thread David Mossakowski
It looks like you trying to put each bookmark under a name in your session like this: MyBookmkarArray1 - www.ll.com MyBookmkarArray2 - www.gg.com MyBookmkarArray3 - www.kk.com MyBookmkarArray4 - www.aa.com I don't think you want to do this. See my changes to your code below But you would be be

JAR files in JBoss (off-topic)

2002-05-20 Thread Greg Dunn
Can anyone tell me where and how to deploy .jar files in JBoss-2.4.4_Tomcat-3.2.3? There is no lib/common dir under Tomcat, I tried a lib directory in my Ant built .war () and the lib/ext dir under JBoss didn't work. Greg -Original Message- From: A mailing list for discussion about Su

Error message when running Java servlet

2002-05-20 Thread Chanel Tien
Hi all,    In my servlet, I tried to form XML string; however, I got the following error message when running it. /// org.w3c.dom.DOMExce

Re: how do i use session.setAttribute for arrays?

2002-05-20 Thread Galbreath, Mark
Well, I notice a few things here. 1. Java constants should be all upper-case, so "iMaxBookmarks" should be "IMAXBOOKMARKS," and Java variables and methods should begin lower-case chars, so "MyBookmarkArray" should be myBookmarkArray. 2. I can't see how in the world you are setting a session att

Help!!!

2002-05-20 Thread Tapia Marcelo
hi...my english is not wery good...but.How I can verify one certificate in Java? Thanks, Marcelo ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET

Re: Help!!!

2002-05-20 Thread Tapia Marcelo
This is code in java for validate certificate..but...it appears one error public void check(Certificate cert) //throws CertPathValidatorExcept ion { X509Certificate xcert = (X509Certificate) cert; byte[] ext = xcert.getExtensionValue("2.5.29.17");

how do i use session.setAttribute for arrays?

2002-05-20 Thread Richard Diaz
think i sent this to the wrong list earlier... Here's what I'm doing: int iMaxBookmarks = 25; Bookmark[] MyBookmarkArray = new Bookmark[iMaxBookmarks]; while (rs.next()) { MyBookmarkArray[i] = new Bookmark(); session.setAttribute("MyBookmarkArray[" + i + "]", MyBookmarkArray); // set all

Re: Help!!!

2002-05-20 Thread JM
certificate.verify("one"); I hope that helps. JM > -Original Message- > From: A mailing list for discussion about Sun Microsystem's Java Servlet > API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Tapia > Marcelo > Sent: Monday, May 20, 2002 4:28 PM > To: [EMAIL PROTECTED] > Subj

[no subject]

2002-05-20 Thread David Mossakowski
oh... i get it BWAHAHAHAHA Galbreath, Mark wrote: > Not according to the test - I'm still hetero > > -Original Message- > From: Satoshi Kanda [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 17, 2002 11:02 AM > > bye > > _

Re: download in sun?

2002-05-20 Thread Michael Reilly
Title: RE: download in sun? You may get the newest version of Tomcat at  http://jakarta.apache.org. -Original Message- From: Your Full Name Juan Carlos Montenegro [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 10:17 AM To: [EMAIL PROTECTED] Subject: download in sun? Friends,

Re: download in sun?

2002-05-20 Thread Galbreath, Mark
Sure, but it's been deprecated for over 2 years. You are better off downloading the Tomcat 4.x implementation from Jakarta. Nevertheless, you can find the JSDK in the software archives at java.sun.com. Mark -Original Message- From: Your Full Name Juan Carlos Montenegro Sent: Monday, Ma

download in sun?

2002-05-20 Thread Your Full Name Juan Carlos Montenegro
Friends, Could you please send the link where is the latest version of Java Servlet Development Kit. Thanks, Juan Carlos Montenegro ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message

Re: dror@zapatec.com: Upload into a db

2002-05-20 Thread Dror Matalon
That's good to hear. Means that I'm on the right track. I guess when you can use foreign keys to make sure that when you drop the row that points to the uploaded file, you also drop the blob. On the other hand since you can accumulate quite a bit of data, it might make sense to do periodic updates

Help

2002-05-20 Thread Tapia Marcelo
Hola, necesito ayuda con respecto a este error Warning: java.lang.IllegalArgumentException: argument type mismatch in /var/www/html/psaunero/llamadoClase/autClase.php on line 14 Saludos Marcelo ___ To unsubscribe, send emai

Re: JSP & Servlets

2002-05-20 Thread Milt Epstein
On Mon, 20 May 2002, GW wrote: > Hi All > > As far as possible JSP pages should only contain presentation data > (html) and not embedded java code. Programmatical logic should be > handled in beans and servlets and not in jsp pages. > > Can someone please be kind enough to tell my why this is imp

Re: JSP & Servlets

2002-05-20 Thread Geeta Ramani
GW: Here's a link you may find answers your question: http://www.javaworld.com/javaworld/jw-12-1999/jw-12-ssj-jspmvc.html Regards, Geeta GW wrote: Hi All As far as possible JSP pages should only contain presentation data (html) and not embedded java code. Programmatical logic should be handled

Re: help

2002-05-20 Thread Nic Ferrier
"Alexander V. Yug" <[EMAIL PROTECTED]> writes: > hi, guys! > i have one serios problem with my servlets. > i've just began to study servlet technology and i want to know how to > run servlets in tomcat. Then you should read through the help that comes with Tomcat. In general you have to compile

Re: dror@zapatec.com: Upload into a db

2002-05-20 Thread Pavel Vesely
I am running very same solution, only with added timestamp, so i can periodically clean old uploads, which don't get clean in normal processing Jesus, Leader optimist of Deepend Prague | Karlovo nam. 17 | 12000 | Praha 2 T +420 (2) 2198 6250 F +420 (2) 2198 6251 W www.deepend.cz | W www.deepend

help

2002-05-20 Thread Alexander V. Yug
hi, guys! i have one serios problem with my servlets. i've just began to study servlet technology and i want to know how to run servlets in tomcat.

JSP & Servlets

2002-05-20 Thread GW
Hi All   As far as possible JSP pages should only contain presentation data (html) and not embedded java code. Programmatical logic should be handled in beans and servlets and not in jsp pages.   Can someone please be kind enough to tell my why this is important?    Kind Regards GW

Re: batch file

2002-05-20 Thread Michael Weller
hi! this doesn't work! you can start this app twice (it's because there are different jvms with different classloaders involved), though Main is a singleton: import javax.swing.*; import java.awt.*; public class a { public static void main(String [] argv) { Main m = Main.getInstance(); if

Re: batch file

2002-05-20 Thread Ramesh RGVS
Hi Sudhir Here you can use singleton pattern.Make the class which ur trying to invoke from batch file follow a singletonpattern.Hope this will solve ur problem Regards Ramesh --- Sudhir Kumar <[EMAIL PROTECTED]> wrote: > hi, > i have a an application which runs when i > click on a

Re: batch problem

2002-05-20 Thread Adrian Janssen
Use the singlton pattern. Also please put a subject on your messages so people can track the thread. > -Original Message- > From: Sudhir Kumar [SMTP:[EMAIL PROTECTED]] > Sent: 20 May 2002 12:53 > To: [EMAIL PROTECTED] > Subject: > > hi, > i have a an application which runs when

Re: Servlet-RMI with Tomcat

2002-05-20 Thread Michael Weller
hi! the problem seems to be that there are two different versions of your class, one with serialVersionUID=0 and the other with serialVersionUID=-2816224239577929320. -mw - Original Message - From: "SERHAT INAN" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 20, 2002 9:40

batch file

2002-05-20 Thread Sudhir Kumar
hi, i have a an application which runs when i click on a batch file. But my problem is, once i click on the batch file and the application starts running, the user can come back and click on this batch file again to create another instance of this application. How can i stop this ?? Than

Re: Problems with apache and jserv

2002-05-20 Thread Andrea
I can't send you the files because the message is more than 300 line how i can send those files to you?   thanks - Original Message - From: Raghupathy, Gurumoorthy To: [EMAIL PROTECTED] Sent: Monday, May 20, 2002 9:56 AM Subject: Re: Problems with apache and j

J2EE

2002-05-20 Thread Sudhir Kumar
hi, This quiestion may look very dumb, but still i want to know , What is this J2EE consists of?? What are the things which this Technology covers?? WHen can u say that ur application is built on J2EE technology ??? Thanks in advance SKN -Original Message- From: A mailing list fo

Re: Problems with apache and jserv

2002-05-20 Thread Raghupathy, Gurumoorthy
Can you send me the jserv.properties ? and the zone.properties and the servlet.properties   guru -Original Message-From: Andrea [mailto:[EMAIL PROTECTED]]Sent: 20 May 2002 08:42To: [EMAIL PROTECTED]Subject: Problems with apache and jserv Hi all   I have a problem   i

Servlet-RMI with Tomcat

2002-05-20 Thread SERHAT INAN
I am getting the following exception when trying to bind to RMI over servlet within Tomcat servlet container. Any suggestions/comments? Regards Serhat REMOTE_EXCEPTION_ERROR java.rmi.UnmarshalException: error unmarshalling return; nested exception is: java.io.InvalidClassException: servlet_int

Problems with apache and jserv

2002-05-20 Thread Andrea
Hi all   I have a problem   i wrote a servlet that works with a lot of records i would like to know why after few records (80~) it gives me the page 404, I try to increment the timeout for apache until 10 minutes but it seems doesn't work. The servlet don't return an error and the records, t