Re: Java Platform Debugger Architecture (JPDA)

1999-10-25 Thread Jo Uthus

Nathan Meyers wrote: 

| And it's JDWP that's missing. It has a native component that's not a
| part of the JDK and hasn't been ported to Linux. Sun is silent on the
| availability question, and some great tools like JBuilder can't debug
| without it.

Suggesting that perhaps Inprise are willing (and maybe have to ?) port 
the JDWP to Linux, since they plan to release JB for Linux in the near 
future.


-- 
Jo Uthus| e-mail: [EMAIL PROTECTED] (private)
Software Engineer   | e-mail: [EMAIL PROTECTED]  (work)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: ...

1999-10-25 Thread Juergen Kreileder

> Riyad Kalla writes:

Riyad> I've been trying to create a splash screen for my
Riyad> application all day and am not having any luck with it
Riyad> displaying my graphics. I've tried everything off of sun's
Riyad> site, tutorials and asked friends.

Riyad> Are there known problems with displaying graphics on linux
Riyad> with jdk1.2prev2 glibc2.1 version?

The problem is in your code.

Riyad> public void paintComponent( Graphics g )
Riyad> {
Riyad>  super.paint( g );

Here you start an infinite loop.  The code runs until a stack overflow
occurs.  
If you remove the line or change it to 'super.paintComponent(g)' it
should work.

Riyad>  g.drawImage( splashImage, 0, 0, this );
Riyad> }


Juergen

-- 
Juergen Kreileder, Blackdown Java-Linux Porting Team
http://www.blackdown.org/java-linux.html


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



JCK status page is more than a month old..

1999-10-25 Thread Vincent Trussart

An update would be appreciated!

Thanks.

--
Vincent Trussart
[EMAIL PROTECTED]
Cirano
Québec




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



green threads

1999-10-25 Thread Ramiro Diaz Trepat

I'm sorry to ask this again but nobody replied to me before.
Did anybody get remote (rmi) objects to work with jdk1.2v2 glibc 2.1 and
green threads ?
Thanks.


-- 
Ramiro Díaz Trepat
[EMAIL PROTECTED]
ôèPԔ ‘ 
ÿzf¢–Ú#jöÿ–)îÇúު笷øÚ½¯Û•§$vŒ'þŠàÂ+aj˛ç-¡ÿîžË›±ÊâmïÿNº.nWÿ
‰íiËeŠËZvoãjöÿnVœ‘Ú0Ÿú+



Re: ...

1999-10-25 Thread Peter Pilgrim

[EMAIL PROTECTED] wrote:
> 
> I've been trying to create a splash screen for my
> application all day and am not having any luck with it
> displaying my graphics. I've tried everything off of sun's
> site, tutorials and asked friends.
> 
> Are there known problems with displaying graphics on linux
> with jdk1.2prev2 glibc2.1 version?
> 
> I will attach my two classes. If anyone could take a look
> that would be great.
> 
> I have tried using JLabels, Images, ImageIcons.. and nothing
> seems to work.
> 

First thing is to use a raw `java.awt.Window' to display your splash screen
and add JLabel to it with a basic ImageIcon of your JPEG.

Second thing is to use a `javax.swing.Timer' to make the SplashScreen
go away after X seconds with `Window.hide()'.

-- 

Adios
Peter

-
import std.Disclaimer;  // More Java for your Lava, Mate.
"Give the man, what he wants. £££" [on Roy Keane, Quality Player]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Having problems running 1.1.7

1999-10-25 Thread Patrick_Hardy



 Hello,

 I am new to Java on Linux. I followed all of the directions on
 Blackdown's web site on how to install Java and I keep getting the
 error:

 > java -version
 java: error in loading shared libraries: libjava.so: cannot open
 shared object file: No such file or directory


 environment:

 $JAVA_HOME = /usr/local/jdk117_v3
 $CLASSPATH = .:/usr/local/jdk117_v3/lib
 $PATH = /usr/local/jdk117_v3/bin:.


 Did I do something wrong? libjava.so is located in
 /usr/local/jdk117_v3/lib and there isn't a "classes.zip" file
 anywhere.

 Please help.

 Thanks





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



rpms ?

1999-10-25 Thread Miles Thompson


ok i seem to be able to find rpm's
for the wonderful blackdown jdk;

( try :
http://www.rpmfind.net/linux/RPM/JByName.html
)

but why are they not listed in that
cool rpmfind metadata thing under
keywords like 'java' and 'jdk'.

???




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: JDBC newbie question

1999-10-25 Thread John N. Alegre

Has anyone else had this experience.  I have been reluctant to move to
PostgrSQL for reasons of complexity and speed.

Is the JDBC support that much more advanced in PostgrSQL?

All comments welcome.

john

On 24-Oct-99 Eric vanberkel wrote:
> I've been thru this.
> 
> You go to check you have the 1.2.2 driver and not the
> 1.2.1, which did not work on my prev2 JDK + latest mysql
> 
> Also for apps:
> java -cp .:$CLASSPATH proggie
> with a correct classpath set
> 
> in applets $CLASSPATH won't work.
> You'll want to put into your html:
> 
> 
> ..
> ..
> 
> 
> put the mm jarfile in this tag and in the applet home dir.
> If there is no jar, copy the mm.mysql level into the applet
> home dir. I know it's a shame, butt...
> 
> If you haven't got a jar you use the jar tools to pack the
> mm.mysql classes into a jar file.
> 
> This knowledge cost me a lotta sweat. I hope it pays off
> for you brother...
> 
> Oh,
> I managed to step over the line to PostgrSQL. Support for
> JDBC is much better. This might be a hint. They also
> upgraded to JDBC2 faster then mysql usually does
> 
> Good luck,
> gr. Eric
> 
> --- Jalaluddin Riaz <[EMAIL PROTECTED]> wrote:
>> hi,
>> I am a newbie to JDBC programming and am having some
>> problems. I am 
>> using mysql rdbms and mm.mysql.jdbc-1.2 driver and have
>> jdk1.2preV2 
>> installed. the problem is everytime i try to run a prog.
>> i get class not 
>> found exception. the prog is not able to find the driver
>> class files. i have 
>> tried different CLASSPATH settings, still does no works..
>> any ideas.
>> 
>> thanks.
>> 
>> __
>> Get Your Private, Free Email at http://www.hotmail.com
>> 
>> 
>>
> --
>> To UNSUBSCRIBE, email to
>> [EMAIL PROTECTED]
>> with a subject of "unsubscribe". Trouble? Contact
>> [EMAIL PROTECTED]
>> 
>> 
> 
> __
> Do You Yahoo!?
> Bid and sell for free at http://auctions.yahoo.com
> 
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

--
E-Mail: John N. Alegre <[EMAIL PROTECTED]>
Date: 25-Oct-99
Time: 13:02:49

This message was sent by XFMail
--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Having problems running 1.1.7

1999-10-25 Thread Michael Sinz

On Mon, 25 Oct 1999 12:41:57 -0400, [EMAIL PROTECTED] wrote:

>
>
> Hello,
>
> I am new to Java on Linux. I followed all of the directions on
> Blackdown's web site on how to install Java and I keep getting the
> error:
>
> > java -version
> java: error in loading shared libraries: libjava.so: cannot open
> shared object file: No such file or directory
>
>
> environment:
>
> $JAVA_HOME = /usr/local/jdk117_v3
> $CLASSPATH = .:/usr/local/jdk117_v3/lib
> $PATH = /usr/local/jdk117_v3/bin:.

CLASSPATH is incorrect and should not be needed unless you
need to add to it.

JAVA_HOME is also not needed.

> Did I do something wrong? libjava.so is located in
> /usr/local/jdk117_v3/lib and there isn't a "classes.zip" file
> anywhere.

Hmmm...  What archive did you install?  Also, did you double-check that
all files installed cleanly?  (No errors, etc) and that the directory
you did this in supports soft-links?

-- 
Michael Sinz  Technology and Engineering Director/Consultant
"Starting Startups" mailto:[EMAIL PROTECTED]
My place on the web ---> http://www.users.fast.net/~michael_sinz



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re[2]: Having problems running 1.1.7

1999-10-25 Thread Patrick_Hardy




It turns out I had to put the library paths in /etc/ld.so.conf and run
"ldconfig".

Thanks


__ Reply Separator 
_
Subject: Re: Having problems running 1.1.7
Author:  "Michael Sinz" <[EMAIL PROTECTED]> at TIME_INC
Date:10/25/1999 18:00




On Mon, 25 Oct 1999 12:41:57 -0400, [EMAIL PROTECTED] wrote:

>
>
> Hello,
>
> I am new to Java on Linux. I followed all of the directions on
> Blackdown's web site on how to install Java and I keep getting the
> error:
>
> > java -version
> java: error in loading shared libraries: libjava.so: cannot open
> shared object file: No such file or directory
>
>
> environment:
>
> $JAVA_HOME = /usr/local/jdk117_v3
> $CLASSPATH = .:/usr/local/jdk117_v3/lib
> $PATH = /usr/local/jdk117_v3/bin:.

CLASSPATH is incorrect and should not be needed unless you
need to add to it.

JAVA_HOME is also not needed.

> Did I do something wrong? libjava.so is located in
> /usr/local/jdk117_v3/lib and there isn't a "classes.zip" file
> anywhere.

Hmmm...  What archive did you install?  Also, did you double-check that
all files installed cleanly?  (No errors, etc) and that the directory
you did this in supports soft-links?

--
Michael Sinz  Technology and Engineering Director/Consultant
"Starting Startups" mailto:[EMAIL PROTECTED]
My place on the web ---> http://www.users.fast.net/~michael_sinz






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Having problems running 1.1.7

1999-10-25 Thread tpeter



I dealt with this problem not a week ago.  You need to edit your dynamic
lookup file /etc/ld.so.conf to include the path of the shared object file. 



On Mon, 25 Oct 1999 [EMAIL PROTECTED] wrote:

> 
> 
>  Hello,
> 
>  I am new to Java on Linux. I followed all of the directions on
>  Blackdown's web site on how to install Java and I keep getting the
>  error:
> 
>  > java -version
>  java: error in loading shared libraries: libjava.so: cannot open
>  shared object file: No such file or directory
> 
> 
>  environment:
> 
>  $JAVA_HOME = /usr/local/jdk117_v3
>  $CLASSPATH = .:/usr/local/jdk117_v3/lib
>  $PATH = /usr/local/jdk117_v3/bin:.
> 
> 
>  Did I do something wrong? libjava.so is located in
>  /usr/local/jdk117_v3/lib and there isn't a "classes.zip" file
>  anywhere.
> 
>  Please help.
> 
>  Thanks
> 
> 
> 
> 
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Re[2]: Having problems running 1.1.7

1999-10-25 Thread Michael Sinz

On Mon, 25 Oct 1999 18:03:23 -0400, [EMAIL PROTECTED] wrote:

>
>
>
>It turns out I had to put the library paths in /etc/ld.so.conf and run
>"ldconfig".

That should not be needed.  If that was the case then something
was set up wrong.  The .java_wrapper script (which is what the bin/java
command is actually a soft-link to) will automatically find itself and
then set up the library load paths to include the JDK.  If this does
not happen it may be due to the settings you have in JAVA_HOME or that
something got installed incorrectly on your system.

-- 
Michael Sinz  Technology and Engineering Director/Consultant
"Starting Startups" mailto:[EMAIL PROTECTED]
My place on the web ---> http://www.users.fast.net/~michael_sinz



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Segmentation Fault (JDK12pre2/AWT/RedHat6.0)

1999-10-25 Thread Matt Davies

Hi,
I have spent allot of time reviewing the existing bugs for jdk1.2pre2 to no
avail. I suspect that the solution might be straight forward as someone,
somewhere, must have tried this before!
Whenever I run the packaged AWT/JFC demo apps (regardless of window manager)
for SwingSet or SimpleExample, I get a segmentation fault. I could not find
any library conflicts.
I have tried several things:
1. ld occurs twice so I removed version 1.9.5 and re-ran "$ ldconfig" but
this didn't work. 
2. I ran gdb on the application and it complained that signal "?" was
unknown (perhaps it is used by gdb?).
3. I have tested both green threads and native threads. 
My system config is straight forward: I am running RedHat 6.0 with updates
current until late August. The hardware is P200MMX/ASUS
TX97/64Mb/Mystique-4Mb. I have recompiled kernel 2.2.5-22 for i586 and a
smaller footprint. 
Thanks for anytime you spend looking at this I am keen to get cracking using
JFC/AWT on linux as it is a superior platform ;-). The error output and
"ldconfig -D" output are as follows:

Error Output (java SimpleExample)

SIGSEGV   11*  segmentation violation
stackpointer=0xbf1ff2c4

Full thread dump Classic VM (Linux_JDK_1.2_pre-release-v2, native threads):
"Screen Updater" (TID:0x404c9b18, sys_thread_t:0x8363308, state:CW,
native ID:0x1c08) prio=4
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Compiled Code)
at sun.awt.ScreenUpdater.nextEntry(Compiled Code)
at sun.awt.ScreenUpdater.run(Compiled Code)
"Thread-0" (TID:0x404c9a08, sys_thread_t:0x804bf60, state:CW, native
ID:0x400) prio=5
"AWT-Motif" (TID:0x404dcbf0, sys_thread_t:0x828ff38, state:MW, native
ID:0x1807) prio=5
at sun.awt.motif.MToolkit.run(Native Method)
at java.lang.Thread.run(Compiled Code)
"SunToolkit.PostEventQueue-0" (TID:0x404dd0c8, sys_thread_t:0x83b4fc0,
state:CW, native ID:0x1406) prio=5
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Compiled Code)
at sun.awt.PostEventQueue.run(Compiled Code)
"AWT-EventQueue-0" (TID:0x404dd098, sys_thread_t:0x83cbed8, state:R,
native ID:0x1005) prio=6
at sun.java2d.loops.DefaultComponent.IntIsomorphicCopy(Native
Method)
at sun.java2d.loops.IntRgbToIntRgb.OpaqueBlit(Compiled Code)
at sun.java2d.loops.RasterOutputManager.performOpaqueBlit(Compiled
Code)
at sun.java2d.loops.RasterOutputManager.compositeSrcDst(Compiled
Code)
at sun.java2d.loops.RasterOutputManager.renderImage(Compiled Code)
at sun.java2d.SunGraphics2D.renderingPipeImage(Compiled Code)
at sun.java2d.SunGraphics2D.drawImage(Compiled Code)
at sun.awt.motif.X11Graphics.drawImage(Compiled Code)
at javax.swing.JComponent.paint(Compiled Code)
at java.awt.Container.paint(Compiled Code)
at sun.awt.motif.MComponentPeer.handleEvent(Compiled Code)
at java.awt.Component.dispatchEventImpl(Compiled Code)
at java.awt.Container.dispatchEventImpl(Compiled Code)
at java.awt.Window.dispatchEventImpl(Compiled Code)
at java.awt.Component.dispatchEvent(Compiled Code)
at java.awt.EventQueue.dispatchEvent(Compiled Code)
at java.awt.EventDispatchThread.run(Compiled Code)
"Finalizer" (TID:0x404be320, sys_thread_t:0x80cc620, state:CW, native
ID:0xc04) prio=8
at java.lang.Object.wait(Native Method)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:112)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:174)
"Reference Handler" (TID:0x404be3b0, sys_thread_t:0x80c7e68, state:CW,
native ID:0x803) prio=10
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:424)
at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:114)
"SIGQUIT handler" (TID:0x404be3e0, sys_thread_t:0x80c0900, state:R,
native ID:0x402) prio=5
Monitor Cache Dump:
sun.awt.ScreenUpdater@404C9B18/40599F28: 
Waiting to be notified:
"Screen Updater" (0x8363308)
sun.awt.PostEventQueue@404DD0C8/40538EF0: 
Waiting to be notified:
"SunToolkit.PostEventQueue-0" (0x83b4fc0)
java.lang.Class@404D0410/40546428: owner "AWT-EventQueue-0" (0x83cbed8)
1 entry
Waiting to enter:
"AWT-Motif" (0x828ff38)
java.lang.ref.ReferenceQueue$Lock@404BE338/404F3D78: 
Waiting to be notified:
"Finalizer" (0x80cc620)
java.lang.ref.Reference$Lock@404BE3C0/404F38A8: 
Waiting to be notified:
"Reference Handler" (0x80c7e68)
Registered Monitor Dump:
PCMap lock: 
utf8 hash table: 
JNI pinning lock: 
JNI global reference lock: 
BinClass lock: 
Class linking lock: 
System class loader lock: 
Code rewrite lock: 
   

Re: newbie java -classpath still not working as expected

1999-10-25 Thread Aras




I moved over to Sun's Java2 on Windows.  I 
verified that the -classpath switch is relative to where I run java from.  
I was wondering if it might be relative to where java lives(it wasn't).  In 
windows I can run it like:  java -classpath /thisdir testprog
or I can be somewhere else 
and run it thus:  java -classpath ../thisdir testprog.
 
The error I get with blackdown is:  Unable to initilize 
threads:  cannot find class java/lang/Thread
 
I even tried adding    
jdk117_v3/lib/java/lang  to my path.  Still nogo.

-Original Message-From: 
Aras <[EMAIL PROTECTED]>To: [EMAIL PROTECTED] 
<[EMAIL PROTECTED]>Date: 
Sunday, October 24, 1999 9:01 PMSubject: newbie java 
-classpath not working as expected
1.  I've installed jdk117_v3.  

2.  Created a test file test.java, 
where the class is testprog
3.  Ran javac -d /myclasses 
test.java  (it did create the testprog.class in 
/myclasses)
4.  I can run java 
testprog
 
What doesn't seem to run is if I am in a 
different dir and I try: java -classpath /myclasses 
testprog
 
I get the usual "Can't find 
/java/Thread" or something like that.
 
I think my PATH var is OK.
 
I wonder if I need to install into 
/usr/local,  currently I have it unser a home 
dir.


Version snag

1999-10-25 Thread Hartnett

Ran into a surprise snag when trying to test an app my company has made that requires 
JAVA 2 to install and run.
I was told the program on install would check to make sure the JDK was version 2, just 
to make sure I first tried to 
install it under 1.1.7 and as told, it refused to install.
I installed pre-release 2 and again installed the software package. This time the 
program installed with out a problem 
and created its startup scripts right on the nose. However when I went to start the 
program it eventually pops up a 
window stating that the runtime is not JAVA 2 and shut itself down. I checked with our 
developers and they did say it 
also will check on program startup.
I am just surprised that the software now states that the pre-release 2 is not JAVA 2, 
can anyone make a suggestion as 
to why?


Thanks
Sean
--
ICQ# 10073477   http://people.ne.mediaone.net/tardis/index.html

Windows 3.1 - The colorful clown suit for DOS.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Version snag

1999-10-25 Thread Dustin Lang


Hi,

> I am just surprised that the software now states that the pre-release
> 2 is not JAVA 2, can anyone make a suggestion as to why?

I would suspect that your program is checking for a version number string
in a particular format, and is not receiving an answer in precisely that
format, and is choking.  I would further suspect that it was written in
windows and not tested anywhere other than windows.  Blah.  I would also
suspect that your code is calling System.getProperty("java.version"), and 
calling something like "1.2".equals(System.getProperty("java.version")).
This would sugest that your code is to blame, not the Blackdown JDK (and
your message is therefore off-topic). I cannot make a further guess 
without seeing your code.

Cheers,
dstn.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Version snag

1999-10-25 Thread Hartnett

This same package was installed on Solaris and its runtime and works fine.

This group seems to be quick to jump on someone if it is not JAVA Linux related in 
someone's opinion.
I am running Blackdown JAVA 2 on Red Hat Linux 6, that sounds like this group to me. I 
don't see what the problem 
is?
I thought the idea of this list is to try to help others, not to try to make someone 
want not to use these products?

On Mon, 25 Oct 1999 18:19:15 -0700 (PDT), Dustin Lang wrote:

>
>Hi,
>
>> I am just surprised that the software now states that the pre-release
>> 2 is not JAVA 2, can anyone make a suggestion as to why?
>
>I would suspect that your program is checking for a version number string
>in a particular format, and is not receiving an answer in precisely that
>format, and is choking.  I would further suspect that it was written in
>windows and not tested anywhere other than windows.  Blah.  I would also
>suspect that your code is calling System.getProperty("java.version"), and 
>calling something like "1.2".equals(System.getProperty("java.version")).
>This would sugest that your code is to blame, not the Blackdown JDK (and
>your message is therefore off-topic). I cannot make a further guess 
>without seeing your code.
>
>Cheers,
>dstn.
>
>




--
ICQ# 10073477   http://people.ne.mediaone.net/tardis/index.html

Space Corps Directive #1694
During temporal disturbances, no questions shall be raised about any crew member whose 
time sheet shows him or her clocking off 187 years before he clocked on. -Red Dwarf



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Version snag

1999-10-25 Thread Nathan Meyers

On 25 Oct, Hartnett wrote:
> Ran into a surprise snag when trying to test an app my company has made that 
>requires JAVA 2 to install and run.
> I was told the program on install would check to make sure the JDK was version 2, 
>just to make sure I first tried to 
> install it under 1.1.7 and as told, it refused to install.
> I installed pre-release 2 and again installed the software package. This time the 
>program installed with out a problem 
> and created its startup scripts right on the nose. However when I went to start the 
>program it eventually pops up a 
> window stating that the runtime is not JAVA 2 and shut itself down. I checked with 
>our developers and they did say it 
> also will check on program startup.
> I am just surprised that the software now states that the pre-release 2 is not JAVA 
>2, can anyone make a suggestion as 
> to why?

Are you sure you're running it under JDK1.2? Sounds like you've also
got a JDK117 installation lurking about.

Nathan

> 
> 
>   Thanks
>   Sean
> --
> ICQ# 10073477 http://people.ne.mediaone.net/tardis/index.html
> 
> Windows 3.1 - The colorful clown suit for DOS.
> 
> 
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Version snag

1999-10-25 Thread Hartnett

I do have a 117 but that is configured under a different user account. As I mentioned 
earlier it won't even allow the 
install unless it is 1.2. I'll look into things further when I have the chance.


Thanks,
Sean

On Mon, 25 Oct 1999 19:04:36 -0700 (PDT), Nathan Meyers wrote:
>
>Are you sure you're running it under JDK1.2? Sounds like you've also
>got a JDK117 installation lurking about.
>
>Nathan
>

--
ICQ# 10073477   http://people.ne.mediaone.net/tardis/index.html

Windows Error: 005 - Multitasking attempted.  System confused.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Segmentation Fault (JDK12pre2/AWT/RedHat6.0)

1999-10-25 Thread schen

Hi Matt,

Sounds suspiciously like you have the wrong jdk1.2pre2 version.  Make sure
you get the version for glibc2.1.

Other than that, you might want to disable the JIT and run green threads:
java -green -Djava.compiler= 

. . . Sean.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Version snag

1999-10-25 Thread schen

Hi everyone,

On Mon, 25 Oct 1999, Hartnett wrote:

> This same package was installed on Solaris and its runtime and works
> fine. 
> 
> This group seems to be quick to jump on someone if it is not JAVA Linux
> related in someone's opinion.  I am running Blackdown JAVA 2 on Red Hat
> Linux 6, that sounds like this group to me. I don't see what the problem
> is?  I thought the idea of this list is to try to help others, not to
> try to make someone want not to use these products? 

I don't think Dustin was really jumping on you, he tried to give you a
possibility which is what you asked.

Unfortunately, Dustin's suggestion isn't quite right either I think as
JDK1.2pre2 reports a java.version of "1.2" as expected.

We won't be able to help you any further unless you can tell us what
exactly your program considers to be Java 1.2.

Also, did you check that the generated scripts point to the correct JVM?

. . . Sean.





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Version snag

1999-10-25 Thread Marc Slemko

On Mon, 25 Oct 1999, Hartnett wrote:

> This same package was installed on Solaris and its runtime and works fine.
> 
> This group seems to be quick to jump on someone if it is not JAVA Linux related in 
>someone's opinion.
> I am running Blackdown JAVA 2 on Red Hat Linux 6, that sounds like this group to me. 
>I don't see what the problem 
> is?
> I thought the idea of this list is to try to help others, not to try to make someone 
>want not to use these products?

You are asking why your (for whatever definition of "your" holds) product
refuses to run on a particular JVM.

What do you expect anyone here to be able to tell you?  Your developers
are the only ones that can answer the question of what it wants to see.
You indicated that you can communicate with them, since you did in the
past, so your best bet would be to do so again.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]