Re: Netscape 4.05 support Java 1.1??

1998-10-02 Thread Mario Camou
Hi, The NoSuchMethodError on AWT 1.1 methods is one of the surest ways of testing whether a browser supports 1.1 or not...if you get it, it doesn't. Get Netscape 4.06, it reportedly DOES support 1.1. Chi-Ming Yang wrote: > Hi there, > I got netscape 4.05 that came with RedHat 5.1. Does i

Re: Java and CVS

1998-10-06 Thread Mario Camou
Travis Shirk wrote: > Hello All, > > This post does not have anything to do with Linux, but some of you > may be able to help since you're Unix users. > > --- > > I'm having some problems using CVS with a pretty large Java API. The problem > is pretty basic, I want my CVS repository

Re: Java Foundation Class / Swing library

1998-10-13 Thread Mario Camou
Swing works on Linux just fine, download the Solaris version and unpack it. -Mario. Gautham Nookala wrote: > Is the Swing library available for linux ? > > -- > Gautham > > (Vox) 901-522-8708(Email) [EMAIL PROTECTED] > >

Re: rmid with JDK1.1.6

1998-10-15 Thread Mario Camou
Hi, What I do to activate business objects is create a "Broker" object that is started by hand, this object is responsible for activating other business objects through a Factory pattern: Broker broker = Naming.lookup ( blah blah blah ); myObject = (MyInterface)broker.createObject ("COM.mydomain

Re: Help! appletviewer doesn't work

1998-10-22 Thread Mario Camou
Hi, The parameter to appletviewer is an HTML file, make sure you're calling the HTML file and not the .class file. If you are calling the HTML file, in the CODE= parameter you need to specify the ".class" extension (confusing? yes. In applets you use the .class, in applications you don't) Hope t

Re: Barcode Scanner / Cash Registers

1998-10-23 Thread Mario Camou
You might want to check out JavaPOS, somewhere on http://java.sun.com -Mario > > At 09:32 AM 10/22/98 +0100, M. N. Khan wrote: > >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 >

Activator and JDK 1.1.7+TYA?

1998-11-16 Thread Mario Camou
Hi, I'm probably asking a dumb question, but hope springs eternal...I'm sort of hoping the README isn't up to date... Can Java Activator run on JDK 1.1.7+TYA? (or even without TYA). I don't relish having to have two distinct JDK versions on the same machine, what with all the problems with envir

Re: Basic installation. Please Help.

1998-11-17 Thread Mario Camou
What does it use, then? -Mario. [EMAIL PROTECTED] wrote: > > I do hope someone comes up with a better idea than classpath RSN: mine runs > > to well over 2K. > > 1.2 does not use classpath, praise be. > > M.

Re: Basic installation. Please Help.

1998-11-17 Thread Mario Camou
idea is you symbolically link your jars to there. > > M. > > > From: Mario Camou <[EMAIL PROTECTED]> > > CC: [EMAIL PROTECTED] > > Subject: Re: Basic installation. Please Help. > > > > What does it use, then? > > > > -Mario. > > > > [E

Linux Takes Lead in Server-Side Java Performance /IW November 23, 1998

1998-11-25 Thread Mario Camou
Hi all, Check this out (I'm not including the full text in the interest of conserving bandwidth): http://www.internetworld.com/print/current/webdev/19981123-java.html Way to go!

How to do a thread dump from program?

1998-12-07 Thread Mario Camou
Hi, I'm having some problems with threads, so I need to do a thread dump (same thing that Ctrl-\ does) but from within the program (i.e., I catch an Exception and want to do a thread dump that moment). Does anyone here know how to do that? Basically, I'm getting an "IllegalMonitorStateException:

Re: How to do a thread dump from program?

1998-12-07 Thread Mario Camou
Juergen, Thanx for the quick response. See below Juergen Kreileder wrote: > >>>>> Mario Camou writes: > > Mario> Hi, > Mario> I'm having some problems with threads, so I need to do a > Mario> thread dump (same thing that Ctrl-\ does) b

Re: How to do a thread dump from program?

1998-12-08 Thread Mario Camou
Juergen, Thanx! Now I get it...either synchronized(this) OR data.notifyAll()/data.wait(). I had my monitors mixed up :) Now if there was only a way to get that thread dump...not for THIS problem, but it might come in handy sometime. -Mario. Juergen Kreileder wrote: > >>>&g

Re: what tools do you use for programming

1998-12-08 Thread Mario Camou
Helge Hielscher wrote: > Hello, > > what tools do you use for *efficient* programming in Java? I have been > looking around for a while, the only things I've found was FreeBuilder, > but that programm seemed to be still alpha, with no progress in work. I > tried to subscribe to the mailing list,

Java Plugin for Linux?

1998-12-10 Thread Mario Camou
Hi, I'm looking for the Java Plugin on Blackdown and can't find it. Any idea where it is? Does it work with 1.1.7? Thanx, -Mario.

Re: Problems with Threads (Code included)

1998-12-14 Thread Mario Camou
he "wait()/notifyAll()" calls, and see if it does what you want. If you want to grab the monitor for some other object, instead of synchronizing the whole method you can use a synchronized block: synchronized (anObject) { // ... blah blah blah anObject.notifyAll() } Hope this helps, -Mari

Problem with TYA 1.2

1998-12-14 Thread Mario Camou
Hi, I just installed TYA 1.2. My code used to work perfectly with previous versions, now I get a thread dump. Intel Pentium Kernel 2.0.36 JDK 1.1.7v1a Red Hat 5.1 with all updates applied There's also a weird "user programm switched off JIT compiling" message. This behavior is completely repro

Re: Problem with TYA 1.2

1998-12-14 Thread Mario Camou
in this list. Sorry then for the wasted bandwidth, I completely missed it. And to the Blackdown and TYA teams, you guys are doing a Great Job! Thank you so much! -Mario. On Mon, 14 Dec 1998, Mario Camou wrote: > I just installed TYA 1.2. My code used to work perfectly with previous version

Re: Java performance

1998-12-16 Thread Mario Camou
Well, I just ran it on a 233 MHz Pentium with the appletviewer, JDK 1.1.7v1a and TYA 1.2, and got a score of 13.0, while according to the table, the performance of the Dell Optiplex 200 MHz P6, Win 95, Netscape 4.04 is 42.5 (about three times). I don't do Windows, so I can't tell you what the resu

Re: Read Huge file using Java

1998-12-17 Thread Mario Camou
Quanyu, It actually depends on what you want to do with the file. If you can read it bit by bit and not have it in memory all the time, a BufferedInputStream on top of an InputStream will probably help performance. If you need random access to the file, use the RandomAccessFile class. Otherwise,

Re: Read Huge File using Java

1998-12-17 Thread Mario Camou
Quanyu, I would say: 1. Again, use BufferedInputStream 2. Use your own buffer, i.e., a char[1024] or something equally large, and read the file in chunks. -Mario. Quanyu Zhu wrote: > Hi,there: >Thanks for the comments ! >I think I need to specify more detail about my mission. >I j

Re: Sun and Linux

1998-12-21 Thread Mario Camou
Well... % telnet www.blackdown.org 80 Trying 204.180.15.12... Connected to www.blackdown.org. Escape character is '^]'. GET /java-linux/ports.html HTTP/1.0 HTTP/1.1 200 OK Date: Mon, 21 Dec 1998 20:57:37 GMT Server: Apache/1.3b3 Last-Modified: Thu, 17 Dec 1998 14:40:01 GMT [ ... snip ... ] So,

Re: TYA and Swing; What was the #define again?

1999-01-04 Thread Mario Camou
Hi Peter, Go into tya.c and UNcomment the "IGNORE_DISABLE" #define -Mario. Peter Schuller wrote: > Hi! > > What was that #define that were supposed to be commented out to get TYA 1.2 to > work with Swing, even though it tries to disable JIT during init? > > Thanks! > > / Peter Schuller > -

Re: RMI-Question

1999-01-13 Thread Mario Camou
blaise toad wrote: > only weblogic has a run-time (and a clunky one at that) on Linux, and > it is not OSS. As far as I know there is no OSS'd EJB run-time on > linux. EJBHome (http://www.ejbhome.com) reportedly works on Linux -Mario.

Re: web server

1999-01-20 Thread Mario Camou
[EMAIL PROTECTED] wrote: > Jinpeng Xie wrote: > > I am wondering whether there is a web server that can process jhtml > > files and can run on Linux platforms. > > > > Java web server can process jhtml, but only run on NT and Solaris. > > I didn't read documentation about apache very recently. >

java-linux hosting

1999-01-20 Thread Mario Camou
Hi, I read the recent messages Re: hosting the list. Another option might be OneList (http://www.onelist.com). It's a free list-hosting service (paid for by advertising, 3 or 4 lines on each message). They also have list archiving and a web-based admin interface. Thought it might be an interestin

Re: java-linux hosting

1999-01-21 Thread Mario Camou
Dwight Frye wrote: > Mario Camou writes : > > I read the recent messages Re: hosting the list. Another option might be OneList > > (http://www.onelist.com). It's a free list-hosting service (paid for by > > advertising, 3 or 4 lines on each message). They also have li

Whatever happened...

1999-02-16 Thread Mario Camou
...to http://java.blackdown.org/ ? I just went in and there's some sort of discussion server...

Re: jdk servlets available on Linux

1999-04-12 Thread Mario Camou
> > -Steve -- __ |Mario Camou __-- --___ |Chief Technology Officer _-| - _ --_ |Umbral Global, SA de CV - | | O | -___ ___ | | | |__^-' | | |\ /| | ) | | /\ | |