Support Java on debian.

2005-03-11 Thread M.
Hi... i`am new here. and i need to give support with debian to so many Java webs apps.. and i don`t know how to do it. i am using apache 1.3.33 Debian Woody What i must to install?.. Jakarta + Tomcat? and how to? Plase... i need help Thanks pd: Sorry for my english it isn`t v

Re: Hi

2005-09-14 Thread M.
yea, that`s right, but anyway.. the list is working well, so we only need some problems to resolv... Regards Michael.- El mié, 14-09-2005 a las 10:10 -0400, S. Truong escribió: > * Eugenio Romano <[EMAIL PROTECTED]> [05-09-14 14:46:13 +0200]: > > > hi all!!! > > I'm a new subscrib

Question from a beginner

1998-12-29 Thread M . Patel
I would like to learn Java, I have a good understanding of C. can you recommend 1] Which versions(distribution) of Java, Linux, openwindows and any development kits to go for. 2] Any resources to learn Java. 3] What machine spec I would need to develop code.

More questions from a newbie

1998-12-31 Thread M . Patel
I know I should RTFM but there are so many FMs to read :} so here are the questions that would make these java posts more understandable what is SWING? what is lesstiff (i understand its a linux(3) command but what does it do, and why does every other post talk about it. What is the diffrence be

Which Linux distribution gives least problems with java dev

1999-01-06 Thread M . Patel
Currently I have SUSE and Red Hat both released around the same, June 1998. sitting on my computer desk. I want to avoid any pain with JAVA 2.0, netscape, IDEs, JDKs so which is best supported when all the new JAVA goodies come out. Regards. Mo

Sprites, 2D bitmap and classes available

1999-01-07 Thread M . Patel
Any body recommend Freely available Sprites, Bitmap, and Sound classes that are available. Java ofcourse.

RE Sprites, Bitmaps Java classes

1999-01-11 Thread M . Patel
>>Just what does this have to do with Java on LINUX? Simple I want to write Java Games on Linux, surely this is not unheard of.

Is it 1.2 or 2.0?

1999-01-11 Thread M . Patel
Is the next, version that we are all waiting for 1.2 or 2.0? We should at least klnow which version to wait around for while it is Beta tested

Re: First Step

1999-06-02 Thread Alex M.
First thing: remove kaffe If you're on redhat, do: rpm -q kaffe to see if it's installed. If it is, use rpm -e to remove it -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact

Re: jre and redhat 6

1999-07-07 Thread Alex M.
That's really strange that you are having that much trouble. Here's what I did to install java on RedHat 6: install redhat (easier than Windows, btw) uninstall kaffe (rpm -e kaffe) install jdk1.2-pre2 for linux And everything worked from there. Just to be sure, I even installed the 1.1.7 jdks,

Re: rh6 and linux solved

1999-07-07 Thread Alex M.
On Wed, 7 Jul 1999, steve patient wrote: > know where the jar files are. I wish someone had told me earlier about jar > files. It sort of explains why I couldn't find so many of the files Oh... well... we thought everyone knew about those. :P :) Seriously though, I have that annoying problem of

Re: Which "IDE" for Suse Linux?

1999-07-07 Thread Alex M.
Emacs with JDE On Wed, 7 Jul 1999, Alexander Schatten wrote: > which "IDE" can you recommend for Suse Linux V6 and Java 2. I just tried > Netbeans, and heard something about Kaffe? can someone give me more > hints? > > thanx > > Alex > > >

Re: JAVA multithread questions.

1999-07-08 Thread Alex M.
You create threads by making classes that implement runnable or extend thread. Calling .start() on those classes will make the code in the run() method of those classes execute in a new thread. So, that code should be your network connecting code. Good place to start is java.sun.com, follow the

Re: Debugging Java on Linux

1999-07-08 Thread Alex M.
Well, JDE for emacs is supposed to have a nice debugger interface, but I haven't used it. If you are coming from the windows GUI world, you would probably like the JDE. It's on the third party java-linux tools on blackdown's page. On Thu, 8 Jul 1999, Christian Cryder wrote: > Hi all, > > Can

Re: display text

1999-07-12 Thread Alex M.
That's because there is is no constructor for TextArea(byte[]). To do what you are doing you need to convert the byte array into a String. Remember, Java is not C. Characters are unicode and thus 2 bytes long. Strings are made up of unicode characters, not ASCII. -

Re: Java IDE for Linux?

1999-07-22 Thread Alex M.
emacs or xemacs with JDE is what I like the best so far. I've looked at NetBeans, and it's okay, but a little slow. I do like Together/J and Structure Builder that integrade modeling tools with code generation. On Thu, 22 Jul 1999, Guillermo Payet wrote: > > Hello, > > Can someone recommend

Re: Constructor/Inheritance wierdness

1999-07-27 Thread Alex M.
I've never seen that. I've only seen constructors called like: super(param1, param2, ...); On Tue, 27 Jul 1999, Tim Reilly wrote: > Hi, hopefully this one's a quickie. I'm using blackdown jdk 117v3 and > getting the following error message when compiling my TemplateList class. > > Ac

Re: Newbie question

1999-07-30 Thread Alex M.
Like my compadres before me said, native threads run at the OS level, and therefore can access multiple cpus. However, it is my understanding that this is the only time native threads should be used. On single processor systems, green threads are faster, and you aren't limited by any process lim

display problem I need some advice and help

1999-08-23 Thread M houppertz
Hello, I use JDK 1.1.7 v3 linux and latest version of all program and libs that ship with redhat I devlop program using a windows GUI (powerJ) I want to use my what I develop in MS windows under linux. I have 2 problems (i am using the same screen resolution under MS win and X) : - The window

Re: X-server

1999-08-25 Thread Alex M.
http://www.uk.research.att.com/vnc/index.html On Wed, 25 Aug 1999, Hanno Saks wrote: > Hi! > > Is out there available (or is even possible to do) any applets which can act > in framed HTML page as Xserver client > > Hanno > > > --

Re: Sometimes easy things are hard/impossible in Java

1999-09-09 Thread Alex M.
> I think a better solution is to override getForeground / getBackground > of the component to return something related to it's parents? So now you have to override all the gui components just to override one method? I would think that would be a lot of work for very little gain, not to mention

Re: Sometimes easy things are hard/impossible in Java

1999-09-09 Thread Alex M.
> When writing gui apps, most of the time i have to override most of the > components anyway, except for generic items such as buttons. But this is > the only way i see to implement color themes, because it works when you > add/remove components dynamically. The recursive setColor won't work in >

Re: want to use swing

1999-09-10 Thread Alex M.
Yes, you can download swing from java.sun.com/products/jfc/index.html On Fri, 10 Sep 1999, Sitanshu Bhusan Nanda wrote: > Hi, > > Can i use swing in jdk1.1.5? > Where can i download swing.jar or anything other than that which will > help me to use swing in my programs. > > Thanx. > Sitansu.

Re: Float -> Double conversion bug ?

1999-09-24 Thread Alex M.
That is actually documented I believe. It's not limited to jdk1.2. I don't know why it can't be just 0.3 but it is. This is why the language spec says not to compare floats and doubles without casting, you will always get negative results even though you think you should have a posi

Re: ¿How do it?

1999-09-27 Thread Alex M.
java.lang.runtime.exec On Sun, 26 Sep 1999, Juan Carlos wrote: > Hi friends, > > ¿How to execute an linux command, to obtain any > information, using Java?  (ex:  the CAT command).  > I have Red Hat version 5.3, and jdk1.1.5. > > Thanks > > > > ___

Re: Java and Enlightenment

1999-09-30 Thread Alex M.
I noticed this too under JDK 1.1.7 on Solaris 2.6. Some dialogs would move when you mouse over them. It seemed WM specific though. I had the problem running FVWM2 on Xfree86, but using Solaris CDE the problem wasn't present. The other thing was that the only application I noticed this kind of

Re: Changing the font on Swing slider

1999-10-08 Thread Alex M.
Yeah... I think it is in com.sun.plaf.DefaultLookAndFeel or something like that. On Fri, 8 Oct 1999, Jacob Nikom wrote: > Do you know where the information about > current settings is located? > > Jacob > > [EMAIL PROTECTED] wrote: > > > > hmmm... if that doesn't work, you might try overridi

Re: Stupid Newbie Questions: Catching unanticipated null pointer exceptions (Are there really any other kind =^)

1999-10-11 Thread Alex M.
> Exception in thread "main" java.lang.NullPointerException: > at java.awt.Container.addImpl(Container.java:316) > at java.awt.Container.add(Container.java:245) > at Tedit.(Tedit.java:100) > at Tedit.main(Tedit.java:557) The

Re: Const in java

1999-10-14 Thread Alex M.
So there is no added benefit to declaring a parameter final other than to allow access from inner classes within the method. On Thu, 14 Oct 1999, Vartan Piroumian wrote: > Hi folks, > > All parameters are ALWAYS passed by value in Java. > > When the parameter being passed is an object referenc

Re: Where is it?

1999-10-14 Thread Alex M.
You get those from java.sun.com, docs and apis. On Thu, 14 Oct 1999 [EMAIL PROTECTED] wrote: > OK. I am new to the java world and have installed java on my redhat 6.0 system. I >downloaded version 1.1.7 . I am missing the directory of docs and samples. Where are >these located? > -

Re: escape character

1999-10-15 Thread Alex M.
yes On Fri, 15 Oct 1999, Yohans Mendoza wrote: > hi all, I was under the impression that the escape character in java was > \. > is that correct? > > TIA > > --Yohans > > > ~ > Yohans Mendoza

Re: Still looking for a solution.

1999-10-21 Thread Alex M.
Do you have to use AWT frames? If you use a swing frame, you can use a glass pane to do what you are trying to do. On Wed, 20 Oct 1999, Wayne wrote: > Hello, > I'm close, but no cigar. I'm still trying to get a frame to accept key > events. > In file TestCntrl.java I have - > > import java.awt

where is the "jre" executable ?

2000-11-03 Thread Olivier M.
Hello, Sorry if it is a stupid question, but I didn't found an answer in any doc or FAQ. Just installed latest SDK from Blackdown under linux : javac and java are working fine, but I'm missing the "jre" command. I have some applications which are needing that (for example telebanking stuff) :

Re: where is the "jre" executable ?

2000-11-03 Thread Olivier M.
On Fri, Nov 03, 2000 at 07:56:33AM -0800, Nathan Meyers wrote: > It doesn't exist anymore; it's now the "java" command everywhere. well, but then it's not backward compatible at all : nothing is working (exceptions on start). I guess I will have to keep both JDK on my system. Thanks all for the

Re: where is the "jre" executable ?

2000-11-03 Thread Olivier M.
On Fri, Nov 03, 2000 at 01:49:46PM -0600, Joi Ellis wrote: > On Fri, 3 Nov 2000, Olivier M. wrote: > > > On Fri, Nov 03, 2000 at 07:56:33AM -0800, Nathan Meyers wrote: > > > It doesn't exist anymore; it's now the "java" command everywhere. > > >

jdk1.1.6-v1test applet viewer segfault.

1998-05-24 Thread Todd M. Roy
Hi Steve, Being brave and foolhearty, I gave 1.1.6v1-test a try. 1. command line java/javac work just fine. 2. appletviewer segfaults (dump below). 3. jdb fails not being able to find libnet_g.so (which is present for duty in /opt/java/lib/i686/green_threads. The Particulars of my sys

jdk1.1.6v1-test

1998-05-29 Thread Todd M. Roy
> Resent-Cc: recipient list not shown: ; > Date: Fri, 29 May 1998 08:42:12 -0700 (PDT) > From: Steve Byrne <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=us-ascii > Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] > Reply-To: [EMAIL PROTECTED] > Mailed-from: GNU Emacs (19.34.1), of course

Re: JavaHelp Experience

1998-10-15 Thread John M. Gulizia
Cynthia Jeness wrote: > > Tram, > > I see similar results and believe that this was a "bug?" introduced in the > second early access release. In order to work around it, I put all of my help > initilialization in the "run" method of its own class. Then I use > "SwingUtilities.invokeLater()" on

JRE in Linux

1998-06-12 Thread Christopher M. Perez
ut the JDK... -- ~~~ Best Regards, Christopher M Perez - Engineer IV Email - [EMAIL PROTECTED] Tektronix, Inc., Video Network Displays(VND) phone - (503) 627-4767 ** fax - (503) 627-1137 === normal mail === === speed

Re: installation?

1998-10-20 Thread John M. Gulizia
Clint Miller wrote: > > Hi there - > > I'm an experienced linux user but brand new to java. I've followed the > directions in the linux java faq > (http://www.blackdown.org/java-linux/docs/faq/FAQ-java-linux-3.html#ss3.2) > for installation on (a rigorously patched) i386 RH 5.1: > --(snip)-

Re: jdk 1.1.6-v5 and citrix java client

1998-10-20 Thread John M. Gulizia
Wolfgang Walter wrote: > > Hi ! > > When using jdk 1.1.6-v5 for running the citrix client I get a strange behaviour: > after the dialog 'connecting to ', when the main window has appeared > nothing is displayed in it till I move the window (but the client does not > hang, it just does not di

Re: Sun's ORB & Java-Linux

1998-10-20 Thread John M. Gulizia
Gerald Gutierrez wrote: > > Has anyone got Sun's ORB to work with Linux's Java port ? I'd like to > use CORBA with Java but it says on Sun's web page that JavAIDL is for > JDK1.2 only. It'd also be great if the ORB is actually stable. > Suggestions for alternative ORBs perhaps ? > > Thanks.STOP

Re: Zero sized display panes from recompiled jdk

1998-10-20 Thread John M. Gulizia
John Campbell wrote: > > Im getting very small display panes which cannot be resized > from my recompiled jdk1.1.6v5. The down-loaded jdk works > fine. I suppose i'm not loading lessTif correctly. Any ideas > about where to start? -John Campbell STOP E-MAILING TO [EMAIL PROTECTED]

Re: Java language question: static classes ?

1998-10-20 Thread John M. Gulizia
[EMAIL PROTECTED] wrote: > > I was looking at the Kim Topley "Core JFC" book particularly a > convenience class to swith the Swing/JFC PL&F (Chapter 13) > the other day I found it was declared like ? > > protected static class SwitchPLAFClass { >

Re: JavaSoft Java WebServer under Linux RH5.1

1998-10-20 Thread John M. Gulizia
Ernst de Haan wrote: > > Hi all Java and Linux-freaks! ;o) > > I was wondering if Sun's Java WebServer would run under Linux as well. > They sell it for either Solaris or Win32. I sent them a message, but > they haven't responded yet, so I thought I'd try for myself. I > downloaded a trial-versi

Re: libawt.so purgatory

1998-10-20 Thread John M. Gulizia
(Jon Peterson) wrote: > > Hi. > > I am trying to get jdk1.1.6v2 to run on a Slackware 2.0.30 machine. Class > files that do not import any awt calls parse fine, but awt and Swing > programs (while they compile to bytecode) fail to run on the VM with the > following report: > > /usr/local/java/b

Re: Newbie...

1998-10-20 Thread John M. Gulizia
Danny Ayers wrote: > > I'm not at all familiar with Linux, and can't find a way of setting the > CLASSPATH environment variable (or any other). I know this is a basic > question, but I have had a good search elsewhere to no avail. I've got > the 1.1.6 JDK working ok, but would like to access some

Re: rmid with JDK1.1.6

1998-10-20 Thread John M. Gulizia
Michael Kranz wrote: > > Hello, > > I didn't find the RMI-Server rmid within JDK1.1.6. How can I implement RMI > on a Server under Linux? Any documentation abou this? > > Thank you and best regards > Michael > - > Gesellschaft

Re: Java Plugin doesn't work

1998-10-20 Thread John M. Gulizia
Robert P. Biuk-Aghai wrote: > > I installed the Java Plugin (activator-linux-glibc) on Linux 2.0.34 > with Netscape 4.06. At the end of installation I'm told: > > Java(TM) Plug-in installation done. > > but in the Netscape window it says: > > You do not have the Java(TM) Plug-in installed.

Re: javac dies silently

1998-10-20 Thread John M. Gulizia
strider wrote: > > Greetings. > > I notice that, after the 1.1.5 distribution of Java on Linux, regardless of > which port or subversion I try, javac no longer works. It seems to be a link to a >file called .java_wrapper, which basically sets a bunch of system vars. Wha > > What do I need t

Re: Another Classpath question

1998-10-20 Thread John M. Gulizia
Alton Goodman wrote: > > I'm attempting to learn java using the tutorial at java.sun.com. My > platform is Linux 2.0.30, a Slackware install. I installed jdk1.1.6v4a > per the instructions in the README file. I haven't set the CLASSPATH > env variable. > > So I wrote a program Date.java and p

test

1998-10-21 Thread M. N. Khan
testing...

Barcode Scanner / Cash Registers

1998-10-22 Thread M. N. Khan
Hello all. Has anyone worked with java and cash registers / barcode scanners etc..? I need to know which ones are compatible with java and linux, so I can buy the right ones. I will be writing a java program on linux for a Retail clothes company who want a complet stock and sales software. Any i

Re: Java file cannot be found?!

1998-10-22 Thread Terry M. Lee
Daniel Harris wrote: Dear java-linux group, Having installed your lovely port of jdk116v2 yesterday I started right away with alittle project I have been thinking about...I had to do some packaging and my files are all residing in /usr/local/jdk116v2/classes/ The classpath has been set to /usr/lo

Re: [Java-Linux] about this list ...

1998-11-12 Thread Seth M. Landsman
On Thu, Nov 12, 1998 at 10:46:13PM +0100, olivier Dulac wrote: > > Hi, > > Sorry for this isn't a java-related message, but it a few suggestions > about the list itself, and people using it... > > 1) include [Java-linux] in your Subject:, for every mails to this list > >*please* put a

1.2 for Linux

1999-01-27 Thread Stotler, John M.
  I'm currently checking http://www.blackdown.org/java-linux/ports.html#jdk1.2 once or twice a day to see if the 1.2 JRE's been released yet, since we're releasing a 100% Java web-based training package in the next couple of days. I noticed

Re: Offering help on 1.2.

1999-02-01 Thread Seth M. Landsman
> We still don't have anything to work with though, or even > acknoledgement that someone who is dealing with the situation has seen > my request yet. If this was a truly open source project, we'd have > already gotten to the code and fixed it by now :). Instead, we have to > wait for someone to

Re: another Linux JDK?

1998-07-10 Thread Seth M. Landsman
r: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Fri, 10 Jul 1998 10:06:00 -0400 To: "Seth M. Landsman" <[EMAIL PROTECTED]> From: Randall Horn <[EMAIL PROTECTED]> Subject: Re: Pricing? Details? In-Reply-To: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/p

New kernel

1999-03-06 Thread Jens M Andreasen
Alan Cox has put out a new kernel to solve the multicast issue ftp://ftp.uk.linux.org/pub/linux/alan/2.0.37pre/2.0.37-pre-patch-8.bz2 ( ) --c[]--- [EMAIL PROTECTED] ---C---

java and glibc2.1

1999-03-13 Thread Seth M. Landsman
Grr ... So debian unstable branch has gone to glibc2.1, which breaks many, many things, including the jdk1.1.7 from blackdown. So, while I really would like to participate in the debugging effort of debian, my lack of having a play machine and the necessity of doing real work h

possible 1.2 problem report ...

1999-03-13 Thread Seth M. Landsman
Okay, I just grabbed and setup in a tmp directory the jdk1.2pre1 on a freshly installed slink debian 2.1 system. I have a research system with a gross number of objects and files which I've written using (exclusively) the various 1.1 blackdown jdks. Under 1.1.7, the system initi

admending previous report ...

1999-03-13 Thread Seth M. Landsman
Okay, let me admend the report. Specifying java -green, the system doesn't come up. Specifying java -native, the system does come up. I thought green threads were working and native threads were broke. I guess I'm not paying close enough attention ... Sorry about that. The sys

The OSF JDK and TurboJ ...

1998-07-10 Thread Seth M. Landsman
... are not the same thing! There is TurboJ, which appears to be a Java -> Native ahead of time compiler. There is also OSF's JDK, which is a 1.1.6 JDK with linuxthreads support. These are not the same! The JDK appears that it will be free for non-commericial us

Re: Linux/Java/KDE

1998-07-21 Thread Seth M. Landsman
On Tue, Jul 21, 1998 at 06:27:31PM +0200, Joachim Schaaf wrote: > Joe Carter wrote: > > Joachim Schaaf wrote: > > > > > > > > Are there any plans to port java so that it uses the KDE toolkit > > > > (http://www.kde.org)? > > > > > > I don´t know, but I consider this a good idea. Any volunteers :)

Thanks Team

1999-03-21 Thread Gavin M. Bell
Thank you oh so much -- Gavin M. Bell (UNIX SEMPI) RandomWalk -> *Software Developer http://www.randomwalk.com/~cue/ [EMAIL PROTECTED] (212) 480-5823 --- "I'm trying real hard to be the shepherd." -Samuel Jac

InetAddress

1999-03-30 Thread M. Suresh Babu
Hello everyone, Im just switched over to 1.2 in linux (nice work!). Im facing one problem. i dunno if it is a bug or correction in new release. Using 1.1.7, the static method 'InetAddress.getLocalHost()' returns the local machine address. But the same in 1.2 returns some other diff

Re: Swing on Linux

1999-06-10 Thread Seth M. Landsman
On Thu, Jun 10, 1999 at 07:45:49PM -0400, Nelson Minar wrote: > I've just started looking at using Swing for my Java project. It seems > really really slow. Is anyone here seriously using Swing under Linux, > without a JIT? Is there some way to improve things? Do JITs make > enough difference to m

Re: Exception in thread "main"

1999-06-10 Thread Thomas M. Sasala
gt; > sample and demo files, own files no matter... > > PATH points to the jdk/bin directory and CLASSPATH is set > > (JDK1.2 on RedHat6) > > please help me someone ! > > > > thanx Eric Ballnath -- +--

Re: Swing on Linux

1999-06-11 Thread Seth M. Landsman
On Fri, Jun 11, 1999 at 12:07:12PM -0400, Nelson Minar wrote: > >How can I get the swing classes for jdk117v3 > > Go to http://java.sun.com/, find the Swing page, and download the > release. All you really need out of it is swingall.jar, put it in your > classpath and you're set. > > A bit more

RE: tya (where to put)

1999-06-13 Thread Jens M Andreasen
A good place to put tya is where this particular incarnation of JDK will look for it. In my case that would be: /usr/local/jdk117_v1a/lib/i686/native_threads/libtya.so -- ( ) --c[]--- [EMAIL PROTECTED] ---C--- -

jni for linux

1999-06-26 Thread Subash Bohra M
Hi & a congradulations for your wonderful outcome. Is there jni support available on linux. If yes please inform from where could I avail the same. Thanks, Regards, subash. mailing address: [EMAIL PROTECTED] -- To UNSUBSCRIBE,

Re: Modal JDialog never returns (Bug?)

1999-06-29 Thread Thomas M. Sasala
System.out.println("SUCCESS: str=" + str); } } } -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461

Re: Modal JDialog never returns (Bug?)

1999-06-29 Thread Thomas M. Sasala
orks > for me and a few others. Is everyone who has it running, running a >= > glibc 2.1 machine? I've heard problems with glibc 2.0.36. Actually > I've heard problems with glibc 2.1 too, but in this case it works. > > -Jim +---

Re: Java IDE

1999-06-30 Thread Thomas M. Sasala
or). Many thanks. -T -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461 White Granite Drive, Suite 102(W)(703)277-1714 + + Oakton, VA

Re: javacomm

1999-07-06 Thread Thomas M. Sasala
a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461 White Grani

Re: AW: javacomm

1999-07-06 Thread Thomas M. Sasala
: Re: javacomm > > >Date: Sun, 04 Jul 1999 22:22:22 -0700 > >From: Kevin Ryan <[EMAIL PROTECTED]> > > >The Sun comm API stuff is at: > > http://java.sun.com/products/javacomm/index.html > > It says to "choose a platform". Which one do we

Re: IBM-jdk

1999-07-08 Thread Thomas M. Sasala
gt; thanks. > > Justin. > -- +-------+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461 White Granite Drive, Suite 102(W)(703)277-

Re: Has Sun Overstretch Themselves With So Many APIs?

1999-07-09 Thread Thomas M. Sasala
assistance, I think that you will find that SUN has __very__ > close links with the blackdown guys and do offer help when it's requested. > > ( for what it's worth ) > > Regards > > --Jools > -- +-

Re: Has Sun Overstretch Themselves With So Many APIs?

1999-07-09 Thread Thomas M. Sasala
t; true statement about Java. > > -Larry Gates > -- +-------+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461 White Granite

Swing Priority

1999-07-20 Thread Thomas M. Sasala
Any suggestions? -Tom -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461 White Granite Drive, Suite 102(W)(703)277

[Fwd: Swing Priority]

1999-07-20 Thread Thomas M. Sasala
mple called "SwingWorker". > > Alexander > > On Tue, Jul 20, 1999 at 08:22:22AM -0400, Thomas M. Sasala wrote: > > Does anyone know what the priority of the Swing > > Event processing thread is? I have an application that needs to > > process very

[Fwd: [Fwd: Swing Priority]]

1999-07-20 Thread Thomas M. Sasala
I/O thread > to be lower than that of the Swing thread. > > Alexander > -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj

[Fwd: [Fwd: [Fwd: Swing Priority]]]

1999-07-20 Thread Thomas M. Sasala
riority as the event handler and let the OS take care of time slicing. Clearly the JVM is not that robust though. -T "Robert A. Crawford" wrote: > > On Tue, Jul 20, 1999 at 12:32:19PM -0400, Thomas M. Sasala wrote: > > Setting my task to MIN_PRIORITY fixes the

Re: Newbie question

1999-07-30 Thread Thomas M. Sasala
ibe". Trouble? Contact [EMAIL PROTECTED] -- +-------+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461 White Granite Drive, Suite 102

Re: LinuxPPC/jdk116_v5/jdk117_v1a

1999-08-04 Thread Thomas M. Sasala
- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL

Re: Communications Benchmarking

1999-08-17 Thread Thomas M. Sasala
- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technolog

Re: Having trouble with zapf dingbats font

1999-08-27 Thread Thomas M. Sasala
deas what I'm forgetting or doing wrong? > > Thanks in advance. > > Vartan > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTE

Re: serial connection.

1999-08-31 Thread Thomas M. Sasala
ne. > TIA. > Wayne > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL

Re: OT: Mailing list control

1999-09-02 Thread Thomas M. Sasala
f a joke or revenge. The topic > of using better mailing-list software has come up before, but it never > seems to get anywhere. Such software is freely available. > > Nathan > -- +---+ + Thomas M

Re: listining action from child frame

1999-09-02 Thread Thomas M. Sasala
ease let me > know. > > With regards, > alpesh > -- +-------+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutionshttp://www.mrj.com + + 10461 White Gran

status of java plugin

1999-09-08 Thread Aaron M. Stromas
hi, i've searched the mailing archives for information regarding the java plugin.  it appears that it's been pulled over a year ago. does anyone have any knowledge about it? will it re-appear? if so, when might it happen? tia for any clues, --  Aaron Stromas    | "Tick-tick-tick!!!... ja, Pantani

Re: about using JFC

1999-09-09 Thread Thomas M. Sasala
- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL

Re: Gosling says he wants to support Java on Linux

1999-09-10 Thread Thomas M. Sasala
y here is the libraries, not necessarily the distribution or even the kernel. (Although, each major kernel release breaks as many things as it fixes ;)). BTW, isn't Java supposed to free us of porting problems ;) -Tom -- +---

Re: Class not found

1999-09-15 Thread Thomas M. Sasala
BE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTECTED] + + MRJ Technology Solutions

Re: Swing Problems

1999-09-15 Thread Thomas M. Sasala
-- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +---+ + Thomas M. Sasala, Electrical Engineer [EMAIL PROTE

Re: Is there sound in java1.2 APPLICTAIONS ?

1999-09-16 Thread Thomas M. Sasala
real > sound support in main JDK. > > Artur > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- +-

Re: Java implementation question

1999-09-17 Thread Thomas M. Sasala
ow much penalty does the requisite Jini > boundary cost? Not being familiar with the package, I can't say. It is possible though. FWIW, did you mean the java native interface (JNI) or Jini (the 'technology')? -Tom -- +

JAVA on LINUX (RedHat 6.0)

1999-10-02 Thread Patrick M. Alleyne
s/4    S    14:33   0:00 /opt/jdk1.2/bin/i386/native_threads/rmid -log /export2/jiniuser/logs/   Any thoughts would be great !   Patrick M. Alleyne[EMAIL PROTECTED]  

ibm jdk 118 and apache jserv

1999-01-02 Thread Aaron M. Stromas
greetings, having read how fast the ibm's jvm is i decided to compile apache jserv with it. unfotunately, i was getting a library load errors, "unsatisfied symbol: __bzero" in libjava.so. the old trick of defining macro bzero in term of memset didn't work this time.  what would be the least intru

jaas

1999-11-11 Thread Aaron M. Stromas
greetings, the requirement for jaas is java 2 v1.3. does anybody know the specific dependencies on v1.3? i'm hoping it can be used on linux 1.2pre if certain things are avoided. can anyone comment? tia, -a -- Aaron Stromas| "Tick-tick-tick!!!... ja, Pantani is weg..." Oracle Corp |

  1   2   >