RE: green thread support

2005-05-02 Thread Schaad,John G - TOC
jre/bin:$PATHexport PSLFDIR=~/upslf142export CLASSPATH=~/upslf142/classesexport LD_LIBRARY_PATH=~/upslf142/classeswhich javajava -versionjava -jar ~/upslf142/classes/pslf.jar $1   I hope that helps, Lee.  Let me know any additional questions you might have, and also if you can develop successful methods

Preconfigure fails for j2re1.4 on debian testing

2004-11-27 Thread John Heim
I keep getting an error message when I try to install j2re1.4. It says it it failed to preconfigure with exit status 10 (see below). I am following the instructions at http://www.blackdown.org/java-linux/java2-status/jdk1.4-status.html. I've also done these things before trying to install: # a

Using JNI to run root-priviledged tasks

2004-06-20 Thread John Varghese
Hello all I am using Linux 7.2 and j2sdk1.4.1 I would like to use JNI to perform some root-priviledged tasks say like adding users to system, restarting some daemons, Can anyone pls suggest how this can be done Regards John

1.4.1 for ppc

2003-10-24 Thread John Rigby
Are there any plans for 1.4.1 for PowerPC? Thanks John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Volano Report update

2003-06-04 Thread John Neffenger
support it. If Java and NPTL are working together already, that changes everything. Just when I thought I was done testing for a while ... John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "u

Re: Volano Report update

2003-06-04 Thread John Neffenger
before we see any benefits. I read that IBM needs to make changes in their Java VM on Linux to support it, for example. Is that correct? John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubs

Re: Volano Report update

2003-06-04 Thread John Neffenger
o add. :) [EMAIL PROTECTED] john]$ /usr/java/jdk1.3.1_07/bin/java -green -version Green threads support not available Could not create the Java virtual machine. Even if it could run with green threads, Sun never fixed the following bug and therefore could never handle more than 1,018 concu

Volano Report update

2003-06-01 Thread John Neffenger
s to compare the message throughput at 50,000 connections on a new Hyper-Threading Pentium 4 with a gigabyte of dual-channel memory, for example. John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of &qu

Re: per jvm thread limit

2003-02-14 Thread John Neffenger
e can use to get Sun's HotSpot Server VM on Solaris there, too: http://java.sun.com/docs/hotspot/PerformanceFAQ.html#5 Java and Solaris Threading http://java.sun.com/docs/hotspot/threads/threads.html John Neffenger ---

Re: per jvm thread limit

2003-02-14 Thread John Neffenger
Add to /etc/pam.d/login: sessionrequired /lib/security/pam_limits.so Add to /etc/security/limits.conf: * softnofile 1024 * hardnofile 10240 Don't forget to add a "ulimit -n 10240"

Re: per jvm thread limit

2003-02-13 Thread John Neffenger
ally run out of room. That's why I appreciate the "-green" option on the Blackdown Java VM. With user-level threads, you can pretty much have all the threads you want (or, on Java 1.3 without the new I/O, all the threads you need). John Neffenger Joseph Shraibman wrote: I

Solved - Re: Segmentation violation (even with ulimit -s 2048)

2002-12-02 Thread John Neffenger
may want the Glibc fix as well. John Neffenger John Neffenger wrote: I had been running Blackdown 1.3.1-FCS (green threads, nojit) without any problems for over a year on a system with Linux Kernel version 2.2.16 and Glibc 2.2.4 on a Red Hat Linux 7.0 base. I've been using the "u

Segmentation violation (even with ulimit -s 2048)

2002-11-05 Thread John Neffenger
7.22.4.18 2.2.4 7.3 2.4.18 2.2.5 8.02.4.18 2.2.93 Thanks, John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

browser timeout

2002-04-30 Thread Brittingham, John
I have a problem with (I think) browser timing out. I have an application that runs queries on a MySQL DB. It completes all the queries according to my MySQL log but about 2.5 min into the application the browser says done and does not post the rest of the data. Meanwhile the queries are still run

Re: Why do threads take so long to wake up underlinux

2002-02-23 Thread John D. Mitchell
o that task which always used up their entire quantum were all put onto one set of CPUs while those that did not and so went onto another set. Then have different quanta specfied for the different CPU sets -- longer for the former and shorter for the latter. Take care, John ---

Re: Why do threads take so long to wake up underlinux

2002-02-20 Thread John Levon
On Wed, Feb 20, 2002 at 02:14:37PM -0500, Uncle George wrote: > Maybe Linux needs a scheduler module? http://resourcemanagement.unixsolutions.hp.com/WaRM/schedpolicy.html regards john -- "They eat cold meat for breakfast and make jokes about gzip." - Rik Hemsley on K

Re: [ANNOUNCE] Java 2 Standard Edition v1.3.1-02a-FCS for Linux

2002-01-17 Thread John R MacMillan
Excellent, congratulations! Quick question: is this based off the Sun 1.3.1_02 source? In particular, there's a JVMPI fix Sun put into 1.3.1_01 that I'm wondering if is in this release (BugParade ID 4478223). Th

Re: Using this() in constructors

2002-01-10 Thread John D. Mitchell
thread, that's just another way to homogenize the signatures (since now you're dealing directly with the factory method rather than a passel of constructors). [Factories do, of course, have all sorts of usefulness.] Take care, John --

Using this() in constructors

2002-01-09 Thread John D. Mitchell
t go one single step further than you already have -- i.e., make all of your constructors just wrappers around an internal helper method. I think it's bad design for different constructors of a class to throw different exceptions. [Since design also isn't on-topic for this list,

Using this() in constructors

2002-01-09 Thread John D. Mitchell
t go one single step further than you already have -- i.e., make all of your constructors just wrappers around an internal helper method. I think it's bad design for different constructors of a class to throw different exceptions. [Since design also isn't on-topic for this list,

Re: who calls a method

2001-10-12 Thread John R MacMillan
|> Basically, if your code relies on this for its behavior, |> it's likely to break at some point. Different VMs will give |> different output anyway. | |Yep... this is good for dumping info to be read by humans. If |you want a data structure usable from software, you'll need to |implement a prof

VolatileImage, mit-shm, and DGA

2001-09-23 Thread John Richardson
Does this mean that using DGA won't work (I assume MIT-SHM is already employed for BufferedImage itself). thanks, John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

ARM libraries in big-endian format

2001-08-02 Thread Pinkney, John
big-endian format as well as little-endian? Thanks John

FlexLM license manager, Java and Linux

2001-07-03 Thread Peter John Cameron
I've been playing around with FlexLM for Java on Linux, in anticipation of my company using it as the license manager for our Java client-side application. I'm trying things out with Sun's Java SDK 1.3.1 on Suse 7.0 (Professional), and can't get FlexLM working. It seems to be a Linux thing, since

Program flow tools (was Re: Java equivalent of outportb?)

2001-06-08 Thread John R MacMillan
|hi all, can anyone tell me if there is a way to trace into source |code and find out which class is invoked and which method in |various java classes. i don't have documentation of a project |which i've been assigned to and need to reverse engineer the |classes and then get the various paths fro

Re: Object sizes

2001-05-28 Thread John D. Mitchell
prevent dead objects from > skewing the statistics). This is still very rough: there's no data on > individual object memory use, but at least you'll get an idea of overall > use from your various approaches. Um, er, IIRC, doesn't HotSpot completely ignore the Runtime.gc() &q

Re: Object sizes

2001-05-28 Thread John D. Mitchell
your test application with a representative set of the different images that your application uses (i.e., big ones, little ones, whatever). Remember to e.g., divide by 100. :-) Hope this helps, John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Object sizes

2001-05-28 Thread John D. Mitchell
://www.jGuru.com/faq/JavaLanguage Go wild, John -- jGuru.com -- Unleash the Guru Within! JavaWorld.com -- Share your Tips and Tricks! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Very odd exception

2001-05-14 Thread Rousseau, John
The SINGAL 11 is the key. The VM appears to have taken a segmentation fault while it was trying to handle the error. Seeing that you are running 1.3.1rc2, I just want to verify that you aren't using LD_ASSUME_KERNEL=2.2.5 anymore. I would report this to Sun. -John On Monday May 14,

Re: New Volano Report

2001-04-17 Thread John Neffenger
l in the Solaris J2SE SDK. > But the HP does not participate with the expert group for the JSR #51. > I feel it is strange. I was pleased to see that Dan Kegel is on the group, though, since he gives the most thorough discussion of the problem: The C10K Problem http://www.keg

Re: New Volano Report

2001-04-17 Thread John Neffenger
asks or limits in the Linux threads library. The other failures are due to bugs. There are, of course, applications which need good processor scalability. But as far as VolanoMark and our VolanoChat product are concerned, what good is processor scalability, or even superb performance in general, when

New Volano Report

2001-04-14 Thread John Neffenger
JIT Compiler for Java http://www.openjit.org/ I tried OpenJIT, javacomp (Borland), shuJIT, sunwjit (Sun), and tya. OpenJIT was the fastest in my VolanoMark tests and seemed to be the most stable. Thanks, John Neffenger --

Re: J2ME Development on Linux?

2001-04-12 Thread John N. Alegre
And no one I know takes Borland very seriously! john On 12-Apr-01 Joi Ellis wrote: > On Thu, 12 Apr 2001, John N. Alegre wrote: > >> Looking for input. >> >> What is the current favored environment for developing J2ME on Linux? Is >> there >> anything

J2ME Development on Linux?

2001-04-12 Thread John N. Alegre
normal choice of Linux as my working platform. All comments welcome. john -- E-Mail: John N. Alegre <[EMAIL PROTECTED]> Date: 12-Apr-01 Time: 10:44:57 This message was sent by

1.3 source diffs?

2001-03-30 Thread John R MacMillan
Where can I find the 1.3.0 source diffs? I've poked around the website and ftp mirrors, and the mailing list archive but haven't found anything. Thanks, John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a

Java Community Process (JCP) Survey

2001-03-14 Thread John D. Mitchell
do so, so let me if I can quote you or not (or if you want me to double check with you first). Send your comments to: [EMAIL PROTECTED] Take care, John -- jGuru.com -- Unleash the Guru Within! JavaWorld.com -- Share your Tips and T

Re: I want to use java on IA64Linux

2001-01-31 Thread Rousseau, John
his happens (if ever), Blackdown should be able to port JDK1.3 in a fairly short amount of time. -John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: server sees no body when doing HTTP POST

2001-01-29 Thread John D. Mitchell
ling with HTTP in Java, rather than reading all of the related RFCs and trying to implement them yourself, I strongly suggest that people use (and enhance!) an existing HTTP client package such as the open source HTTPClient, http://www.innovation.ch/java/HTTPClient/ Take care, Jo

IBM jdk problem

2001-01-07 Thread John Plate
Hi I installed the IBMJava2-13 according to the instructions. When invoking "java" I get: sigaltstack: Function not implemented Can anyone help? Thanks! -- John Plate -- To UNSUBSCRIBE, email to [EMAIL PROTECT

Re: JNI pthreads problem

2000-12-14 Thread Rousseau, John
On Thursday Dec 14, 2000, Valerio Ferrucci wrote: > "Rousseau, John" wrote: > > > libhpi.so is the threading package. The one in native_threads is the > > LinuxThreads version. The one in green_threads (amazingly enough) is > > the Green (Sun's

Re: JNI pthreads problem

2000-12-14 Thread Rousseau, John
uses it itself. It's a very strange model in which Apache sends a request to your module and you start up a VM to handle it. You probably should start your VM as a seperate process and use a socket to communicate. -John --

re: problems with RSA signed applets

2000-12-11 Thread John Richardson
. The solution is to get a Verisign or Twarte certificate. Certificates signed by GTE, etc... don't work. John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Mozilla v0.6 and Blackdown JRE plugin 1.3.0

2000-12-10 Thread Ilagan, S. John
I seem to be getting the following error while installing the blackdown.org jre 1.3.0 plugin with Mozilla v0.6 /usr/local/mozilla/run-mozilla.sh /usr/local/mozilla/mozilla-bin MOZILLA_FIVE_HOME=/usr/local/mozilla LD_LIBRARY_PATH=/usr/local/mozilla LIBRARY_PATH=/usr/local/mozilla:/u

Re: Request: No more generic Java questions

2000-12-09 Thread Rousseau, John
disseminate information. If you want a 'live' discussion, AOL has plenty of chat rooms. -John ---- John Rousseau [EMAIL PROTECTED] SilverStream Software Phone: +1 978 262 3564 2 Fede

Re: CVS vs RCS vs ? Thanks

2000-12-07 Thread John D. Mitchell
27;t used it yet. It's okay and continues to improve. There's also a GUI interface (for the Winpuke users :-) and a new web-based interface. ObJavaLinux:jGuru uses Perforce running on Linux boxes and the www.jGuru.com web site is hosted on Linux boxes running

problems with RSA signed applets

2000-12-06 Thread John Richardson
an upgraded glibc. Am I doing something wrong or is RSA certificate on Linux not enabled or maybe a need to find a different browser? thanks, John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "un

Re: problems with serial port communication

2000-11-13 Thread Peter John Cameron
What's the consensus on the best Java IDE to use? I develop with VAJ 3.02 and JDK1.2 on w*nd*z* at work. I downloaded VAJ 3.02 for Linux. Unfortunately at the weekend I discovered that you can't simply "update" VAJ 3.02 for Linux from 1.1.7A to 1.2.2 :( I've only used VAJ so I'd like something wi

suse 7.0, IBM java and glibc

2000-10-30 Thread Peter John Cameron
Where can I find a Suse rpm of the latest glibc, or at least glibc > 2.1.0? Suse 7.0 Professional doesn't seem to include any glibc package (why not?) and all my web searches have proved fruitless. I need glibc > 2.1.0 for the latest IBM Java SDK. I downloaded source for glibc and a threads packag

which jdk?

2000-10-06 Thread Peter John Cameron
I've downloaded three versions of JDK 1.3 from Sun, Blackdown and IBM. Which JDK works the best? I'm currently using Suse 6.4, but haven't yet tried development with its JDK1.1.8 (which doesn't appear to have Java Threads, right?). Also, does 1.3 and Linux give any problems with: Sun's Java 3D,

unsubscribe

2000-08-30 Thread John Rylaarsdam
unsubscribe begin:vcard n:Rylaarsdam;John x-mozilla-html:TRUE version:2.1 email;internet:[EMAIL PROTECTED] x-mozilla-cpt:;0 fn:John Rylaarsdam end:vcard

Re: user.home undefined for 1.1.8v1 under certain circumstances

2000-07-19 Thread Rousseau, John
s. If any of these fail (which I am anticipating), you should fix your yp installation. This is not a Java problem. -John John Rousseau [EMAIL PROTECTED] SilverStream Software

Re: IA-64 Blackdown Java port?

2000-07-13 Thread Rousseau, John
On Thursday Jul 13, 2000, [EMAIL PROTECTED] wrote: > Is anyone working on an IA-64 Linux Blackdown Java port? > Current IA-64 releases can be found at www.linuxia64.org. Yes. -John ---- John Ro

Re: servlets sharing i/o file

2000-07-06 Thread Rousseau, John
ed". This tells the Java VM to only let one thread into that method at one time. This way, all of the callers will need to wait their turn to read or write the file. This has some implications on performance, but that's the classic tradeoff between safety and performance i

OT: C#: Yet Another Programming Language?

2000-06-30 Thread Rousseau, John
This seems to cover the topic quite nicely. http://dailynews.yahoo.com/h/zd/2630/tc/c_yet_another_programming_language__1.html -John John Rousseau [EMAIL PROTECTED] SilverStream Software

Looking for JAVA for ARM LINUX

2000-06-16 Thread Baik, John
Is there JAVA for ARM LINUX ? I have a custom designed StronARM board(SA1100) with LINUX. Thanks * Jonghyeon Baik [EMAIL PROTECTED] Sr. S/W Engineer phone: 301- 490-4007 x15 Applie

Re: Kaffe/AWT

2000-06-12 Thread John N Underwood
ion-layout-manager.html + GUI Libraries http://www.javaworld.com/javaworld/tools/jw-tools-guilib.html * - not open source, but may be free to use ** - source available, but non-commercial use only *** - GPL-like license -- John N U

Re: JavaOne - no green threads for Linux

2000-06-09 Thread Rousseau, John
ignificantly benefit from hundreds of threads? A performance critical application server that needs to handle hundreds of simultaneous requests and wants to keep a pool of threads around so as to not re-instantiate a client thread per incoming

Re: libjvm.so not found

2000-06-02 Thread Rousseau, John
need to add both the jre/lib and jre/lib/classic directories. -John John Rousseau [EMAIL PROTECTED] SilverStream Software Phone: +1 978 262 3564 2 Federal Street

SilverStream ships Linux port

2000-05-10 Thread John Rousseau
iated! -John John Rousseau [EMAIL PROTECTED] SilverStream Software Phone: +1 978 262 3564 2 Federal St. Fax: +1 978 262 3499 Billerica, MA

RE: Multiple Platforms

2000-05-10 Thread John Rousseau
directly is to send mail to '[EMAIL PROTECTED]' with the Subject of the message "unsubscribe". If this doesn't work, you will need to look at what other mailing lists you are on to see if any of them may be subscribed to this list. -John -

Re: Multiple Platforms

2000-05-09 Thread John Rousseau
well the imbedded JVM in your pool skimmer is working. :-P -John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Multiple Platforms

2000-05-09 Thread John Rousseau
> machine says "Exception in thread "main" > > java.lang.NoClassDefFoundError: First_tst/class. Any Ideas. You need to run the command "java First_tst", _not_ "java First_txt.class". -John ----

Re: how linux find .h?

2000-05-08 Thread John Rousseau
are some much better forums for generic C programming questions. This list is for questions pertaining to using Java on the Linux platform. Thanks -John PS. Look at the '-I' option to gcc in the gcc man page ("man gcc"). ----

Downloading web pages

2000-05-02 Thread john
of the web server. however the java execution is slow and this does not generate much of traffic via a proxy server. does anyone know how improve performance ? thanks all john --- Christopher Hinds <[EMAIL PROTECTED]> wrote: > Why is the proxyPort parm in those brackets? > > The comma

Re: Loading .so file in java application on Linux

2000-05-02 Thread John Rousseau
the unix platforms, System.LoadLibrary("foo") will look for libfoo.so on your library path. You should probably rename hello.so to libhello.so . The library path should contain a list of directories to search for libraries. If libhello.so is in /users/boris/myli

Re: Thread priorities don't work with native threads

2000-05-01 Thread John R MacMillan
I think you could rephrase that as "In Java, Thread priorities don't work". :-) The language guarantees about thread priorities are probably weaker than you expect. Quoth the language spec: "Every thread has a priority. When there is competition for processing resources, threads with higher prior

how to set proxy via the command line

2000-05-01 Thread john
that how do we enter this. via the command line... I get the following error if I enter it via the command line as above, Exception in thread "main" java.lang.NoClassDefFoundError: URLReader please let me know as to what is error earlier post that i posted --- jo

accessing a web page via a proxy ?(how to)

2000-05-01 Thread john
e the requests via a proxy server. thanks john __ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im.yahoo.com/ -- To UNSUBSCRIBE, email

RE: Java security question

2000-04-21 Thread john
this. fine java applications can access system resources. but not applets. they do not have the rights to run beyond the JVM(sandbox). please correct me if i am wrong. thanks john --- Zack Grossbart <[EMAIL PROTECTED]> wrote: > Rajesh, > > The scheme you are discussing is

Re: JAVA_HOME

2000-04-06 Thread John Louis
Hi, I just install IBM JDK1.1.8, and set my .bash_profile like: JAVA_HOME=/usr/jdk118 PATH=$PATH:$HOME/bin:/usr/jdk118/bin ENV=$HOME/.bashrc CLASSPATH=/usr/jdk118/lib export ENV PATH export CLASSPATH=$JAVA_HOME/lib/classes.zip:$CLASSPATH mesg n I try to compile jdk118 demo, and run it, its wor

Re: Servlet

2000-04-06 Thread John Rousseau
ar from the Sun site. http://java.sun.com/products/servlet/ -John ---- John Rousseau [EMAIL PROTECTED] SilverStream Software 1 Burlington Woods

Re: Servlet

2000-04-06 Thread John . Folkers
RTFM!!! Vida Luz <[EMAIL PROTECTED]> on 04/06/2000 01:02:32 AM To: [EMAIL PROTECTED] cc: Subject: Servlet Hi, Good Day !!! I need begin to work with servlet, But I need to know: What I have installed in my server? My server is Linux and my jdk es version 1.2, I need other

Re: JAVA_HOME

2000-04-06 Thread John Louis
Hi,    I  set my JAVA_HOME = /usr/jre118/, and using rpm -ivh --nodeps, still got the same error.     Louis - Original Message - ±H¥óªÌ: Riyad Kalla ¦¬¥óªÌ: John Louis ¶Ç°e¤é´Á: 2000¦~4¤ë6¤é ¥D¦®: Re: JAVA_HOME I'm pretty sure JAVA_HOME should be the base of

JAVA_HOME

2000-04-05 Thread John Louis
Hi,    I installed IBMJava118-JRE-1.1.18 on my redhat system, and set all the path & classpath.  The JAVA_HOME I set to /usr/jre118/bin,  and I'm try to install IBMWebAS-core-2.03-1.i386.rpm using rpm -ivh.  It give me the error:   Cannot find where java is installed on this system.  Please

Problems with kernel 2.2.14

2000-04-05 Thread John Rousseau
makes the problem go away. Starting with -Xmx256m or -Xmx512m makes no difference. I saw this problem 2 weeks ago on an SMP box, but thought it was related to that configuration. It was also running 2.2.14. Has anyone else seen this? -John PS. The TCP connection limit problem I wrote about last

Re: JVM hang

2000-03-31 Thread John Rousseau
On Friday Mar 31, 2000, Christopher Smith wrote: > On Fri, Mar 31, 2000 at 08:14:47AM -0500, John Rousseau wrote: > > On Friday Mar 31, 2000, Natarajan SK wrote: > > Kevin Hendricks solved a very similar problem for me. This is > > assuming that you are using native th

Re: JVM hang

2000-03-31 Thread John Rousseau
have an explicit -lc before it). This is because you may be picking up the non-thread safe versions of libc routines. I found that if I did a fork() when I created the VM, it would hang. Removing the fork() made things work. Once I fixed the

Re: TCP performance issues

2000-03-30 Thread John Rousseau
On Mar 29, 2000, Ekkehard Kraemer wrote: > Hallo John, > > JR>I'm thinking that the kernel TCP connection queues are filling up and > JR>further requsts are getting dropped, but at 20? > > Did you check ulimit (file handles)? > > Did you try 'lsof

TCP performance issues

2000-03-29 Thread John Rousseau
ues are filling up and further requsts are getting dropped, but at 20? Any ideas on how to debug this would be greatly appreciated! -John ---- John Rousseau [EMAIL PROTECTED] SilverStream Software

Re: TCP performance issues

2000-03-29 Thread John Rousseau
"roof" in terms of number of simultaneous connections when you > run it on other platforms? I have test runs on NT and Solaris both with >500 simultaneous users. Both on lesser hardware than I'm currently using. Thanks! -John

Re: Accessing a JNIEnv pointer from within a C++ jni function

2000-03-28 Thread John Rousseau
On Tuesday Mar 28, 2000, Norman Shapiro wrote: > [EMAIL PROTECTED] (John Rousseau) writes: > >You could save the pointer in thread local storage, but I guarantee > >that it won't be portable. > > > >Take a look at pthread_key_create, pthread_setspecific, et a

Re: Accessing a JNIEnv pointer from within a C++ jni function

2000-03-28 Thread John Rousseau
antee that it won't be portable. Take a look at pthread_key_create, pthread_setspecific, et al. -John John Rousseau [EMAIL PROTECTED] SilverStream Software 1

Popup Menu Question

2000-03-27 Thread John Rousseau
[I'm forwarding this for another developer here. Any help is greatly appreciated. -John] I am working on a port of an IDE from Windows NT to Linux. This IDE uses popup menus, and since switching to the latest Blackdown VM I have been having some troubles. I have a panel that uses a

Re: Servlet libraries

2000-03-24 Thread John Rousseau
On Friday Mar 24, 2000, Alan Westhagen wrote: > SimpleServlet.java:1: Package javax.servlet not found in import. You need to get servlet.jar to do servlet work. It doesn't come with the J2SE. Look under... http://java.sun.com/products/servlet/index.htm

Re: Jsp Newbie, Help

2000-03-17 Thread John . Folkers
John "V.Vasant" <[EMAIL PROTECTED]> on 03/17/2000 08:53:41 AM To: [EMAIL PROTECTED] cc: Subject: Jsp Newbie, Help Hello, I have just started learning about servlets , even though I have sufficient knowledge of the language in general. I downloaded and installed the

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

Re: J2EE on Linux

1999-12-30 Thread John N. Alegre
Session beans are a snap. Anyone got Entity Beans working on Linux? I have tried mySQL with now luck under the WebLogic eval. I am more interested in if anyone has J2EE working under Linux. john On 30-Dec-99 Jim Kimball wrote: > I downloaded BEA Weblogic (30 day trial) and have been able

J2EE on Linux

1999-12-29 Thread John N. Alegre
Anyone got it to work? john -- E-Mail: John N. Alegre <[EMAIL PROTECTED]> Date: 29-Dec-99 Time: 20:32:56 This message was sent by XFMail -- -- To UNSUB

CLASSPATH to Install Oracle JDBC driver for jdk1.2?

1999-12-29 Thread Palsedge, John
who has been able to get these two working together. John Palsedge OneWorld Tools Quality Assurance J.D. Edwards World Source Company OTW, Building Three Phone: (303) 334-8703 Fax: (303) 334-1326 [EMAIL PROTECTED] -- To

Re: glibc requirements

1999-12-21 Thread John Hartman
I wasn't able to run the Blackdown JDK 1.2.2 (or at least the JRE) with glibc 2.1.1, but installing glibc 2.1.2 did the trick. Still having annoying font problems, though... John André Dahlqvist wrote: > > Hi > > I noted in Blackdowns README file that glibc 2.1.2 is requir

Re: JDK 1.2.2 RC3 and RC1 VolanoMark results

1999-12-08 Thread John Neffenger
after disabling the socket timeouts, but I'm waiting for the bug fixes before being able to run the tests without modification for the Volano Report. John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a

Re: JDK 1.2.2 RC3 and RC1 VolanoMark results

1999-12-08 Thread John Neffenger
Hi Joseph, > Is there any way I can get a hold of the benchmark software? I'd like to > try the tya compiler with blackdown's jdk and see how it stacks up. See the section called "Download" at: http://www.volano.com/bench

Segmentation violation with 1020 timeout sockets

1999-12-08 Thread John Neffenger
nd Inprise through this page? http://java.sun.com/cgi-bin/bugreport.cgi Sun and Inprise need to fix both Blackdown Bug Id 1604 and 1578 for me to run the VolanoMark network test with their JDK 1.2.2: http://www.blackdown.org/cgi-bin/jdk/incoming?expression=neffenger John

JDK 1.2.2 RC3 and RC1 VolanoMark results

1999-12-08 Thread John Neffenger
find any errors in the updated Volano Report. John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Native vs. green threads

1999-12-08 Thread John Neffenger
at http://www.volano.com/linux.html). I assume the Inprise Java VM will soon do both green and native threads as well. John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Sun and Inprise Java 2 announcement

1999-12-07 Thread John Neffenger
I wrote directly to Sun about it (mailto:[EMAIL PROTECTED], attached below). I'll try to post the results of both JDK 1.2.2 ports -- what I thought was Blackdown *and* Sun, and the new port from Sun -- to the Volano Report today or tomorrow. John Neffenger John Neffenger wrote: > &g

Re: font.properties

1999-12-05 Thread John N. Alegre
did it and I will tuck it away for the next round of tweaking. Thanks for taking the time. john On 03-Dec-99 Jeff Bean wrote: > Hi John, folks, > > I finally solved the Java-fonts-not-found-via-remote-XServer problem > using a combination of xlsfonts and sed to get a tailor-made >

JDK 1.2.2 RC2 VolanoMark results

1999-12-04 Thread John Neffenger
or comparison scores, see: The Volano Report http://www.volano.com/report.html Looking forward to RC3! Thanks, John Neffenger -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Upgrading glibc to 2.1.2 (help!)

1999-12-02 Thread John N. Alegre
worked first time. May be ill read that HOWTO anyway. john On 01-Dec-99 Nathan Meyers wrote: > Updating glibc is very tricky stuff, with many dependencies and > opportunities to break the system midway through installation. The usual > way to do it (at least in RedHat-land) is to up

RE: font.properties

1999-11-30 Thread John N. Alegre
does not even come close with jdk1.2.2. Is there anyone out there who has solved this problem for real? john On 30-Nov-99 Jeff Bean wrote: > I'm looking for a font.properties file that utilizes only basic X fonts > that are compatible with xfs or are common to most Unix/Linux systems.

  1   2   3   4   >