Re: problem with javac
Jimi, Are you sure you installed the right version of java for Redhat 7? Which package did you install? On Tue, 4 Sep 2001, jimi shah wrote: > Dear friends, >I have installed java on redhat linux 7. >But when i tried to compile .java file with > javac, it gives following error: > > javac: cannot execute binary file > > I am waiting for reply of any body who knows > how to fix this error. > > thanking you, > jimi shah. > > __ > Do You Yahoo!? > Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger > http://im.yahoo.com > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > --- Erik Parker --- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
when linux/i386 JVM version 1.2
I'm working as a senior software engineer at a prominent internet advertising company. We are making some crucial design decisions and I was wondering when would a linux/i386 JVM that is 1.2 compliant be available, and thought you would be the people to ask. Thank you.
Where can I download a complete Java-Linux source codes?
Hi I am new to J2SE 1.2.2 for Linux (Blackdown). I have downloaded jdk1.2.2 source codes form www.sun.com. However, as mentioned in the jdk1.2.2 RC4 README document ( " The stock JDK source distribution from Sun won't build on Linux" ), I could not re-build the source code. I found errors during my rebuilding. I don't know where can I download a patch (a set of diffs which described in README document). Could any one please tell me where can I download the patch file or a completed jdk1.2.2 source code for Linux. Thanks in advance Regards, Erik - ***** Yu-Shing Erik Hu MSc in Software Engineering Computer Science Dept. University of York * -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Where can I download a complete Java-Linux source codes?
Yes, I need the source code for my MSc research. I would like to modify the JDK for real-time in some aspects. I have the binary version of the JDK downloaded from www.blackdown.org. (JDK 1.2.2. RC4) I also have the source code version of the JDK downloaded from www.sun.com, but I cannot rebuild it on my Linux Box (Mandrake 7.0) Could you please let me know where I can get a complete source code version for JDK 1.2.2 RC4 for Linux. Many thanks. Erik On Thu, 06 Jul 2000, Adam Ambrose wrote: > Do you need the source? Or can you use the binary version of the JDK? > > Erik Hu wrote: > > > > Hi > > > > I am new to J2SE 1.2.2 for Linux (Blackdown). > > I have downloaded jdk1.2.2 source codes form www.sun.com. However, as mentioned > > in the jdk1.2.2 RC4 README document ( " The stock JDK source distribution > > from Sun won't build on Linux" ), I could not re-build the source code. I > > found errors during my rebuilding. > > > > I don't know where can I download a patch (a set of diffs which described in > > README document). > > > > Could any one please tell me where can I download the patch file or a completed > > jdk1.2.2 source code for Linux. > > > > Thanks in advance > > > > Regards, > > Erik > > > > > > -- > > 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]
Problem with liphpi.so on JDK1.3 + RedHat 6.0
I am having problems starting up java 1.3 on a Cobalt raq3 (Redhat 6.0, 2.2 kernel). This applies to both IBM and Sun versions. Java 1.2 works fine. The exact error message I get when running "java ..." is: Unable to load /opt/IBMJava2-13/jre/bin/libhpi.so: symbol sem_wait, version GLIBC_2.1 not defined in file libpthread.so.0 with link time reference The version of the glibc rpm is 2.1.1 release 6 Does anyone have experience of this problem? Thanks, Erik /\ | Erik Erskine [EMAIL PROTECTED] | | Sundayta Ltd | \/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Problem with liphpi.so on JDK1.3 + RedHat 6.0
> > You need to upgrade your glibc, to 2.1.3 or 2.2. Thanks, it works fine now. Erik /\ | Erik Erskine [EMAIL PROTECTED] | | Sundayta Ltd | \/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: SQL database and JDBC
--- Cuong Nguyen <[EMAIL PROTECTED]> wrote: > Can anyone recommend an SQL server for Linux > which provides JDBC API for database > connectivity? Yeah, PostgreSQL is a great ACID compliant database. You can find it at http://www.postgresql.org. The JDBC driver can be found at http://jdbc.postgresql.org. Erik R. Jensen __ Do you Yahoo!? U2 on LAUNCH - Exclusive greatest hits videos http://launch.yahoo.com/u2 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Modal Dialog within applets
I have an applet that shows a dialog that is supposed to be modal. Since the only way i have found to display a dialog within an applet, is to create a parent frame for the dialog, the dialog wont be modal for the applet, only for the frame. Because of this the dialog isnt modal within the applet. Can anyone send me the code for creating modal dialogs for applets? Thanks!!
Re: Modal Dialog within applets
THANKS!! Its working!
I have spent DAYS to solve
this problem, I have tried everything. I know who to ask if I got more problems
like this
Thor Erik Karlsen
-Original Message-From:
Dimitris Vyzovitis <[EMAIL PROTECTED]>To:
Thor Erik Karlsen <[EMAIL PROTECTED]>Date:
Monday, November 30, 1998 6:29 PMSubject: Re: Modal Dialog
within appletsThor Erik Karlsen wrote:
And how do I use this to
keep a doalog in FRONT of my applet?It will be modal for
your browser's frame (since this is the parent you 'll get), that is for
your entire applet (it is my understanding that this was your original
problem ).
You can use it like : public FilterBuilderDialog( Component
parent, CommandExecutor.FilterBuilder builder ) throws
AWTException { super(
AppletUtilities.getTopLevelParent( parent ), false );
setTitle( title_ ); builder_ = builder;
_createComponents(); addWindowListener( new
WindowAdapter() {
public void
windowClosing( WindowEvent evt )
{
dispose();
}
});
pack(); show();
setResizable( false ); }
This is an actual example that worx in my case. (a constructor from a
dialog class)
If you still have problems, let me know.
Killing Applets in browsers
This is a proplem that has been irritating me since the day I started developing applets(not that long ago). Is there a WORKING way an applet can destroy itself and tell the browser that its dead? I always have to start the browser again and reload the applet during development. Destroy() dont work. What im looking for is some code within the applet that solves the problem once for all. Thor Erik KarlsenCatalyst ONE AS[EMAIL PROTECTED]
JDBC-connection in Linux
Im developing a system that uses both servlets and applets. So far we have used NT4, IIS4 with JRun 2.2a, MS SQL Server 6.5 and Symantec dbAnywhere Server as the platform. I have Red Hat 5.0 installed at home and now I want to use it as the platform, for testing purposes. What database should I use, is it free, and what JDBC-middleware do I use? Thor Erik KarlsenCatalyst ONE AS[EMAIL PROTECTED]
Unidentified subject!
unsubscribe [EMAIL PROTECTED]
