Re: J2EE on Linux

1999-12-30 Thread John N. Alegre
Session beans are a snap. Anyone got Entity Beans working on Linux? I have tried mySQL with now luck under the WebLogic eval. I am more interested in if anyone has J2EE working under Linux. john On 30-Dec-99 Jim Kimball wrote: > I downloaded BEA Weblogic (30 day trial) and have been able to ac

Re: trouble setting breakpoints in my jni code with ddd/gdb

1999-12-30 Thread Nathan Meyers
richard johnson wrote: > > Hello, > > I am in the process of porting a JNI dynamic library to > Unix that was developed on wiindows. I have made > some errors and would like to debug but am having > some troubles using ddd and gdb. JNI debugging is a bit tricky, because of the need to set a br

Failure with the native_threads!!!!

1999-12-30 Thread Pramila
Hi!       I am using Blackdown JDK version 1.1.7B on Red Hat Linux 6.0 and GCC 2.91.66.       I am facing the problem with the native_threads with the above JDK.       I have written a small Test code  in that ,       1 . main thread creates  12 threads .     2. After that each threads joi

trouble setting breakpoints in my jni code with ddd/gdb

1999-12-30 Thread richard johnson
Hello, I am in the process of porting a JNI dynamic library to Unix that was developed on wiindows. I have made some errors and would like to debug but am having some troubles using ddd and gdb. The following snippets are from the stderr stream when I run without the debugger and just crash.

Re: Do you have any example showing us how to read a line. an interger, a float... from console?

1999-12-30 Thread Jacob Nikom
import java.io.*; // KeyboardInput.class reads a line of text from standard keyboardInput, class KeyboardInput { public static void main (String args[]) { String keyboardInput = ""; boolean inputError; InputStreamReader inputStreamReader = new InputStreamReader(System.in);

RE: Do you have any example showing us how to read a line. an interger,a float... from console?

1999-12-30 Thread Edson Carlos Ericksson Richter
You can use this: // some piece of code InputStreamReader in = new InputStreamReader( System.in ); BufferedReader br = new BufferedReader(in); String lineFromUser = br.readLine( ); // This line will block to the user take an "ENTER" (CR, LF or CR+LF). System.out

Re: J2EE on Linux

1999-12-30 Thread Jim Kimball
I downloaded BEA Weblogic (30 day trial) and have been able to access the server with a browser as well as implement a simple "Hello World" stateless session bean and access it with a client. Jim "John N. Alegre" wrote: > > Anyone got it to work? > > john > -- >

Re: Do you have any example showing us how to read a line. an interger, a float... from console?

1999-12-30 Thread Weiqi Gao
[EMAIL PROTECTED] wrote: > > Hello everybody, > > Have you got any example like that? It's because there are so many > classes in java.io that I don't know what to choose to do it. Get the Java I/O book from O'Reilly. It has examples that does that. -- Weiqi Gao [EMAIL PROTECTED] -

Do you have any example showing us how to read a line. an interger, a float... from console?

1999-12-30 Thread dvt
Hello everybody, Have you got any example like that? It's because there are so many classes in java.io that I don't know what to choose to do it. Thanks a lot. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "u