Re: Q: java-plugin and mozilla/netscape6

2000-11-15 Thread Juergen Kreileder
> "noisebrain" == noisebrain <[EMAIL PROTECTED]> writes: noisebrain> In netscape4, I believe that the java plugin does not noisebrain> replace the internal jvm, and that web pages need to noisebrain> have a bit of special html to cause them to use the noisebrain> plugin inste

Q: java-plugin and mozilla/netscape6

2000-11-15 Thread noisebrain
In netscape4, I believe that the java plugin does not replace the internal jvm, and that web pages need to have a bit of special html to cause them to use the plugin instead of the internal jvm. Is this true in mozilla/netscape6? Or is the java plugin "the" java for mozilla? (& does it work on

Re: java developer feedback

2000-11-15 Thread Juergen Kreileder
> "Peter" == Peter Pilgrim <[EMAIL PROTECTED]> writes: Peter> The solution to KDE, GNOME, AWT enabled is to make the Peter> whole X window code abstract and generic then apply a Peter> factory plugin architecture that loads Java Proxy and JNI Peter> classes at runtime such we

Re: FW: [ANNOUNCE] JMF 2.1.1-beta2 for Linux/i386

2000-11-15 Thread Juergen Kreileder
> "Carlos" == Carlos Solorzano <[EMAIL PROTECTED]> writes: Carlos> will there be a page including what format types are Carlos> supported and all that stuff?? Yes, soon. Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://www.blackdown.org/java-linux.html JVM'0

FW: [ANNOUNCE] JMF 2.1.1-beta2 for Linux/i386

2000-11-15 Thread Carlos Solorzano
will there be a page including what format types are supported and all that stuff?? thanks, --Carlos www.loudfire.com > -Original Message- > From: Juergen Kreileder [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 14, 2000 6:03 PM > To: Java Linux Public > Subject: [ANNOUNCE]

Re: application to start automatically at boot

2000-11-15 Thread Alexander V. Konstantinou
One possible solution is to create a file containing the PID of the process. On Linux, the right place to store that would be /var/run/myprogram.pid Make sure to use the Java remove on exit feature when creating the file so that you don't have left over files. You should also use the atomic creat

Re: application to start automatically at boot

2000-11-15 Thread Joi Ellis
On Wed, 15 Nov 2000, Francisco Gongora wrote: > Hello: > > We want our application to start automatically at boot, or stop when the > system shuts down. We are using a startup script ( /etc/rc.d/init.d ) for > that. After we start the java application (jar), we cannot find the name of > the pr

Re: application to start automatically at boot

2000-11-15 Thread Dr. Michael Christiansen
In the shell script, you can get the process id of the process last started IN THE BACKGROUND. It is a shell variable. In ksh the variable is $!. The idea is to write this value into a file associated with your application. Something like: java myclass & echo $! > myclass.pid Now the file mycla

application to start automatically at boot

2000-11-15 Thread Francisco Gongora
Hello: We want our application to start automatically at boot, or stop when the system shuts down. We are using a startup script ( /etc/rc.d/init.d ) for that. After we start the java application (jar), we cannot find the name of the process (process id). The name of the command in the process

Re: CVS vs RCS vs ? Thanks

2000-11-15 Thread jknutson
I haven't put up anything because I assumed commercial products were "right out". We use perforce (www.perforce.com) for our configuration management. It sits on top of RCS. As I said, it is a commercial product, but they do support a lot of platforms including linux. We have servers running on

Re: java developer feedback

2000-11-15 Thread Peter Pilgrim
The solution to KDE, GNOME, AWT enabled is to make the whole X window code abstract and generic then apply a factory plugin architecture that loads Java Proxy and JNI classes at runtime such we have libjavaawt.so libjavakde.so libjavaqt.so libjavanextstep.so et al Th