An information please!!

1998-08-28 Thread Pierre
Java VM to prepare the thesis. How I can resolve my problem. Can you give me some internet address where I found more informations. Thank you very much for your disponibility. And good end holidays. Pierre Bizzotto [EMAIL PROTECTED]

Problems with HotJava 3

2000-04-05 Thread Pierre
cripting engine ]]] I'm using Blackdown JDK1.2pr2. Basically it runs of a big jar file, and when I unzip it I can see that the lib/html32.bdtd is there. Any idea, or anybody had the same problem? Should I upgrade to 1.2.2?

1.2.2RC4 on LinuxPPC 1999

2000-04-13 Thread Pierre
ut it didn't change anything. On java -verbose I can see a lot of classes loading and then this error message appears. Please help me... Pierre -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubs

[Fwd: Portability]

1998-10-09 Thread Pierre LATECOERE
Blackdown JDK. How difficult will it be? Generally speaking did you run into uncompatibility issues betwenn Sun JDK 1.1.6 and Blackdown JDK? Than you. Pierre

Re: Portability

1998-10-10 Thread Pierre LATECOERE
objects in the frame. One nice thing is that you can compile against any JRE (from 1.02 to 1.2 so far). You just have to add new classes and tell the compiler which JVM you use. JBuilder is a fantastic tool It is possible that Inprise will port it to Solaris and/or Linux. (check it out at www.inprise.com). Pierre

HALLOWEEN

1998-11-03 Thread Pierre LATECOERE
Title: The Halloween Document (1.3) { The Halloween Document } Open Source Software A (New?) Development Methodology { The body of the Halloween Document is an internal strategy memorandum on Microsoft's possible responses to the Linux/Open Source phenomenon. It smells too strongly of M

Basic installation. Please Help.

1998-11-15 Thread Pierre LATECOERE
done something wrong in setting my CLASSPATH environment. Here is what I have in my .bashrc file: # .bashrc # User specific aliases and functions # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi export PATH=/home/Pierre/jdk116_v5/bin:$PATH export CLASSPATH=/home/Pierre/jdk1

Informations About JDK variations

1998-11-17 Thread Pierre Bizzotto
se for me. Bye Bye *** from Pierre Bizzotto [EMAIL PROTECTED] ***

Congratulations to Blackdown!

1998-12-07 Thread Pierre LATECOERE
ainly less technically competent than most of you, I will be happy to share my experience of developing and migrating from Windows to Linux. Thanks again to Blackdown for your outstanding work. Pierre LATECOERE      

Re: Congratulations to Blackdown!

1998-12-11 Thread Pierre LATECOERE
ava Workshop). Finally, I will port the > programs to Linux. Can you recommend one book about JDBC? > > Do you think there is a book about JDBC and JFC? I will do > almost the same thing as you. Do you have some advise for me? &g

An IDE for C and JAVA

1998-12-21 Thread Pierre Bizzotto
Hi, I need an IDE for C and Java, if it's possible for XWINDOWS or KDE. I'have another problem, I've the italian Keyboard and on my notebook there is'nt the { and }. How I can resolve this problem changing aothe key? Thanks. bye and Merry Xmas.

Help about doc on source of JDK

1999-02-02 Thread Pierre Bizzotto
Hi, We have some problem about the mind of the source code of the JDK 1.1.6. we are two students at University of Rome in COMPUTER SCIENCE. We have the source code of JDK of the SUN. We must generate a JVM for a parallel machine. But we have some difficult to understand how the THread are h

Re[2]: problem with Installation

1999-03-01 Thread Pierre MIGUEL
PLEASE STOP TO SEND ME MESSAGE SOMEONE PUT MY EMAIL IN COPY __ Reply Separator _ [EMAIL PROTECTED] 01/03/99 12:39:00 To: [EMAIL PROTECTED]@internet [EMAIL PROTECTED]@internet cc: [EMAIL PROTECTED]@internet (bcc: Pierre MIGUEL

Unsubcribe

1999-03-02 Thread Pierre MIGUEL
Please stop to send me mail -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Un,subsribe

1999-03-03 Thread Pierre MIGUEL
Please stop to send me mail __ Reply Separator _ [EMAIL PROTECTED] 02/03/99 19:58:00 To: [EMAIL PROTECTED]@internet cc: [EMAIL PROTECTED]@internet (bcc: Pierre MIGUEL/marc-otc/fr/socgen) Return Receipt: No

Problem with Lesstif

1999-05-12 Thread Pierre Bizzotto
Sorry but I've a problem. I recompile the JDK source with the LESSTIF. I've a problem when I use the awt. My computer tell me : ./../lib/i586/green_threads/libawt.so: undefined symbol: XtShellStrings (libawt.so) java.lang.UnsatisfiedlinkError: no awt in shared library path.

jre and native thread

1999-09-14 Thread Pierre Legay
Hello, when I execute a very simple program ( jre Hello.class) with the THREADS_FLAG=native I have the message: SIGSEGV11* segmentation violation full thread dump: Monitor Cache Dump: registered monitor dump: What is the solution ? ---

Problem with JNI_CreateJavaVM()

1999-09-20 Thread Pierre Heroux
hread -lhpi -o Simple Simple I use java version "1.2" Classic VM (build Linux_JDK_1.2_pre-release-v2, native threads, nojit) on RedHat5.2 Thanks a lot, Pierre -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

JDK 1.2 library problem

1999-09-21 Thread Pierre Heroux
/native_threads/libhpi.so: undefined reference to `sem_init@@GLIBC_2.0' It looks like if I forgot a library but which one ? Is it an installation problem ? Pierre -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of &q

Several VM ?

1999-10-18 Thread Pierre Heroux
Hi, I've downloaded JDK_1.2_pre-release-v2. Each time I run "java blah_blah.class" or invoke the JVM in a C++ source, it looks as if the program is run several time. It appears 8 times in the process list ("ps"). Is there something wrong ? --

JNI and fstream

1999-11-12 Thread Pierre Heroux
Hi, I have a java class with a native method implemented in C++. This method uses fstream. I got a Segmentation Fault when the destructor of the fstream is called. Is it a bug in JNI ? Am i missing something ? #include JNIEXPORT jboolean JNICALL Java_MyClass_write(JNIEnv * env, jobject obj) {

JNI and fstream

1999-11-12 Thread Pierre Heroux
{ ofstream * out; out = new ofstream; out->open("file"); if(!out->is_open()) return false; *out << "HelloWorld" << endl; out->close(); delete out; /* it crashes here and it works fine if

problems with JNI

1999-12-21 Thread Pierre Héroux
**argv) { JavaVM * jvm; JNIEnv * env; JavaVMInitArgs vm_args; JNI_GetDefaultJavaVMInitArgs ( &vm_args ); jint res = JNI_CreateJavaVM(&jvm, (void **)&env, &vm_args); if (res < 0) { cerr << "Can't start JavaVM" << endl;

Problem with JNI

2000-01-05 Thread Pierre Héroux
!" << endl; } The execution gives The Library is loaded... exception UnsatisfiedLinkError : Hello Does anybody know where is the error ? Pierre -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Problem with JNI

2000-01-05 Thread Pierre Héroux
I have fixed my problem. I forgot to include the Native.h file produced by javah which includes the extern "C". Pierre. Mark Delafranier wrote: > You will probably have to extern "C" the code in your C++ library. JNI uses C > calling conventions. > > Mark &g

SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Pierre Héroux
; JNI_GetDefaultJavaVMInitArgs ( &vm_args ); jint res = JNI_CreateJavaVM(&jvm, (void **)&env, &vm_args); if (res < 0) { cerr << "JVM has not started" << endl; exit(1); } cout << "JVM sta

Re: SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Pierre Héroux
The example helloworld.cpp gives me the same error. Here is my makefile. What's wrong Pierre JDK = /usr/local/jdk1.2.2 REP_INC = -I$(JDK)/include \ -I$(JDK)/include/linux REP_LIB = -L$(JDK)/lib/i386 \ -L$(JDK)/jre/lib/i386 \ -L$(JDK)/jre/lib/i386/cl

Re: SIGSEGV with JNI_CreateJavaVM

2000-01-25 Thread Pierre Héroux
I installed jdk1.2.2RC3 solved the problem but now I get the following message Font specified in font.properties not found [--dingbats-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific] How can I fix it ? Pierre -- To

Re: Help a novice

2002-03-29 Thread Pierre Neihouser
luded in RH7.2). Read de doc and off you go... -- Pierre - Original Message - From: "Khiani" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 29, 2002 11:14 AM Subject: Help a novice > Hi every one out there > I have Red hat 7.2 installed o

Re: Slow list

2002-04-04 Thread Pierre Neihouser
Hello, I have no idea, but it's not a problem to me (I take more than 45 minutes to reply anyway ;-). The server might be overloaded (seems unlikely though...). Anybody has another idea? -- Pierre - Original Message - From: "Jacob Vennervald Madsen" <[EMAIL PROTE

Re: Java in Mandrake 8.1

2002-04-04 Thread Pierre Neihouser
I believe you should look for java all lowercase. Locate is case sensitive (afai remember). I don't have my Linux box with me (and I don't have Open Office installed on it anyway), but that would be where I would start... Hope it helps, -- Pierre - Original Message - Fro

Re: Java in Mandrake 8.1

2002-04-04 Thread Pierre Neihouser
installing Star Office 5.2 a long time ago and some sort of java (1.1 or 1.2 don't remember) was installed. Is it different with Open Office? -- Pierre - Original Message - From: "Elias Assmann" <[EMAIL PROTECTED]> To: "Pierre Neihouser" <[EMAIL PROTECTED]&

Re: Java in Mandrake 8.1

2002-04-04 Thread Pierre Neihouser
Ooops, I think I said something wrong... Looks like my Red Hat 7.1 system is getting old and I have some catch up to do. Sorry guys I didn't mean it badly, I take it back. ;-) -- Pierre - Original Message - From: "Duane Kehoe" <[EMAIL PROTECTED]> To: <[EMAIL PR

Re: Servlet

2002-09-06 Thread Pierre Neihouser
Hello, There is no Java version SEE... If you use J2SE 1.3.1 then servlets are not included If you use J2EE 1.3.1 then servlets are included -- Pierre On Friday, September 6, 2002, at 05:24 , Marulam Sinaga wrote: Dear All,     I use Java with version SEE 1.3.1. does it include with servlet

Re: Clipboard interaction between Swing/JDK and X11

1998-10-30 Thread Jean-Pierre Dube
Hi Jim, JDK 1.1.x will only transfers text from a JVM to the peer operating system. In JDK 1.2 you will be able to transfers just about anything. see: http://www.javaworld.com/javaworld/javatips/jw-javatip61.html Thanks, -- -- Jean-Pierre Dubé Infocom enr

Re: Hatred of 1.2 messages

1999-02-24 Thread Jean-Pierre Dube
, IBM AIX etc... I think SUN should wake-up and support what they advertise. -- Jean-Pierre Dubé Infocom enr. Developpement de logiciel Software development Nelson Minar wrote: > > Gerald Gutierrez writes: > >What I propose is simple. FIRST, for every

Re: Java 2 initial impressions

1999-03-05 Thread Jean-Pierre Dube
the redraw of the background is extremly slow, I can actually see to program drawing the background. I'm happy with the port. You guys did a very good job and only time will improve on it. Thanks Jean-Pierre Dube Infocom enr. Software deve

Problem running Jikes on Linux with JDK1.2

1999-03-17 Thread Jean-Pierre Dube
minutes of debugging if found out that the error was caused by the rt.jar. I think that the problem is related to jikes since I can compile my program using javac from the JDK. Any help would be appreciated. -- -- Jean-Pierre Dubé Infocom enr. Developpement de logicie

Re: Problem running Jikes on Linux with JDK1.2

1999-03-18 Thread Jean-Pierre Dube
essage for that kind of a problem, maybe the error message should be changed. Thanks -- Jean-Pierre Dubé Infocom enr. Developpement de logiciel Software development Osvaldo Pinali Doederlein wrote: > > You may have some invalid zip in your classpath, e.g. cl

Will we ever see HotSpot on Linux

1999-03-18 Thread Jean-Pierre Dube
Hi, I there some work going on to port HotSpot to linux or are we going to be the last one to get the goodies. Thanks -- -- Jean-Pierre Dubé Infocom enr. Developpement de logiciel Software development

Re: Activism for Java on Linux

1999-03-18 Thread Jean-Pierre Dube
r position then the Mac-OS. Thanks ------ Jean-Pierre Dubé Infocom enr. Developpement de logiciel Software development Nelson Minar wrote: > > >About HotSpot: I really wouldn't know. Would like to see it myself > >too. Linux allways comes last (JD

Re: IDE for Java

1999-03-19 Thread Jean-Pierre Dube
e/ Thanks -- Jean-Pierre Dubé Infocom enr. Developpement de logiciel Software development Naoki Shibuya wrote: > > Hi, > > I'm looking for a good IDE for Java on Linux. > > Is everybody using emacs? Or is there anything better? > > I am Java programmer

Re: position of java applications starting up.

1999-05-13 Thread Jean-Pierre Dube
Hi, Use the setLocation method on your main window. -- /* * Jean-Pierre Dubé * Infocom enr. * Developpement de logiciels * Software development * */ Justin Lawler wrote: > > Hi, > > i was wondering if it is possible to set the position of

RMI without http server?

1999-12-13 Thread Jean-Pierre Fournier
Hi Folks, I'm hoping that some RMI guru can help me get started. I'm trying to create a simple RMI client/server on a single computer, but something is choking in the rebind() call. linux 2.0.38 java "1.1.7B" in window 1: [jape@jaguar jape]$ echo $CLASSPATH [jape@jaguar jape]$ rmiregistr

Re: RMI without http server?

1999-12-16 Thread Jean-Pierre Fournier
wrote: > > Jean-Pierre Fournier wrote: > > > Hi Folks, > > > > I'm hoping that some RMI guru can help > > me get started. I'm trying to create a > > simple RMI client/server on a single computer, > > but something is choking in the rebind() call.

jni + rmi = NoClassDefFoundError + consternation

1999-12-19 Thread Jean-Pierre Fournier
Hi, linux 2.0.38 java 1.1.7B I am trying to get a handle to a remote object from C. In my C program, I create a VM, find the class I want, find the method and then call CallStaticIntMethod(). It appears that Naming.lookup() is the cause of my NoClassDefFoundError, since if I comment this li

Re: jni + rmi = NoClassDefFoundError + consternation

1999-12-19 Thread Jean-Pierre Fournier
Hi, Thanks for the reply. Nathan Meyers wrote: > > Is the classfile for the remote stub in your > program's classpath? Yep. I have another class to just check the rmi side of things. When I run this class all works as expected, and I can get the remote object and see the remote methods exec

Re: segmentation violation when invoking JVM

1999-12-21 Thread Jean-Pierre Fournier
> > jclass cls = env->FindClass("Main"); > jmethodID mid = env->GetStaticMethodID(cls, "main", "()V"); > I'm no expert, but your problem appears to be right above. You are trying to locate a main method that takes no args, but your main method in your java program takes an arr

jni + rmi = NoClassDefFoundError + consternation

1999-12-21 Thread Jean-Pierre Fournier
I eventually found a "solution" to this problem. I never could get it to work under linux jdk1.1.7, however, when I upgraded java to 1.1.8 ( and to glibc2.1.2 ) the NoClassDefFoundError problem went away. Thanks to all who had suggestions. regards jp Jean-Pierre Fournier wrot

Unidentified subject!

1999-06-02 Thread BIDAU Jean-Pierre (NTR)
-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]