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
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
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]
>
>
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
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
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
>
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
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.
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
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!
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:
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
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
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,
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.
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
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
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
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
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,
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
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,
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
> -
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.
[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.
>
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
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
...to http://java.blackdown.org/ ?
I just went in and there's some sort of discussion server...
>
> -Steve
--
__ |Mario Camou
__-- --___ |Chief Technology Officer
_-| - _ --_ |Umbral Global, SA de CV
- | | O | -___ ___ |
| | |__^-' | | |\ /| | ) | | /\ | |
29 matches
Mail list logo