Re: Data Storage and Retreival for Java Program

2000-08-08 Thread Vincent Trussart
Ben Pharr wrote: > At 04:37 AM 8/8/00 , you wrote: > >Whatever method is used, if every client needs its own copy, start-up > >time is likely to be affected. > > > >If there is no central database presumably you don't want people to be > >able to make changes which become available to other users

Re: jdk1.3/forte problem

2000-06-12 Thread Vincent Trussart
uggestions on what to try? / thanks > I had this problem : it was caused by the "Sawfish" window manager. The problem went away by unchecking the "temporary windows inherits focus from their parents" (or something like that) option in the "focus

Re: Persistency for java on Linux

2000-05-25 Thread Vincent Trussart
JDBM : JDBM aims to be a gdbm-style persistence library for Java. It offers a simple interface based on java.util.Hashtable, simple semantics, transactions, and comes as a small jar. http://jdbm.sourceforge.net Or you could setup a postgresql 7 server and connect to it using JDBC

Re: Blackdown JDK vs Sun/Inprise

1999-12-17 Thread Vincent Trussart
> On Fri, Dec 17, 1999 at 09:37:51AM -0800, Adam Ambrose wrote: > > Yes, you just need to fill out a million forms to get it, but you can > > get it for free from the Inprise web site: > > http://www.inprise.com/jbuilder/foundation/ > > The recommended minimum memory is 128MB! Is that really need

JCK status page is more than a month old..

1999-10-25 Thread Vincent Trussart
An update would be appreciated! Thanks. -- Vincent Trussart [EMAIL PROTECTED] Cirano Québec -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Having trouble with zapf dingbats font

1999-08-27 Thread Vincent Trussart
This document that explains how to setup the fonts (truetype included) in RH6... http://www.redhat.com/knowledgebase/newfontsystem/ > Just a question, did you restart your X server? > Also, RH6.0 systems use a font server, not X86Config. > > -Tom > ---

Re: anyone using JDK1.2(beta)

1999-03-05 Thread Vincent Trussart
[EMAIL PROTECTED] wrote: > 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? > I filed a bug report about jdk1.2. The bug id# is 424. It is about

Re: https

1998-12-02 Thread Vincent Trussart
Zoltan TAR If I remember correctly, if an applet is loaded through https, any socket opened by this applet will use https by default. I could be wrong... -- Vincent Trussart [EMAIL PROTECTED] Universite de Montreal, Quebec

Re: How to Write MakeFile ?

1998-11-25 Thread Vincent Trussart
... The new and improved version of japptemplate is now available at http://www.iro.umontreal.ca/~trussarv/japptemplate/ Instructions on how to use it are in the Makefile. -- Vincent Trussart [EMAIL PROTECTED] Universite de Montreal, Quebec

Re: fast multiple object creation ... can it be done!

1998-09-28 Thread Vincent Trussart
"B. Craig Taverner" wrote: > Hi, > > I'm dealing with a performance issue in java where it appears that > performance is noticably affected by the fact that many (thousands) of > relatively small objects need to be created very quickly (multiple small > memory allocations). From my C/C++ backgrou

Re: Java interface to MySQL

1998-09-21 Thread Vincent Trussart
Corey Shelton wrote: > I was told that there's a JAVA web interface for MySQL that works much > better than the one currently in Perl. Could someone point me in the right > direction? > > Thanks > Corey Here is a very good jdbc driver for MySQL : http://www.voicenet.com/~zellert/tjFM/ Goo

Re: Font problems with v4b

1998-09-17 Thread Vincent Trussart
Paul Reavis wrote: > I've been running Together/J, and have a couple of problems. > > One is I keep getting things like: > > Warning: > Name: textfield > Class: XmTextField > Character '.' not supported in font. Discarded. > Try preloading /lib/libBrokenLocale.so when launching Toge

Announce : JAppTemplate [was : make depend for java]

1998-09-08 Thread Vincent Trussart
Since questions about dependencies generation with java comes up quite often, I decided to put online a java application development template. It consists of a directory structure and a makefile that uses the dependencies generated by JavaDeps. It is available at : http://www.iro.UMontreal.CA/~t

Re: Make depend for Java

1998-09-08 Thread Vincent Trussart
Bernd Kreimeier wrote: > The weird logic in which javac handles or ignores > dependencies (esp. source files more recent than > class files) never ceases to annoy me. Does anybody > have a decent solution to share that creates > dependencies from "import" and makes them work with > JDK? > >

Re: Compile Java to Native?

1998-09-03 Thread Vincent Trussart
Eugene Teh wrote: > Hi, > > I keep hearing people telling me that you can do this > But I have never found info about how to do this? > Is there such a utility - AFAIK Sun does not provide one? > Also what's the performance issue? How can it be tuned? > > Eugene Te

Re: 3rd JDK for Linux/Intel available (OpenGroup)

1998-08-18 Thread Vincent Trussart
Toni Nikkanen wrote: > On Tue, 18 Aug 1998, Nelson Minar wrote: > > > On the freshmeat tip, the OpenGroup has finally released their port of > > the JDK for Linux. http://www.camb.opengroup.org/RI/java/linux/ > > This one is based on native Linux threads. > > > > Three JDK ports for Linux, hooray

Re: new VolanoMark benchmark scalability results

1998-08-07 Thread Vincent Trussart
Bernd Kreimeier wrote: > Albrecht Kleine writes: > > > http://www.javaworld.com/javaworld/jw-08-1998/jw-08-volanomark.html > > If they are using much ``synchronized'' methods TYA > > won't help too much. > > Yeah, well, it seems the source is n/a, so who can tell? > >

Re: Slow image draws

1998-07-24 Thread Vincent Trussart
Paul Reavis wrote: > I'm converting my app to Swing. Part of it involves display of large, > tiled images, and I'm seeing enormous performance differences between > Linux and win32 while doing it, more than I would reasonably attribute > to the win32 JIT (especially since I believe, correct me if

Re: Environment variables

1998-07-22 Thread Vincent Trussart
Paul Reavis wrote: > So I tried to access an environment variable for the first time today; > no soap. Since System.getenv() is deprecated, I used > System.getProperty(). I couldn't get it to fetch my variable with what I > thought was the correct way: > > bash$ export foo=bar > bash$ java myapp