Re: How to resize windows?

2007-07-06 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: //Dear Eugenio Romano, I was only able to get my Blackdown JVM working on GPE with text mode only (no luck for AWT nor SWING). Could you please be so kind to share with me how you setup the environment? Regarding your question, I don't have an answer. Coz' never t

Re: java support on mips 64bit processor

2007-05-10 Thread POWER architecture PowerPC
I think the only chance to get Java for mips Linux is the other Opensource Java called "kaffe". Try compiling the source for Kaffe (from http://www.kaffe.org). They have mips-Linux as a supported platform in the sourcecode tree. Whether it's fully supported and 64bit i dont know. You will also nee

Re: Problem setting memory options

2007-04-11 Thread POWER architecture PowerPC
The option "-Xss" is setting the stack size to 5GB. Is this your intention? Have you tried setting "-Xms" ? > > >* From: Soumyadeep nandi ><[EMAIL PROTECTED]> >* Subject: Problem setting memory options >* Date: Thu, 5 Apr 2007 01:05:21 -0700 (PDT) > Hi, I am running an application on

RE: [QUESTION] Howto access parallel port

2007-03-22 Thread Kutschera Peter
PROTECTED] Subject: Re: [QUESTION] Howto access parallel port Peter, Thank you for the pointer to RXTX. I have made progress but am still a newbie. I have successfully built and run nulltest.java, which sends a string to /dev/ttyS0 and simutaneously reads from /dev/ttyS0. With a short from TX t

Re: [QUESTION] Howto access parallel port

2007-03-20 Thread Robert Meier
Peter, Thank you for the pointer to RXTX. I have made progress but am still a newbie. I have successfully built and run nulltest.java, which sends a string to /dev/ttyS0 and simutaneously reads from /dev/ttyS0. With a short from TX to RX, it reads the same string written, "Hello, world". My

RE: [QUESTION] Howto access parallel port

2007-03-16 Thread Kutschera Peter
Hello! (Repost just in the case you have problems with my signature. Might be a problem created by the mailing list.) Accessing the ports is easy. I did it with serial ports (build in and usb) under Linux and Windows. See the following links about how to du it. http://www.rxtx.org/ RXTX : seria

RE: [QUESTION] Howto access parallel port

2007-03-16 Thread Kutschera Peter
Hello! Accessing the ports is easy. I did it with serial ports (build in and usb) under Linux and Windows. See the following links about how to du it. http://www.rxtx.org/ RXTX : serial and parallel I/O libraries supporting Sun's CommAPI http://rxtx.qbang.org/wiki/index.php/Main_Page Main Page

Re: unable to run a jar file in linux-Plz help me

2007-03-02 Thread Wilhelm Fitzpatrick
When you say and are you eliding the actual values, or is that the verbatim message? One of the first things you might examine is the version of java on the different platforms. Look at the output of the command: java -version on each of the different platforms. Typically things lik

Re: unable to run a jar file in linux-Plz help me

2007-03-01 Thread Libran Mail Me
Hi, Sorry for not giving the exact details.The exact error message is "Exception in thread "main" java.lang.NoSuchFieldError: : field not found" perhaps JVM is saying that he is unbale to recognise the field in the class(an user defined class), But I am surprised how the same jar runs on dos p

Re: unable to run a jar file in linux-Plz help me

2007-03-01 Thread Robert Meier
lib, > I am facing a problem while running a jar file (which I created using > eclipse v3.2.1 on windows XP.) on linux. > The same jar file runs fine on dos, > whereas on linux or solaris it returns a weird issue. > (XYZ not defined or something like that) ... not defined ... usually means that e

Re: unable to run a jar file in linux-Plz help me

2007-03-01 Thread Wilhelm Fitzpatrick
On Mar 1, 2007, at 7:30 AM, Libran Mail Me wrote: whereas on linux or solaris it returns a weird issue.(XYZ not defined or something like that) Without knowing what the actual error message is, I don't think there is any way we can help you.

Re: PlainSocketImpl.java PlainSocketImpl.c and my own socket implementation

2007-02-04 Thread Leandro Melo de Sales
Still in this discussion, in the constructor of my MySocket class, I call super(host, port) and set the SocketImplFactory passing my factory as argument. When I create a instance the method bind is called due to Socket implementation, but instand of the bind method receive the host and port parame

RE: BlackDown crashed 64bit Firefox - consistently - in both Fedora and Ubuntu

2007-01-08 Thread Jan Petersen
ECTED] > CC: [EMAIL PROTECTED] > Subject: Re: BlackDown crashed 64bit Firefox - consistently - in both Fedora > and Ubuntu > > The java plugin in 32 bit, and it cannot run on a 64 bit firefox build. > Use a 32 bit firefox build (like what you download directly from > mozilla.org

Re: latest JDK on ARM

2006-11-24 Thread Yvan Girard
Antonio Petricca gmail.com> writes: > > > Is it possibile to have the latest BlackBox JDK compiled for the ARM processor.At this moment we are developing on our Zaurus with BlackBox 1.3.1 and we encoured a lot of problems for GUI applications, on the original Zaurus OS and also on to the OpenZ

Re: Java and SableVM - fixed

2006-11-24 Thread Daniel L. McGrew
I fixed it... Not sure how I fixed it or why it's working now... I know that I d/l'd from the top most link at the sun-java page and installed it. Linux RPM (self-extracting file) (filesize: 15.74 MB) That didn't work... I d/l'd from the second link ... Linux (self-extracting file) (filesize: 1

Re: Color for disabled controls

2006-11-09 Thread Jim C.
Jim C. wrote: > OK, so there is this bug in Sun's JTable. > Calling JTable.setEnabled(false) doesn't also cause the table header's > appearance to changed. It functions properly but there is no visible > change in the header. > > Question: > > What are some good ways to change appearance based on

Re: Any resources shared between JVMs?

2006-10-12 Thread David Brodrick
My issue turned out to be a simple matter of CPU exhaustion after all. There's something funny with the threads on 2.6 kernels and procps (at least the one in Debian Sarge) in that top will only show the parent process and not show any of the threads. Therefore the CPU was actually much busier tha

Re: Any resources shared between JVMs?

2006-10-11 Thread Dominic Duval
If at all possible, try running the program through strace and determine on what system call it is blocking. Get back to us with the result. Cheers, -Dominic On Thu, 2006-10-12 at 09:04 +1000, David Brodrick wrote: > Hi All, > I'm chasing a problem where a (normally) smo

Re: Are private methods final?

2006-09-26 Thread Robert Meier
Jim C., > A private method cannot be extended, so does that mean it is final also? In java, yes. Object-oriented theory includes the concept of a constant. A constant is an entity (e.g. field, method, or object) whose value is the same throughout its entire extent. (extent is time of existen

Re: SIGSEGV with several applets

2006-09-08 Thread Richard Baldwin
I send this original message out over a week ago and nobody has responded yet. Has anyone else had this problem and if so what was the solution to it? Any help would be greatly appreciated. Richard. On Wed, 2006-09-06 at 09:56 -0400, Richard Baldwin wrote: > On Wed, 2006-08-30 at 16:07 -0400, Ri

Re: jdk1.5 and sparc

2006-09-06 Thread Stefaan A Eeckels
On Wed, 06 Sep 2006 18:43:51 +1000 Dan Rossi <[EMAIL PROTECTED]> wrote: > Ok getting off topic here, nope ubuntu and freebsd partitions 160GB , > solaris only manages to see 130GB to partition on top of this the > original drive that was in my fire v100 rack is now not usable in > solaris as it

Re: SIGSEGV with several applets

2006-09-06 Thread Richard Baldwin
On Wed, 2006-08-30 at 16:07 -0400, Richard Baldwin wrote: > When using the debian packages j2re1.4 (1.4.2.03-1) and j2sdk1.4 (same > revision) and x86_64, several applets are causing browser crashes with a > segmentation fault, is there a currently known solution to this issue or > is it relatively

Re: jdk1.5 and sparc

2006-09-06 Thread Dan Rossi
Stefaan A Eeckels wrote: On Wed, 06 Sep 2006 00:57:22 +1000 Dan Rossi <[EMAIL PROTECTED]> wrote: Are you installing Solaris 10 on a SPARC based box? The by now very old Ultra 5 and 10 had a IDE controller that was limited to 128GB, but that applies to all OSes you'd install on them.

Re: jdk1.5 and sparc

2006-09-06 Thread Stefaan A Eeckels
On Wed, 06 Sep 2006 00:57:22 +1000 Dan Rossi <[EMAIL PROTECTED]> wrote: > Oh well, it would have been really nice, ive gone back to installing > solaris 10, however it doesnt seem its progressed in any way at all. > I managed to get both freebsd and ubuntu installed in under 20 mins, > with solar

Re: jdk1.5 and sparc

2006-09-05 Thread Dan Rossi
[EMAIL PROTECTED] wrote: On Mon, Sep 04, 2006 at 08:49:43PM +0200, Johan Vos wrote: Hi, I did the port to Linux/SPARC for JDK 1.2, but I don't have a performant Linux/Sparc machine anymore and 1.5 is very different from 1.2. Apart from that, I don't think there is a huge interes

Re: jdk1.5 and sparc

2006-09-05 Thread seb
On Mon, Sep 04, 2006 at 08:49:43PM +0200, Johan Vos wrote: > Hi, > > I did the port to Linux/SPARC for JDK 1.2, but I don't have a performant > Linux/Sparc machine anymore and 1.5 is very different from 1.2. Apart > from that, I don't think there is a huge interest in Linux/SPARC > anymore, as

Re: jdk1.5 and sparc

2006-09-04 Thread Stefaan A Eeckels
On Tue, 5 Sep 2006 06:44:59 +1000 Jim Watson <[EMAIL PROTECTED]> wrote: > > On 04/09/2006, at 11:28 PM, Stefaan A Eeckels wrote: > > > On Mon, 04 Sep 2006 22:18:07 +1000 > > Dan Rossi <[EMAIL PROTECTED]> wrote: > > > >> my last resort is of course solaris 10. > > > > In my experience, on SPARC S

Re: jdk1.5 and sparc

2006-09-04 Thread Jim Watson
On 04/09/2006, at 11:28 PM, Stefaan A Eeckels wrote: On Mon, 04 Sep 2006 22:18:07 +1000 Dan Rossi <[EMAIL PROTECTED]> wrote: my last resort is of course solaris 10. In my experience, on SPARC Solaris 10 is the superior OS. developer resources are scarce for sparc another option for linux

Re: jdk1.5 and sparc

2006-09-04 Thread Dan Rossi
[EMAIL PROTECTED] wrote: According to Jurgen Kreileder, there is one bug left that prevents a release. At this time, no JVM is running on the sparc port because of some changes in the glibc that cause the 1.4.1 (only 1.4 jdm released) to crash on non trivial load. Don't ask me, I don't know h

Re: jdk1.5 and sparc

2006-09-04 Thread seb
On Mon, Sep 04, 2006 at 10:18:07PM +1000, Dan Rossi wrote: > Hi, im trying to get answers about this, after reading the 1.5 status > > http://www.blackdown.org/java-linux/java2-status/j2se1.5-status.html > > it states there is jdk1.5 support for sparc among other platforms. > However when i go i

Re: jdk1.5 and sparc

2006-09-04 Thread Dan Rossi
Klaus Wagner wrote: On Mon, 2006-09-04 at 22:18 +1000, Dan Rossi wrote: Hi, im trying to get answers about this, after reading the 1.5 status http://www.blackdown.org/java-linux/java2-status/j2se1.5-status.html it states there is jdk1.5 support for sparc among

Re: jdk1.5 and sparc

2006-09-04 Thread Klaus Wagner
On Mon, 2006-09-04 at 22:18 +1000, Dan Rossi wrote: > Hi, im trying to get answers about this, after reading the 1.5 status > > http://www.blackdown.org/java-linux/java2-status/j2se1.5-status.html > > it states there is jdk1.5 support for sparc among other platforms. > However when i go into all

Re: jdk1.5 and sparc

2006-09-04 Thread Dan Rossi
Stefaan A Eeckels wrote: On Mon, 04 Sep 2006 22:18:07 +1000 Dan Rossi <[EMAIL PROTECTED]> wrote: my last resort is of course solaris 10. In my experience, on SPARC Solaris 10 is the superior OS. Ok but in terms of admining the upkeep of a developer server obviousl

Re: jdk1.5 and sparc

2006-09-04 Thread Stefaan A Eeckels
On Mon, 04 Sep 2006 22:18:07 +1000 Dan Rossi <[EMAIL PROTECTED]> wrote: > my last resort is of course solaris 10. In my experience, on SPARC Solaris 10 is the superior OS. -- Stefaan -- As complexity rises, precise statements lose meaning, and meaningful statements lose precision. -- Lotfi Za

Re: Debian package and EULA

2006-08-22 Thread Juergen Kreileder
Jonathan D. Graham <[EMAIL PROTECTED]> writes: > I've downloaded j2re1.4_1.4.2.03-1_i386.deb and the installation > fails, of course, because one "must accept Sun's EULA prior to > successfully installing this package." But all my web searching has > failed to indicate exactly what I type to even

Re: Prohibited package name: java

2006-08-21 Thread Dr. Robert J. Meier
Alf, >>> I am attempting to create a java applet and I get:- >>> java.lang.SecurityException: Prohibited package name: java >> >> java, javax, and sun are among the package names reserved for the virtual >> machine. In order to prevent a trojan horse attack, users cannot add or >> detract from t

Re: Prohibited package name: java

2006-08-21 Thread Alf Stockton
Dr. Robert J. Meier wrote: > Alf, > > >> I am attempting to create a java applet and I get:- >> java.lang.SecurityException: Prohibited package name: java >> ... >> at java.lang.Thread.run(Unknown Source) >> > > >> where do I look to fix this? >> > > 1. Locate your source in a dir

Re: Prohibited package name: java

2006-08-20 Thread Dr. Robert J. Meier
Alf, > I am attempting to create a java applet and I get:- > java.lang.SecurityException: Prohibited package name: java > ... > at java.lang.Thread.run(Unknown Source) > where do I look to fix this? 1. Locate your source in a directory where your IDE (e.g. netbeans) can find it. (This will

Re: [beginners question]Howto include (.jar) libraries ?!

2006-08-03 Thread Sam Varshavchik
paul asmuth writes: hey, I'm trying to include a library (e.g the jdom lib - jdom.jar) into a installed blackdown j2se sdk. How can I include libraries, so that they are used when I compile classes ?! I already copied my .jar libs to usr/lib/j2se/1.4/lib and /usr/lib/j2se/1.4/jre, but it didn'

Re: read file in my own .jar

2006-07-28 Thread Jim C.
. There should be parameters there. If not, it can be re-written. Here is an example which you can see the parameters but they are not used. The idea behind this was to double check and see if 25gigabytes would fit in a Long value: public class LongValueChecker { Long _longValue

Re: Java on linux Sparc, is there a light at the end of the tunnel ?

2006-05-09 Thread Juergen Kreileder
[EMAIL PROTECTED] wrote: On Tue, May 09, 2006 at 03:23:16PM +0200, Juergen Kreileder wrote: [EMAIL PROTECTED] wrote: I had a look at the sources and I was able to build them on my x86 machine. The port seems to be possible. I even think that the blackdown java team has already done it. Yes an

Re: Java on linux Sparc, is there a light at the end of the tunnel ?

2006-05-09 Thread seb
On Tue, May 09, 2006 at 03:23:16PM +0200, Juergen Kreileder wrote: > [EMAIL PROTECTED] wrote: > >I had a look at the sources and I was able to build them on my x86 > >machine. > > > >The port seems to be possible. I even think that the blackdown java team > >has already done it. > > Yes and it's m

Re: Java on linux Sparc, is there a light at the end of the tunnel ?

2006-05-09 Thread Juergen Kreileder
[EMAIL PROTECTED] wrote: I'm trying to run the only 1.4 jdk released for the linux sparc arch. Unfortunately, the only version available for sparc is the 1.4.1 which began to broke around the availability of the glibc 2.3.6. Now, some bug have been filed against this but noone ever responded to

Re: need a better file copy method - SOLVED?

2006-05-04 Thread Jim C.
OK, here is what seems to be working. I did some reading and noticed that closing the output stream was an op that was pretty close to the hardware. So, when cleaning up, do the following: fileOutStream.flush(); srcChannel.close ( ) ; dstChannel.close ( ) ; fileOutStream.close(); Anyway,

Re: need a better file copy method

2006-05-03 Thread Ioan - Ciprian Tandau
On 5/3/06, Stefaan A Eeckels <[EMAIL PROTECTED]> wrote: On Wed, 3 May 2006 07:32:10 -0400 "Ioan - Ciprian Tandau" <[EMAIL PROTECTED]> wrote: > I told him about getFD().sync() (for FileInput/OutputStream and > RandomFile It seems to be the only way to make sure things are > synchronously writ

Re: need a better file copy method

2006-05-03 Thread Stefaan A Eeckels
On Wed, 3 May 2006 07:32:10 -0400 "Ioan - Ciprian Tandau" <[EMAIL PROTECTED]> wrote: > I told him about getFD().sync() (for FileInput/OutputStream and > RandomFile It seems to be the only way to make sure things are > synchronously written to disk (local storage). The fact that the file is ph

Re: need a better file copy method

2006-05-03 Thread Ioan - Ciprian Tandau
I told him about getFD().sync() (for FileInput/OutputStream and RandomFile It seems to be the only way to make sure things are synchronously written to disk (local storage). On 5/3/06, Stefaan A Eeckels <[EMAIL PROTECTED]> wrote: On Tue, 02 May 2006 14:38:50 -0700 "Jim C." <[EMAIL PROTECTED]

Re: need a better file copy method

2006-05-03 Thread Stefaan A Eeckels
On Tue, 02 May 2006 14:38:50 -0700 "Jim C." <[EMAIL PROTECTED]> wrote: > Stefaan A Eeckels wrote: > > On Mon, 01 May 2006 13:41:12 -0700 > > "Jim C." <[EMAIL PROTECTED]> wrote: > > > >> Anyone know how a simple file copy can be accomplished in an > >> explicitly synchronous manner without adding

Re: need a better file copy method

2006-05-02 Thread Stefaan A Eeckels
On Mon, 01 May 2006 13:41:12 -0700 "Jim C." <[EMAIL PROTECTED]> wrote: > Anyone know how a simple file copy can be accomplished in an > explicitly synchronous manner without adding Thread.sleep(n) after > calling flush on the output stream? Have you tried the streams method from the same site: h

RE: can not install Blackdown 1.3.1 on Linux PPC

2006-03-29 Thread neosoft.pgodard
I solved my problem. This was due to my ppc64 architecture. After installing the JVM I modified $JAVA_HOME/bin/.java_wrapper, adding a "ppc64" section to the case block that sets the proc variable in order to get the pc libraries: case "`uname -m`" in i[3-7]86 | ia32 | ia64) proc=i386

Re: blackdown j2se v1.4 for ARM

2006-03-10 Thread Y SHivakanth
Hey Friends,     Why are'nt many 2-D UI features not enabled in the fedora -4 can you please help.   Thanks in Advance   ShivakanthJames Hartley <[EMAIL PROTECTED]> wrote: Hello, New to the list, with one question.  I have a need for a j2se v1.4 compiled to the ARM.  I noticed that th

Re: gettimeofday calls under Redhat ES 4 Update 2

2006-02-08 Thread Ollie Cook
On Tue, 2006-02-07 at 13:34 -0500, Dominic Duval wrote: > Hi, > > Have you tried running the whole thing through lstrace? That might help > determining which function in glibc causes the call to gettimeofday(). > > If you have access to a test system, you might also want to downgrade > glibc to

Re: gettimeofday calls under Redhat ES 4 Update 2

2006-02-07 Thread Dominic Duval
On Tue, 2006-02-07 at 13:34 -0500, Dominic Duval wrote: > Hi, > > Have you tried running the whole thing through lstrace? ^^^ I should have typed ltrace, not lstrace. -Dominic -- Dominic Duval, RHCE/RHCX

Re: gettimeofday calls under Redhat ES 4 Update 2

2006-02-07 Thread Dominic Duval
Hi, Have you tried running the whole thing through lstrace? That might help determining which function in glibc causes the call to gettimeofday(). If you have access to a test system, you might also want to downgrade glibc to whatever version we used in U1, just to make sure the problem comes fr

Re: JDK-1.4.2 sparc (Debian flavor)

2006-02-02 Thread Wiktor Wandachowicz
Juergen Kreileder blackdown.de> writes: > Any help is greatly appreciated. If you want to help, Karl will send > you the necessary paperwork. > > Juergen > Oh, well. I've read the 8 pages long Non Disclosure Agreement that Karl Asha sent me and I'm having doubts. I like Java and I th

Re: JDK-1.4.2 sparc (Debian flavor)

2006-01-17 Thread Wiktor Wandachowicz
Juergen Kreileder wrote: > Any help is greatly appreciated. If you want to help, Karl will send > you the necessary paperwork. > > > Juergen > Ok then, go ahead and send it to me. At least I can look at it. If my skills would be enough, I'll try to do something with that. Wiktor Wanda

Re: JDK-1.4.2 sparc (Debian flavor)

2006-01-16 Thread Juergen Kreileder
Wiktor Wandachowicz <[EMAIL PROTECTED]> writes: > I think it is the high time for JDK-1.4.2 for sparc + Linux. Yep. The limiting factor is time. > I work at the Technical University of Lodz, in Computer Science > department, and I have to support a whole lab of Sun Blade 150 > machines. No Java

Re: JDK-1.4.2 sparc (Debian flavor)

2006-01-16 Thread Wiktor Wandachowicz
Juergen Kreileder writes: > Elvis wrote: > > Hello, > > > > Anyone knows if there is a JDK-1.4.2 version for sparc (Debian pkg) ? I > > could not find it in any of the mirrors out there (ftp nor http).. > > There's no SPARC version of 1.4.2 currently. I'm working on it but I > can't promise to

Re: Hello...

2005-12-29 Thread Jürgen Kreileder
Jose Mendez <[EMAIL PROTECTED]> writes: > Where I can get Java for Debian Sarge See http://www.blackdown.org/java-linux/java2-status/jdk1.4-status.html#debs Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://blog.blackdown.de/

Re: JDK-1.4.2 sparc (Debian flavor)

2005-12-15 Thread Elvis
Thanks Juergen. There are 6 of us in the state of Virginia, US, crossing our fingers :-) Cheers, Elvis On Thu, 15 Dec 2005, Juergen Kreileder wrote: > Elvis wrote: > > Hello, > > > > Anyone knows if there is a JDK-1.4.2 version for sparc (Debian pkg) ? I > > could not find it in any of the mirr

Re: JDK-1.4.2 sparc (Debian flavor)

2005-12-15 Thread Elvis
Yeah... That's one idea I have contemplated for a week, but my skills are limited at the moment with Java+sparc. Worst case scenario I will attempt it, but I know I will have to bother some people for help :-) -Elvis On Thu, 15 Dec 2005, Ingo Krabbe wrote: > Am Mittwoch, 14. Dezember 2005 17:11

Re: JDK-1.4.2 sparc (Debian flavor)

2005-12-15 Thread Juergen Kreileder
Elvis wrote: Hello, Anyone knows if there is a JDK-1.4.2 version for sparc (Debian pkg) ? I could not find it in any of the mirrors out there (ftp nor http).. There's no SPARC version of 1.4.2 currently. I'm working on it but I can't promise to have it out before Christmas. Juerge

Re: JDK-1.4.2 sparc (Debian flavor)

2005-12-15 Thread Ingo Krabbe
Am Mittwoch, 14. Dezember 2005 17:11 schrieb Elvis: > Hello, > > Anyone knows if there is a JDK-1.4.2 version for sparc (Debian pkg) ? I > could not find it in any of the mirrors out there (ftp nor http).. > > If not I have to go back to Solaris which I would hate to do :-(*(( > > -E. > > > ---

Re: JDK-1.4.2 sparc (Debian flavor)

2005-12-15 Thread Ingo Krabbe
Am Mittwoch, 14. Dezember 2005 17:11 schrieb Elvis: > Hello, > > Anyone knows if there is a JDK-1.4.2 version for sparc (Debian pkg) ? I > could not find it in any of the mirrors out there (ftp nor http).. > > If not I have to go back to Solaris which I would hate to do :-(*(( > > -E. > > > ---

Re: [ANNOUNCE] Blackdown J2SE 1.4.2-03 for x86 and x86-64

2005-12-09 Thread Antonio Petricca
Is planned to have 1.4.2 compiled for Arm?Thank you! :)2005/12/3, Juergen Kreileder <[EMAIL PROTECTED]>: The Blackdown Java-Linux Team is happy to announce the availabilitythe Java 2 Standard Edition v1.4.2-03 for Linux on i386 andLinux on AMD64/EM64T.J2SE v1.4.2-03 can be download from ftp://ftp.t

Re: truncated class file problem

2005-11-15 Thread Juergen Kreileder
julie doyle <[EMAIL PROTECTED]> writes: > I'm having a problem running my app on my iPaq. The Java version is > 1.3.1 and on my desktop it's 1.3.1_13. The app runs fine on my desktop but > when I try to run it on the PDA i get the following error: > > Exception in thread "main" java.lang.ClassFor

Re: Hi

2005-09-14 Thread Raphael Clifford
Juergen Kreileder wrote: Raphael Clifford wrote: If you look at my bug report https://bugzilla.mozilla.org/show_bug.cgi?id=305876 there are 2 distinct looking crashes. One sounds like the one you are referring to but is the one with the valgrind -v output also caused by the same problem?

Re: Hi

2005-09-14 Thread Juergen Kreileder
Raphael Clifford wrote: If you look at my bug report https://bugzilla.mozilla.org/show_bug.cgi?id=305876 there are 2 distinct looking crashes. One sounds like the one you are referring to but is the one with the valgrind -v output also caused by the same problem? Hard to tell. I'm working o

Re: Hi

2005-09-14 Thread Juergen Kreileder
Raphael Clifford wrote: Do you know if any developers are on this list? I posted a message about a 100 percent reproducible crash in the jre plugin for firefox a while ago and asked about the problems with reporting bugs but got no response at all. It's known problem with 64-bit plugin, the

Re: Hi

2005-09-14 Thread Raphael Clifford
Juergen Kreileder wrote: Raphael Clifford wrote: Do you know if any developers are on this list? I posted a message about a 100 percent reproducible crash in the jre plugin for firefox a while ago and asked about the problems with reporting bugs but got no response at all. It's known prob

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

Re: Hi

2005-09-14 Thread Raphael Clifford
Hi, Do you know if any developers are on this list? I posted a message about a 100 percent reproducible crash in the jre plugin for firefox a while ago and asked about the problems with reporting bugs but got no response at all. Cheers, Raphael S. Truong wrote: * Eugenio Romano <[EMAIL P

Re: Hi

2005-09-14 Thread S. Truong
* Eugenio Romano <[EMAIL PROTECTED]> [05-09-14 14:46:13 +0200]: > hi all!!! > I'm a new subscriber,but I can't receive any mail from the mailing list. Hello. Welcome to the list. This list seems to be pretty low in activity so this could be the reason you haven't recieved any email. Reception of

Re: PPC 405 illegal instruction

2005-09-01 Thread Michael Rex
On Monday 13 June 2005 16:50, [EMAIL PROTECTED] wrote: > Hi all, Hi, > I'm tring to run a JVM on the Montavista Linux (1.4.24) running on top of > a Xilinx ML300 (PPC405). I tried the Backdown J2RE and J2SDK but running > > > java I obtain an "illegal instruction". > > Do you know why? Do you kn

Re: Re: armv5tel and blackdown 1.3.1: Illegal instruction

2005-06-17 Thread linux pc
  I tried to diagnosticate it further, but I didn't get far. The error message is just "Illegal instruction", and the only param I found that doesn't cause it is "-help" (even "-version" and "-verbose" trigger it). Of course, it appears only if I copy bin/armv4l and bin/armv4l to /bin/armv5tel and

Re: [ANNOUNCE] Blackdown J2SE 1.4.2-02 for x86 and x86-64

2005-06-16 Thread Juergen Kreileder
The Debian packages are available now. Juergen Juergen Kreileder <[EMAIL PROTECTED]> writes: > The Blackdown Java-Linux Team is happy to announce the availability > the Java 2 Standard Edition v1.4.2-02 for Linux on i386 and > Linux on AMD64. > > J2SE v1.4.2-02 can be download from > f

Re: armv5tel and blackdown 1.3.1: Illegal instruction

2005-05-28 Thread Dominic Duval
What's the illegal instruction about? Is it showing anything else? The 1.3.1 release runs fine on the PXA255, but I've never tried it on the 270... Cheers, -Dominic On Fri, 2005-05-27 at 22:07 -0700, linux pc wrote: > Hello everybody, > > I'm trying to run blackdown from

Re: blackdown support on linux on parisc arch

2005-05-27 Thread Juergen Kreileder
Jeremy Drake <[EMAIL PROTECTED]> writes: > Is there a Java 1.4 sdk/jre available for linux on the parisc arch? No. > > I'm guessing no, but it doesn't hurt to ask... > > If not, is there any porting effort underway? If not, would it be > possible for someone (possibly myself) to undertake such

Re: Highlighted text detection

2005-05-27 Thread nmeyers
On Fri, May 27, 2005 at 09:47:51AM -0600, Mike Adolf wrote: > If this is the wrong list for this post, let me know. > > I have a form having a mix of JTables, JTextAreas, and JTextFields. I want > to > know when a user highlightes/selectes text in any of them (to enable copy > button). To sel

Re: Fonts/Lines are too "high"

2005-05-26 Thread Alexander Skwar
Hi! · Juergen Kreileder <[EMAIL PROTECTED]>: > Does it get better if you comment out all lines containing '.1' in > jre/lib/font.properties? Yes, it does! What's the purpose of those lines? For example, there is/was: serif.0=-b&h-lucidabright-medium-r-normal--*-%d-*-*-p-*-iso8859-1 serif.1=--

Re: IO

2005-05-26 Thread Juergen Kreileder
sionally the > transaction journal seems to get out of sync, and I'm wondering if > something is happening asynchronously and it's screwing my ordering > up. Also, I had heard of some VM vendors re-building their bio > stacks on top of their nio stacks, At least in Sun'

Re: Fonts/Lines are too "high"

2005-05-26 Thread Juergen Kreileder
Alexander Skwar <[EMAIL PROTECTED]> writes: > Hello. > > I'm having a problem with the 1.4.2.01 JRE on Gentoo > Linux. As an example, please compare the following two > screenshots, one showing the application "Jext" when run > with the Sun JRE 1.4.2.08 and once with the Blackdown > JRE 1.4.2.01:

Re: Swing problem

2005-05-24 Thread Bruno Campos
Hi all, I am using blackdown(1.3.1) on Familiar (v0.8.1) distribution, on my ipaq 5500, but i have a small problem. I can run simple swing applications with some bottoms, labels etc, but not ComboBox or tabbed menus, if i try this error appears:   [EMAIL P

Re: Shrinking memory space of JRE 1.3.1 for ARM | src code

2005-05-18 Thread Radu-Adrian Popescu
Stage Iup - Fabrice & Frédéric wrote: so if we want to use an home-made rt.jar, can we use one based on rt.jar? and if i've understood the problem of distributing, the blackdown Vm is not gnu? You cannot touch rt.jar except for _maybe_ internal development (although the license seems to imply t

Re: Shrinking memory space of JRE 1.3.1 for ARM | src code

2005-05-18 Thread Stage Iup - Fabrice & Frédéric
so if we want to use an home-made rt.jar, can we use one based on rt.jar? and if i've understood the problem of distributing, the blackdown Vm is not gnu? 2005/5/18, Juergen Kreileder <[EMAIL PROTECTED]>: Radu-Adrian Popescu <[EMAIL PROTECTED]> writes:> Juergen Kreileder wrote:>> Just extract it, r

Re: Shrinking memory space of JRE 1.3.1 for ARM | src code

2005-05-18 Thread Juergen Kreileder
Radu-Adrian Popescu <[EMAIL PROTECTED]> writes: > Juergen Kreileder wrote: >> Just extract it, remove what you don't need and create a new >> rt.jar. >> > > Hi Juergen, > > Are you actually allowed to do that ? It's clear that you can't distribute the modified rt.jar or sell a product using the m

Re: Shrinking memory space of JRE 1.3.1 for ARM | src code

2005-05-18 Thread Radu-Adrian Popescu
Juergen Kreileder wrote: Just extract it, remove what you don't need and create a new rt.jar. Hi Juergen, Are you actually allowed to do that ? From the LICENSE file in the JDKs, the following two phrases imply that you can't: "[...]Sun grants you a non-exclusive, non-transferable, limited licen

Re: Shrinking memory space of JRE 1.3.1 for ARM | src code

2005-05-17 Thread Juergen Kreileder
Stage Iup <[EMAIL PROTECTED]> writes: > we are actually trying the JVM 1.3.1 for ARM found on the Blackdown > website but it seems to take a lot of memory space on the file > system, espescially the rt.jar file Just extract it, remove what you don't need and create a new rt.jar. > and where can

Re: Shrinking memory space of JRE 1.3.1 for ARM | src code

2005-05-17 Thread Stage Iup - Fabrice & Frédéric
thanks for your answers2005/5/17, Juergen Kreileder <[EMAIL PROTECTED]>: Stage Iup <[EMAIL PROTECTED]> writes:> we are actually trying the JVM 1.3.1 for ARM found on the Blackdown> website but it seems to take a lot of memory space on the file > system, espescially the rt.jar fileJust extract it, r

Re: XML parsing with blackdown

2005-05-09 Thread Radu-Adrian Popescu
As far as I know Xerces is a large, fat, slow pig. Depending on the complexity for the task at hand and how fast/lowmem you want to get things to run, you might want to hook up with nanoxml (http://nanoxml.cyberelf.be/) or a plain SAX parser instead. Cheers, -- Radu-Adrian Popescu CSA, DBA, Devel

RE: green thread support

2005-05-02 Thread Schaad,John G - TOC
in doing what you are wanting to do.   Sincerely,   John           -Original Message-From: Lee Rong [mailto:[EMAIL PROTECTED]Sent: Monday, May 02, 2005 8:07 AMTo: Schaad,John G - TOC; [EMAIL PROTECTED]Subject: RE: green thread support Hi John,  Thanks for the

RE: green thread support

2005-05-02 Thread Lee Rong
different machines?   Thanks,   Lee From: Schaad,John G - TOC [mailto:[EMAIL PROTECTED] Sent: Tuesday, 3 May 2005 12:50 AM To: Lee Rong Subject: RE: green thread support   Hi, Lee,   The latest version that supports green threads is 1.3.1   ftp

Re: JAI on ARM?

2005-04-21 Thread Martin Egholm Nielsen
Hi Walter, I currently try to port a java desktop applikation to an IPAQ H3870 but i definitely need Java Advanced Imaging (which is shipped with JDK1.4 and should work from JDK 1.3 on). I just tried out the new creme vm and added the missing class files to the libraries but finally ended up wit

Re: JNI problems

2005-04-10 Thread Al Niessner
Thank you for the help. Using LD_PRELOAD, I was able to change the error quite a bit. Now it fails after starting the JVM because the current stack is corrupt. I am not sure if this is an improvement or not, but it does mean I should be able to try various JVMs. Unfortunately, I have been building

Re: JNI problems

2005-04-08 Thread Juergen Kreileder
Al Niessner <[EMAIL PROTECTED]> writes: > Since it works with a C++ main(), I am guessing that there is some > symbol in Octave that is clashing with what libzip.so Probably, AFAIK Sun internalizes symbols in the i386 build but not in the x86-64 and ia64 builds. Our 1.4.2-01 for x86-64 should be

Re: java socket not closing

2005-03-22 Thread Nathan Bryant
Remember that a socket isn't closed until both stream directions are shut down. It kinda looks like the remote end has either become unreachable or isn't implementing TCP active close properly. You're sending data which it is not ACKing, and it's not sending an RST either. It may be stuck for s

Re: Support Java on debian.

2005-03-11 Thread Rakotomandimby (R12y) Mihamina
On Fri, 2005-03-11 at 12:16 -0300, Michael Fernández M. wrote: > What i must to install?.. Jakarta + Tomcat? and how to? Subscribe to - a debian mailing list (the apache one, the users one, the java one) - the apache newsgroup/mailing list - if it is a rented dedicated server, we can manage it f

Re: Support Java on debian.

2005-03-11 Thread Barry Hawkins
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Michael FernÃndez M. wrote: [...] | 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? an

Re: file

2005-03-05 Thread Christoph Mertins
[EMAIL PROTECTED] wrote: I have attached your document. +++ Attachment: No Virus found +++ Panda AntiVirus - www.pandasoftware.com can't somebody block this mails? -- MfG Christoph Mertins -- To UNSUBSCRIBE, email to [EMAIL PROTECT

RE: www.java2s.com : a website for Java developers

2005-03-01 Thread avijit.samal
It is just superb... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 01, 2005 10:37 PM To: java-linux@java.blackdown.org Subject: www.java2s.com : a website for Java developers Hi I developed the website www.java2s.com for Java developers.

  1   2   3   4   5   6   7   8   9   10   >