Plug-In Remark

2000-03-27 Thread sgee
I don't know if this is of any importance or not, but I just installed the plug-in ( 1.1 ) for NT to test Signed Applets. Netscape bombs everytime I try to run the signed applet demo from: http://java.sun.com/security/signExample/index.html I know this is not Linux related, and I'm not seeking

Any EJB Server for Linux?

1999-11-08 Thread sgee
Are there any EJB Server for Linux currently Available. Thanks _ Steve Gee Certified Java Programmer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED] 806.324.5540 www.maxor.com 806.324.5400

My Thanks--Re: JNI Errors: Need Help

1999-07-28 Thread sgee
Many, many thanks. The Sun Tutorial DOES NOT show that little trick. _ Steve Gee Java Developer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED] 806.324.5540 www.maxor.com 806.324.5400 -- T

JNI Errors: Need Help

1999-07-28 Thread sgee
local/jdk117/include -I/usr/local/jdk117/include/genunix HellWorldNative.c -o libhello.so Compile Warning: HellWorldNative.c: In function `main': HellWorldNative.c:12: warning: return type of `main' is not `int' Core Dump Error: [sgee@maxor jni]# java HelloWorld SIGSEGV 11* segm

Re: jdbc and oracle 8.0.5 using jdk1.2

1999-07-20 Thread sgee
This may not be exactly what you are looking for, but this is the code I use to connect to oracle. ( and it is for 1.1 ). /***/ /**

Re: IBM-jdk Where can I get it

1999-07-08 Thread sgee
Where can I download the JDK from IBM for Linux? _ Steve Gee Java Developer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED] 806.324.5540 www.maxor.com 806.324.5400 -- To UNSUBSCRIBE, emai

JDK1.1.7_v2 Where?

1999-05-10 Thread sgee
I have checked the mirrors from http://www.blackdown.org/java-linux/mirrors.html and none of them show v2? Can anyone point me to its locations.. Thanks Steve Gee Java Developer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED] 806.324.5540 www.maxor.com 806.324.5400 ---

JDK1.1.7v2

1999-05-10 Thread sgee
Greetings all, ..and thank you for your quick replies to my last JDK problem. I was advised that JDK1.1.2v2 will run under the latest GLIBC versions (2.2) Is this correct? Thanks all Steve Gee Java Developer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED] 806.324.5540 www

JDK117 problems

1999-05-07 Thread sgee
Does anyone know of any current problems relating to Redhat5.2 with kernel 2.2.6 and javac? I get the typical "how-to" when I type #java I get a core dump when I type # javac geko.java and this error when I type #javac_g /usr/local/jdk117/bin/i686/green_threads/java_g: error in loading shared li

Re: retriev the oracle data! PROBLEM?????

1999-04-06 Thread sgee
you will need to "create a statement" using /* S N I P P L E T ***/ stmt = conn.createStatement(); where conn is your connection. /* S N I P P L E T ***/ Steve Gee Java Developer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED

Re: "Can'nt find the driver: jdbc.."

1999-03-30 Thread sgee
Here is a code snipplet that I use for connecting to an oracle rdbm you may have to alter it somewhat to get it to work right for you, but I do believe that with a little study you will have no problems. ~~ FYI: Oracle is probalby the hardest database to connect to ~~ /* S T

re: libstdc++-libc6.0-1.so.2

1999-03-18 Thread sgee
Is there no answer to this question? I have sent the same question in many times before and I did not see any response. ( maybe I just missed it ) Thanks Steve -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

cannot open shared object

1999-03-12 Thread sgee
# java jfctest Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/local/jdk1.2/jre/lib/i386/libfontmanager.so: libstdc++-libc6.0-1.so.2: cannot open shared object file: No such file or directory at java.lang.ClassLoader$NativeLibrary.load(Native Method) any ideas on correct

Library problem

1999-03-12 Thread sgee
I would like to say first off, Thanks to the blackdown team for getting JDK1.2 ported. I finally got it installed last night and had no problems running it until I tried to implement some of the GUI libraries. Here is my code: import javax.swing.*; public class jfctest extends JFrame{

unpacking JDK1.2

1999-03-09 Thread sgee
I noticed that the download I have of the JDK1.2 is 36M and the all of the new ones are 24M and 12M, plus they are in a bz2 format. How does one go about unpacking this format? I have RedHat5.2 and when I try to unpack bzip20rmp all I get is However, I can't find any help files list

All I need for JDK1.2

1999-03-08 Thread sgee
Double Checking download "stuff" for JDK1.2 All I need to install the JDK1.2 is: 1_2.tgz 36,218KB the JDK1.2 itself urw-fonts_tar.gz 1,509KB GIMP fonts anything else? Steve Gee Maxor National Pharmacies Information Technologies Java Developer [EMAIL PROTECTED] www.max

anyone using JDK1.2(beta)

1999-03-05 Thread sgee
I am downloading the latest JDK1.2 betafrom ((http://www.tux.org/pub/java/JDK-1.2/i386/pre-v1/)) is anyone currently using it? where there any problems with installation or code porting? Thanks Steve Gee Java Developer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED] w

Location of Benchmarks

1999-02-26 Thread sgee
would someone please repost the link to the latest benchmarks Good old lotus-notes "ate" some of my archived mail Thanks Steve Gee Actuate Administrator/Java Developer Maxor National Pharmacies - Information Technologies www.maxor.com [EMAIL PROTECTED] --

Re: Sun vs microsoft? RE:We Won!

1998-11-18 Thread sgee
It's about time someone stood up to those cronies I love the statement made by Maritez "The option of not supporting Java is one that is open to us" This is one statement I would love to see happen!!! I would love to see how much Microsoft reeaaayyy doesn't need Java. Steve Gee Dev

JFC Compilation still bothersome

1998-11-02 Thread sgee
Still having problems compiling import com.sun.java.swing.*; public class test extends JFrame{ public test(){ this.setSize(300,300); this.setVisible(true); }//end constructor public static void main(String args[]){ new test(); }//end main }//e

JFC Compiling problems?

1998-10-30 Thread sgee
Any reason why I can run ". runnit" from the SwingSet directory, but can't get this to compile? import com.sun.java.swing.*; public class test extends JFrame{ public test(){ this.setSize(300,300); this.setVisible(true); }//end constructor public static void m

Need glibc 2.0.7

1998-10-22 Thread sgee
Where can I get the glibc library version 2.0.7 Steve

Writing Out Ascii/Text Files

1998-10-22 Thread sgee
Using JTextArea: How can I write out an entire string without loosing the the hardreturns, spaces and tabs. I have tried to do: raf.writeBytes(jta.getText()); and raf.writeChars(jta.getText()); Is there anyway to just write out what I needthen be able to use while(next()) String line =

Redhat 5.0 Setup

1998-08-29 Thread sgee
Would someone mind telling me the files I need to setup the JDK on Redhat. Also, if you wouldn't mind, when I install the "glib??" files (something like that) what is the tar command to force them to overwrite the older versions. Sorry for the trouble, and thanks. Steve

Javac but no Java

1998-08-25 Thread sgee
Running Slackware 3.4 with JDK 1.1.5 I can run javac but when I run java Test in directory /java I get the error Test.class not find. My profile has "." set and I also export my PATH="$PATH:/java" but it still can't find it. Any ideas will be helpful. Steve Gee Maxor NPS Development "Do or Do N