Re: Java web server

2000-01-19 Thread kornel c
> I haven't had the best luck with software from W3 - at least with their > Amaya browser. Their stuff focuses on creating sample implementations > of standards they're developing, not on deployable products. I vaguely > recall once trying to get jigsaw to work and fleeing in horror. > > Nathan I

Re: Java-Linux I18N

2000-01-19 Thread Renzo Pecoraro
JackWang - The font.properties file typically only maps Java font properties ("MonoSpaced", "SansSerif", etc.) to the actual fonts available on the client machine. Changing the font.properties file on the server makes no sense, as the server in a client/server or applet/servlet or whatever archit

Re: Unidentified subject!

2000-01-19 Thread kornel c
My guess is that LD_LIBRARY_PATH which is the path for sahred libraries does not include the directory where your shared libraries (libserver.so, etc) are. Find out where these libraries are and add the directory. -kornel - Original Message - From: "Roger Smith" <[EMAIL PROTECTED]> To: <

Re: j2ee on linux ... any hope?

2000-01-19 Thread Larry Sanderson
Yup. First, download and install the J2EE port for Solaris. It's almost all Java - there is only ony native library, called libioser12.so The attached version has been compiled for Linux, x86. If you would like to compile it for another platform, downoad the source from www.sun.com/communityso

Re: Terrible native thread performance

2000-01-19 Thread Jeff Galyan
Dan, A big part of the threads problem on Linux stems from the pthreads implementation that's available in glibc. There has been much discussion on this topic of late - check the archives for more detail. I believe the word is that glibc 2.1.3 is supposed to have improvements in the pthreads imp

Re: j2ee on linux ... any hope?

2000-01-19 Thread Larry Sanderson
"John N. Alegre" wrote: Yup. First, download and install the J2EE port for Solaris. It's almost all Java - there is only ony native library, called libioser12.so The attached version has been compiled for Linux, x86. If you would like to compile it for another platform, downoad the source fro

j2ee on linux ... any hope?

2000-01-19 Thread John N. Alegre
Has anyone got J2EE up and running on Linux? john -- E-Mail: John N. Alegre <[EMAIL PROTECTED]> Date: 19-Jan-00 Time: 21:21:32 This message was sent by XFMail --

Re: [Q] CORBA: Any idltojava for linux??

2000-01-19 Thread Weiqi Gao
"Eric / Chang-Cheng, Chao" wrote: > > Hi, I want to write some CORBA-compliant java programs and I need > "idltojava" in order to convert the IDL files to Java files. I checked > the Sun's website and I found versions for Sparc Solaris and Windows but > none for Linux. Can anyone tell me where

Re: [Q] CORBA: Any idltojava for linux??

2000-01-19 Thread Mark Shacklette
There are tons of them, commercial and free. Go to: http://adams.patriot.net/~tvalesky/freecorba.html for the free ones as well as www.inprise.com for VisiBroker for Java. Fill out the survey, and at the download page, choose the Linux platform. Java 1.2 also has CORBA support. Go to: http:

Re: java3d installation

2000-01-19 Thread Jacob Nikom
Hi, Add /usr/local/lib directory to your LD_LIBRARY_PATH path (C shell) setenv LD_LIBRARY_PATH .:/local/lib:/usr/lib:/usr/lib/X11:/usr/local/lib or incrementally setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/usr/local/lib Jacob Nikom Nash'at Ahmad wrote: > > Mesa libraries are in /usr/local/lib >

java3d installation

2000-01-19 Thread Nash'at Ahmad
Mesa libraries are in /usr/local/lib I have created the link libMesaGL.so.3 -> libGL.so When I run java3d examples I get the error: I am running RedHat Linux 6.1. java.lang.UnsatisfiedLinkError: /usr/local/jdk1.2/jre/lib/i386/libJ3D.so: libMesaGL.so.3: cannot open shared object file: No such fi

Re: Terrible native thread performance

2000-01-19 Thread Jacob Nikom
Hi Jonathan, You mentioned 2.4 kernel. Do you know when it is going to come out? Jacob Nikom Jonathan Doughty wrote: > > Daniel Stux wrote: > > > Here is what I see with Linux. I am running on a freshly installed > > RedHat 6.1 machine. With either JDK, running in native threads is > > absolu

Segmentation fault problem

2000-01-19 Thread Michael Maloney
I wrote the following little test when I was tracking a OutOfMemoryError exception in the earlier release of blackdown jdk. I am trying it now using Jdk1.2.2 RC3. I'm running under RedHat Linux 6.1 (glibc 2.1.2). The test allocates and prints one million T2 objects. Each object is released aft

Re: Terrible native thread performance

2000-01-19 Thread Nathan Meyers
On Wed, Jan 19, 2000 at 02:36:30PM -0500, Daniel Stux wrote: > Here is what I see with Linux. I am running on a freshly installed RedHat > 6.1 machine. With either JDK, running in native threads is absolutely > crippling. There seems to be a serparate JDK process ID for each running > thread, or o

Re: Terrible native thread performance

2000-01-19 Thread Paolo Ciccone
On Wed, Jan 19, 2000 at 02:36:30PM -0500, Daniel Stux wrote: > Here is what I see with Linux. I am running on a freshly installed RedHat > 6.1 machine. With either JDK, running in native threads is absolutely > crippling. There seems to be a serparate JDK process ID for each running > thread, or o

[Q] CORBA: Any idltojava for linux??

2000-01-19 Thread Eric / Chang-Cheng, Chao
Hi, I want to write some CORBA-compliant java programs and I need "idltojava" in order to convert the IDL files to Java files. I checked the Sun's website and I found versions for Sparc Solaris and Windows but none for Linux. Can anyone tell me where I can get it if there is indeed one available

font not found

2000-01-19 Thread Nash'at Ahmad
While runing jdk1.2 examples, I get the following message Font specified in font.properties not found [--dingbats-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific] What do I need to do to get rid of this. Thanks -- To UN

Re: Terrible native thread performance

2000-01-19 Thread Jonathan Doughty
Daniel Stux wrote: > Here is what I see with Linux. I am running on a freshly installed > RedHat 6.1 machine. With either JDK, running in native threads is > absolutely crippling. There seems to be a serparate JDK process ID > for each running thread, or otherwise something is casuing it to > for

IBM JDK1.1.8 first fix-level released

2000-01-19 Thread Alexander V. Konstantinou
http://www.ibm.com/developer/linux/ http://linuxtoday.com/stories/15272.html -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Java web server

2000-01-19 Thread Nathan Meyers
On Wed, Jan 19, 2000 at 09:19:43AM -0800, kornel c wrote: > Do you guys know about jigsaw from the web consortium. It is also > a free Java web server. I haven't had the best luck with software from W3 - at least with their Amaya browser. Their stuff focuses on creating sample implementations of

Re: Java web server

2000-01-19 Thread kornel c
Do you guys know about jigsaw from the web consortium. It is also a free Java web server. -kornel - Original Message - From: "Nathan Meyers" <[EMAIL PROTECTED]> To: "Pedro Guimaraes" <[EMAIL PROTECTED]> Cc: "Roger Smith" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, January 1

Terrible native thread performance

2000-01-19 Thread Daniel Stux
Hi folks, I've just installed two versions of the JDK1.2.2 for linux: Sun's RC2, and Blackdown's RC3. I am experiencing the wierdest behavior I have ever seen for a JDK. Here is what I am *used* to seeing. We run Java all day long on Solaris Sparc and x86 and Windows NT. With green threads, thin

Java web Servew libraries

2000-01-19 Thread Roger Smith
Hey all I installed Suns Java Web Server on my Redhat Linux box, but when I start it, I get an error that says: libserver.so: cannot open shared object file: No such file or directory (libserver.so) javawebserver: libjssl.so: cannot open shared object file: No such file or directory (libjssl.so)

Re: glibc

2000-01-19 Thread Jason Blair
Pedro Guimaraes wrote: > The glibc2-HOWTO explains how you can have libc5 and glibc2 installed and > both working. Read it *carefully* and everything should work if you follow > the instructions! > > -Pedro I did read the HOWTO before I wrote to the newsgroup. I didn't find what I needed in it,

Server/List Downtime..

2000-01-19 Thread Karl Asha
There was a mishap with the nameservice on monday that carried on through until this morning, causing the mailing lists and webserver to be unreachable. Please be forwarned that service will be transferred later this week and may result in additional downtime. Cheers, Karl -

Tritonus 0.1.82 available

2000-01-19 Thread Matthias Pfisterer
Hi, Tritonus, the open-source inplementation of JavaSound for Linux, has a new release. Major reasons for this release are: Easier Installation --- There is now a 'configure' script that automatically determines most parameters important for the build process. Installation i

RE: www.blackdown.org

2000-01-19 Thread taylow
It's ok for me William E. Taylor Sr. Analyst PJM Interconnection L.L.C. (610) 666-4676 [EMAIL PROTECTED] > -Original Message- > From: Barnet Wagman [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, January 19, 2000 10:28 AM > To: Roger Smith; [EMAIL PROTECTED] > Subject: Re: www

Unidentified subject!

2000-01-19 Thread Roger Smith
Hey all I installed Suns Java Web Server on my Redhat Linux box, but when I start it, I get an error that says: libserver.so: cannot open shared object file: No such file or directory (libserver.so) javawebserver: libjssl.so: cannot open shared object file: No such file or directory (libjssl.so)

Re: Java web server

2000-01-19 Thread Nathan Meyers
Pedro Guimaraes wrote: > > > Does anyone know of a Java web server for Linux?? I recently discovered an impressive, free Web server in Jetty (http://www.mortbay.com). It's small, very well designed, embeddable, and covered by liberal open source terms. Nathan > > Is there only the apache modu

Re: www.blackdown.org

2000-01-19 Thread Barnet Wagman
The web page appears to be up. (I received your posting dated 'Wed, 19 Jan 2000 02:52:18 -0700 (MST)'.) Roger Smith wrote: Does anyone know when www.blackdown.org is coming back up, or what is wrong? Thanks ___ "Go to your bosom:

RE: msql jdbc drivers

2000-01-19 Thread Wright Robert B Civ 96 CG/SCWDE
check out the JDBC section of the mysql web site (http://www.mysql.org/Contrib/). i've successfully used the mm driver by mark matthews. Rob > -Original Message- > From: Joseph Shraibman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 18, 2000 8:53 PM > To: [EMAIL PROTECTED] > Subj

Re: Java Decompiler

2000-01-19 Thread Jeff Galyan
Jad is written in C++ and therefore probably won't be able to decompile itself. --Jeff Nicholas Wright wrote: > > ;) Ever tried running a binary through a Java decompiler? > > Best Regards > > Nicholas > > > Resent-Date: Mon, 17 Jan 2000 04:02:48 -0700 (MST) > > From: "Oliver Fels" <[EMAIL

Re: Java Decompiler

2000-01-19 Thread Uncle George
Maybe the other regetable thing is that it is written in c++, and not compiled on Dec Alpha machiines :-{ gat MARUYAMA Fuyuhiko wrote: > Hi Renzo and folks! > > From: Renzo Pecoraro <[EMAIL PROTECTED]> > Subject: Java Decompiler > Date: Mon, 17 Jan 2000 02:11:51 -0500 > > > Help! > > I just acci

Re: glibc

2000-01-19 Thread Pedro Guimaraes
> I also did a build (glibc-2.1.2) but I can't change the > /lib/ld-linux.so.2 link because of others using it. Anyone > know how to get java to use the new library without > changing that link? The glibc2-HOWTO explains how you can have libc5 and glibc2 installed and both working. Read it *care

Re: JNI and Dead Thread on Linux

2000-01-19 Thread Nathan Meyers
On Tue, Jan 18, 2000 at 11:28:17AM -0600, [EMAIL PROTECTED] wrote: > Hi: > > I got a few questions on JNI on Linux. It would be appreciated if someone > could help. > > Suppose a shared library file has a function that is used to do hardware > I/O, say hard drives R/W. A Java application uses

java3d

2000-01-19 Thread yang yuexiang
I am a student. My supervisor ask me to implement several heuristics on 3D packing problem. So, I try to find the mathematics model on 3d geometry. However, I cannot find package: javax.media.j3d Who can tell me where I can find them. BTW, I can run 3D demos. Linux system Thanks -

Re: Java web server

2000-01-19 Thread Pedro Guimaraes
> Does anyone know of a Java web server for Linux?? > Is there only the apache module. or is there actually a java web server > from sun that has been ported to linux. > Thanks No... I know of a Java web server for java. There are many! If you want a pure java web server and free, try jo! (http:/

www.blackdown.org

2000-01-19 Thread Roger Smith
Does anyone know when www.blackdown.org is coming back up, or what is wrong? Thanks ___ "Go to your bosom: Knock there, and ask your heart what it doth know." -- William Shakespeare ---

JNI and Dead Thread on Linux

2000-01-19 Thread Lee_Xing
Hi: I got a few questions on JNI on Linux. It would be appreciated if someone could help. Suppose a shared library file has a function that is used to do hardware I/O, say hard drives R/W. A Java application uses JNI and calls this native function in .so file twice to R/W two separate hard dri

glibc

2000-01-19 Thread Jason Blair
Pedro Guimaraes wrote: > > Ok... I found out from this list that jdk1.2.2 needs glibc-2.1.* > I also did a build (glibc-2.1.2) but I can't change the /lib/ld-linux.so.2 link because of others using it. Anyone know how to get java to use the new library without changing that link? Thanks. jason

Remove

2000-01-19 Thread Joanie Ciszek
Remove my name from this list. __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject

msql jdbc drivers

2000-01-19 Thread Joseph Shraibman
Someone on this list once emailed me the url of a mature mysql jdbc 2.0 driver, but I seem to have lost the email. Does anybody know of one? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble

Mixing heavy (Java3d) and light (Swing) components

2000-01-19 Thread Jacob Nikom
Hi, I am trying to work with Java3D and Swing on Linux. I was able to run some 3D programs but stuck when I tried to place JPanel and Canvas3D on the same Frame. I could see my Canvas3D objects very well, but my JPanel object always lies behind the background color in the main Frame. I could se

Re: Jserv up-to-date howto

2000-01-19 Thread wyrd
> Do you know a recent tutorial that I can use to clear this job? The book "Professional Java Server Programming" also has a good section of JServ config. In addation, if you're running a RedHat ( or RedHat derived ) distro there's an rpm available that make JServ install a snap.

Re: Java-Linux I18N

2000-01-19 Thread Renzo Pecoraro
Actually, I have noticed one problem that so far is a mystery to me. Somehow under Linux (with JDK 1.2.2) something seems to get lost when trying to write to an OutputStreamWriter with a specified encoding, if the string is not iso-8859-1, but my machine is. Sun has some sample code on their I18N

Java web server

2000-01-19 Thread Roger Smith
Does anyone know of a Java web server for Linux?? Is there only the apache module. or is there actually a java web server from sun that has been ported to linux. Thanks ___ "Go to your bosom: Knock there, and ask your heart what

Java web server

2000-01-19 Thread Roger Smith
Hey all I am trying to install a JAva web server on a Redhat linux box, wher edo I start?? _ When I have a kid, I want to buy one of those strollers for twins. Then put the kid in and run around, looking frantic. When he gets ol