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]
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?
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
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
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
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
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
se for me.
Bye Bye
***
from Pierre Bizzotto
[EMAIL PROTECTED]
***
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
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
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.
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
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
Please stop to send me mail
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
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
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.
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 ?
---
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]
/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
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 ?
--
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)
{
{
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
**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;
!" << 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]
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
;
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
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
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
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
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
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
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]&
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
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
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
, 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
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
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
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
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
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
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
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
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
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.
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
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
>
> 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
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
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
50 matches
Mail list logo