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
ra.at/ -Original Message- From: Robert Meier [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 12:27 AM To: [EMAIL PROTECTED] Subject: [QUESTION] Howto access parallel port java writers, I am a java newbie. How can one access the parallel port of a java laptop? How can one access

RE: [QUESTION] Howto access parallel port

2007-03-16 Thread Kutschera Peter
27 AM To: [EMAIL PROTECTED] Subject: [QUESTION] Howto access parallel port java writers, I am a java newbie. How can one access the parallel port of a java laptop? How can one access /dev/parport0? How is hardware represented in java? By standard classes? Which ones? By gateway to an execu

[QUESTION] Howto access parallel port

2007-03-15 Thread Robert Meier
java writers, I am a java newbie. How can one access the parallel port of a java laptop? How can one access /dev/parport0? How is hardware represented in java? By standard classes? Which ones? By gateway to an executable(?) underlying the JVM? What is the protocol/class/...? Can you (

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'

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

2006-08-03 Thread paul asmuth
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't worked ! -

Re: Thread question

2004-06-14 Thread Daniel Malmkvist
Hi I havn't looked at java.nio but I will sure take a deeper look at it, thanks for the tip. /daniel Avi Cherry wrote: I don't have an exact answer to your question, but remember that each thread has to contain a stack of its own, and therefore takes up memory. The 'jav

Re: Thread question

2004-06-14 Thread Nathan Bryant
Daniel Malmkvist wrote: What I understand a thread pool will do lot pf unnessesary polling to no good. But in the 1-thread per connection case the only resorces that will be reserverd is a bit of memory (and on a 64 bit plattform that is not a problem). Or am I missing anything, is there any

Re: Thread question

2004-06-14 Thread Daniel Malmkvist
Éjmélyböl wrote: 2004-06-14, h keltezéssel 18:02-kor Daniel Malmkvist ezt írta: Hi I have a question about threads. I was wondering about what realy happens to a thread on the OS level when i set it to read from a socket when there is no data there. I use Native threads (not green threads

Re: Thread question

2004-06-14 Thread Éjmélyböl
2004-06-14, h keltezéssel 18:02-kor Daniel Malmkvist ezt írta: > Hi > > I have a question about threads. I was wondering about what realy > happens to a thread on the OS level when i set it to read from a socket > when there is no data there. I use Native threads (not green thre

Re: Thread question

2004-06-14 Thread Joseph Shraibman
Daniel Malmkvist wrote: I have an application that should handle alot (>10 000) connection at the same time but usally no traffic. Is the best way to make a thread pool or is the best way to have 1 thread per connection. If no contex switching will be done I don't see why not. YOu will have a

Re: Thread question

2004-06-14 Thread Avi Cherry
I don't have an exact answer to your question, but remember that each thread has to contain a stack of its own, and therefore takes up memory. The 'java.nio' (new i/o) package in recent versions of Java was designed for exactly this case that you're mentioning, wher

Re: Thread question

2004-06-14 Thread Michael Sinz
Daniel Malmkvist said: > Hi > > I have a question about threads. I was wondering about what realy > happens to a thread on the OS level when i set it to read from a socket > when there is no data there. I use Native threads (not green threads). > > Will the thread realy sl

Thread question

2004-06-14 Thread Daniel Malmkvist
Hi I have a question about threads. I was wondering about what realy happens to a thread on the OS level when i set it to read from a socket when there is no data there. I use Native threads (not green threads). Will the thread realy sleep, no contex switch will be done. The thread will sleep

Question

2004-04-13 Thread Dieter Jurzitza
Dear Listmembers, I am currently trying to attach to a web-banking access. However, each time I try to access the page mozilla crashes. Googling in the web showed that other people have the same problem that (apparently) is related to the the application starting after first login and forcing me

Question re. font sizes in JRE 1.4.1

2004-01-10 Thread James Cort
Hi, My bank uses a java app for online banking. Unfortunately the fonts they use tends to result in parts of the text being cut off with the Blackdown JRE 1.4.1. You can see what I'm talking about at www.northernrock.co.uk - click on "your online accounts" on the top-left just above the main m

Re: JNI Multithread Question in Linux

2004-01-07 Thread Neal Sanche
On January 7, 2004 10:37 pm, Paul Mclachlan wrote: > Kok Choon Kiat wrote: > > It appears to me that the native thread has *seized the entire > > flow of control* from java program and it is not running > > independently. Why is that so? How can I make the native thread > > independent and not seiz

Re: JNI Multithread Question in Linux

2004-01-07 Thread Paul Mclachlan
Kok Choon Kiat wrote: It appears to me that the native thread has *seized the entire flow of control* from java program and it is not running independently. Why is that so? How can I make the native thread independent and not seize the flow of control from the java program? I would really appre

JNI Multithread Question in Linux

2004-01-07 Thread Kok Choon Kiat
Dear friends,   I have successfully integrated native (C++) codes which employ threading operation with a simple java program. The objective of the program is to spawn thread (using POSIX pthread_create) that prints 10 “Hello World” in approx. 10 seconds.   My Software environment

general modulo-question

2003-07-07 Thread Christian Kruggel
Hi! I try to do some basic programming and got stuck with the modulo-operator an the problem how to shift any number n into the interval [b;e] with b < 0 and e > 0. My first approach was to calculate the spread of [b;e] by e - b and then to divide n by this spread. Unfortunately this just works f

Re: IBM PPC 1.4.1 Question

2003-06-10 Thread Wilhelm Fitzpatrick
Yow. And as a 603ev user, they are shutting me out on the low end. This is very strange indeed! On Tuesday, Jun 10, 2003, at 07:41 US/Pacific, Kevin B. Hendricks wrote: You probably want to read the following exchange at ibm.software.java.linux if you own a G4 based machine and check you exac

Re: IBM PPC 1.4.1 Question

2003-06-10 Thread Kevin B. Hendricks
Hi, You probably want to read the following exchange at ibm.software.java.linux if you own a G4 based machine and check you exact /proc/cpuinfo against the list that IBM provided. I can confirm ... if I recompile kernel/arch/ppc/kernel/setup.c and tell it to lie and report a dual "604e" system

Re: IBM PPC 1.4.1 Question

2003-06-06 Thread erikrj
d, but have found no information so far. > > I've managed to duplicate this on my Mandrake 8.2 ppc box. If I have > time I'll have a dig at the core and javacore to see if anything obvious > leaps out. I have posted the question to the ibm.software.java.linux news group at ne

Re: IBM PPC 1.4.1 Question

2003-06-06 Thread Andreas Dieling
On Friday 06 June 2003 21:08, Paul Nasrat wrote: > On Fri, Jun 06, 2003 at 12:44:52AM -0700, Wilhelm Fitzpatrick wrote: > > On Thursday, Jun 5, 2003, at 23:09 US/Pacific, Paul Nasrat wrote: > > >and libc. Try setting LD_ASSUME_KERNEL manually and then run it. > > > > > >LD_ASSUME_KERNEL=2.2.5 shou

IBM PPC 1.4.1 Question

2003-06-06 Thread erikrj
This may not be the list to ask this, but since Blackdown does not have a 1.4.x version of the JVM for PPC yet, and I was curious, I figured it couldn't hurt. Has anyone been able to get the newly released 1.4.1 development kit from IBM to work. I get core dumps whenever I run it. I have Blackdown

Thread question

2003-06-06 Thread Roberts, Adam D
Title: Thread question    I am using familiar linux with blackdown's jvm 1.3.1 on an ARM processor.  I have no problem running separate processes, but I can't seem to get any threads to start.  Is there something I need to set in the /proc file system to enable thread support? 

Re: IBM PPC 1.4.1 Question

2003-06-06 Thread Paul Nasrat
On Fri, Jun 06, 2003 at 12:44:52AM -0700, Wilhelm Fitzpatrick wrote: > > On Thursday, Jun 5, 2003, at 23:09 US/Pacific, Paul Nasrat wrote: > > >and libc. Try setting LD_ASSUME_KERNEL manually and then run it. > > > >LD_ASSUME_KERNEL=2.2.5 should be linux threads. > > I just tried it out for mys

Re: IBM PPC 1.4.1 Question

2003-06-06 Thread Tony Reix
Oooops. I just realized you were talking of IBM JVM 1.4.1 on PPC. not on IA32. Sorry. But their information page about IBM Linux JVMs is still not up-to-date ... Regards, Tony { { > Has anyone been able to get the newly released 1.4.1 development kit from { { > IBM to work. { { { { When I last

Re: IBM PPC 1.4.1 Question

2003-06-06 Thread Tony Reix
{ > Has anyone been able to get the newly released 1.4.1 development kit from { > IBM to work. { { When I last looked at it it wasn't available for ppc - thanks for that. { { > I get core dumps whenever I run it. According to the IBM ReadMe (sdkguide.lnxia32.htm) of the IBM 1.4.1 JVM for Lin

Re: IBM PPC 1.4.1 Question

2003-06-06 Thread Wilhelm Fitzpatrick
On Thursday, Jun 5, 2003, at 23:09 US/Pacific, Paul Nasrat wrote: and libc. Try setting LD_ASSUME_KERNEL manually and then run it. LD_ASSUME_KERNEL=2.2.5 should be linux threads. I just tried it out for myself, and I seem to be seeing the same problem. LD_ASSUME_KERNEL does not appear to make

Re: IBM PPC 1.4.1 Question

2003-06-05 Thread Paul Nasrat
On Thu, Jun 05, 2003 at 06:56:51PM -0600, [EMAIL PROTECTED] wrote: > Has anyone been able to get the newly released 1.4.1 development kit from > IBM to work. When I last looked at it it wasn't available for ppc - thanks for that. > I get core dumps whenever I run it. I have Blackdown's 1.3.1 >

Dictionary question

2002-10-10 Thread Raphael Mack
Hi, I know this question is OT but I didn't find a general java mailing list... Is there a class which assigns valueobject to keys (like Dictionary) but allows null as a value? Thanks, Raphael -- Ein klassisches Werk ist ein Buch, das die Menschen loben, aber nie lesen. -- E

Re: Java 3D question

2001-10-07 Thread Sina!JKL
PROTECTED]> Sent: Friday, October 05, 2001 7:44 AM Subject: Re: Java 3D question > > On Wednesday 03 October 2001 08:36, Timothy Reaves wrote: > > I have linux Java 3D working on my box. Are there any actual > > applications out there for Java 3D, or just the little d

Re: Java 3D question

2001-10-04 Thread Rob Saul
On Wednesday 03 October 2001 08:36, Timothy Reaves wrote: > I have linux Java 3D working on my box. Are there any actual > applications out there for Java 3D, or just the little demos that show > that it works? I believe RoboForge uses Java 3D. Anyone who knows better feel free to correct me.

Java 3D question

2001-10-03 Thread Timothy Reaves
I have linux Java 3D working on my box. Are there any actual applications out there for Java 3D, or just the little demos that show that it works? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubsc

Re: ssh question

2001-09-28 Thread Franck Routier
At 15:22 28.09.2001 +0200, Jost Schenck wrote: There are good FAQs on www.gnu.org regarding the GPL and if I remember right, they address this issue. This may be off-topic to the list, so I don't want to get in-depth, but to make one thing clear: if they have written all the code themselves and h

Re: ssh question

2001-09-28 Thread Thomas Nichols
Jost, Oktay, Avi - thanks, I've read the FAQs in the past but this had escaped me. All seems to be (c) Mindbright, so no problems. Thanks for the explanations. - Thomas. At 15:22 28/09/2001 +0200, Jost Schenck wrote: >There are good FAQs on www.gnu.org regarding the GPL and if I remembe

Re: ssh question

2001-09-28 Thread Thomas Nichols
At 23:01 27/09/2001 -0400, Dimitris Vyzovitis wrote: >On Thu, 27 Sep 2001, Timothy Reaves wrote: > > > Does anyone know where I might find information of using ssh & > scp from > > within java? In other words, do the equivilent of scp'ing a file to the > > local machien from a remote machi

Re: ssh question

2001-09-28 Thread Man Chi Ly
On Fri, 28 Sep 2001, Thomas Nichols wrote: > At 23:53 27/09/2001 -0700, Avi Cherry wrote: > >>Yes, the site says so. But this is interesting! Once GPLed code cannot be > >>made non-GPL later on even by the original author. > > > >Depends how you look at it. They can't prevent earlier versions

Re: ssh question

2001-09-28 Thread Jost Schenck
There are good FAQs on www.gnu.org regarding the GPL and if I remember right, they address this issue. This may be off-topic to the list, so I don't want to get in-depth, but to make one thing clear: if they have written all the code themselves and have not incorporated third-party gpl code they

Re: ssh question

2001-09-28 Thread Oktay Akbal
Please read the GPL-Faq at http://www.gnu.org/licenses/gpl-faq.html. Oktay On Fri, 28 Sep 2001, Thomas Nichols wrote: > At 23:53 27/09/2001 -0700, Avi Cherry wrote: > >>Yes, the site says so. But this is interesting! Once GPLed code cannot be > >>made non-GPL later on even by the original autho

Re: ssh question

2001-09-28 Thread Thomas Nichols
At 23:53 27/09/2001 -0700, Avi Cherry wrote: >>Yes, the site says so. But this is interesting! Once GPLed code cannot be >>made non-GPL later on even by the original author. > >Depends how you look at it. They can't prevent earlier versions from >being re-distributed according to the GPL, but th

Re: ssh question

2001-09-28 Thread Avi Cherry
>Yes, the site says so. But this is interesting! Once GPLed code cannot be >made non-GPL later on even by the original author. Depends how you look at it. They can't prevent earlier versions from being re-distributed according to the GPL, but they can re-licence the code any way they want for

Re: ssh question

2001-09-27 Thread Anil Kumar
On Thu, 27 Sep 2001, Dimitris Vyzovitis wrote: ... > It is free for non-commercial use, and I think that older versions are GPLed: Yes, the site says so. But this is interesting! Once GPLed code cannot be made non-GPL later on even by the original author. Anil ---

Re: ssh question

2001-09-27 Thread Dimitris Vyzovitis
On Thu, 27 Sep 2001, Timothy Reaves wrote: > Does anyone know where I might find information of using ssh & scp from > within java? In other words, do the equivilent of scp'ing a file to the > local machien from a remote machine running sshd? you may want to take a look at MindTerm. They

Re: ssh question

2001-09-27 Thread Nathan Meyers
On Thu, Sep 27, 2001 at 09:12:02PM -0400, Timothy Reaves wrote: > Does anyone know where I might find information of using ssh & scp from > within java? In other words, do the equivilent of scp'ing a file to the > local machien from a remote machine running sshd? You might check out the Ja

ssh question

2001-09-27 Thread Timothy Reaves
Does anyone know where I might find information of using ssh & scp from within java? In other words, do the equivilent of scp'ing a file to the local machien from a remote machine running sshd? Thanks! -- To UN

VetoableChangeListner question

2001-08-27 Thread Timothy Reaves
If a Swing field has a registered VetoableChangeListener registered, and it vetos the change, does that field lose focus? In other words, can I use this class to validate a field & prevent the focus from leaving the field. Thanks! -

Re: jvm permissions question

2001-05-11 Thread Nelson Minar
>However, due to the nature of our app and infrastructure out app >needs to be able to do things as different users. Your one app needs to run with the permissions of several different users? In a nutshell, Java isn't going to help you with this. In fact, it'd be fairly awkward to do this in C in

Re: jvm permissions question

2001-05-10 Thread Dimitris Vyzovitis
On Thu, 10 May 2001, Joel Dudley wrote: > Hello all, > I have a security question for you all. We are going to have some java > processes running on our server and, for security reasons, we would prefer > that the JVM not run as root. However, due to the nature of our app and >

Re: jvm permissions question

2001-05-10 Thread Nathan Meyers
On Thu, May 10, 2001 at 02:03:36PM -0700, Joel Dudley wrote: > Hello all, > I have a security question for you all. We are going to have some java > processes running on our server and, for security reasons, we would prefer > that the JVM not run as root. However, due to the natur

jvm permissions question

2001-05-10 Thread Joel Dudley
Hello all, I have a security question for you all. We are going to have some java processes running on our server and, for security reasons, we would prefer that the JVM not run as root. However, due to the nature of our app and infrastructure out app needs to be able to do things as different

JDK1.3 Installation question

2001-02-21 Thread René Thol
Hello everybody! Yesterday I tried to install jdk-1.3.0-FCSa.ppc.rpm on my SuSE6.4PPC, but kpackage told my as unresolved dependencies: libodbc.so and libodbcinst.so! Does anybody know within which package these files are and where I could get them from? Many thanx in advance Kind regards --

Re: JNI Question - I want to open a file for Read/Write

2001-02-15 Thread Santosh Dawara
Hi All, Thank you for replying. > > I am trying to open a file in the usual way, (fopen) > > However, fopen returns the an unusual NULL. At first > > I thought I probably did not have permissions. > > I am sure its not that. > > Check the errno after the fopen(). At least, you'll > no

Simple question about running servlet on Linux

2001-02-15 Thread Jacob Nikom
Hi, I am running Tomcat 3.2.1 on RedHat Linux 6.2 with Apache 1.3.14. I created simple "my_form.html" file and placed it into the directory /usr/local/jakarta-tomcat-3.2.1/webapps/examples/servlets This form suppose to call my servlet using the following line: However, when I click on "Submi

RE: JNI Question - I want to open a file for Read/Write

2001-02-07 Thread Stefaan A Eeckels
On 07-Feb-2001 Santosh Dawara wrote: > I am trying to open a file in the usual way, (fopen) > However, fopen returns the an unusual NULL. At first > I thought I probably did not have permissions. > I am sure its not that. Check the errno after the fopen(). At least, you'll no longer ha

JNI Question - I want to open a file for Read/Write

2001-02-07 Thread Santosh Dawara
One more JNI Questions. I am trying to open a file in the usual way, (fopen) However, fopen returns the an unusual NULL. At first I thought I probably did not have permissions. I am sure its not that. Maybe I am not clear as to what JNI can and cannot do. Would anyone be willing to hel

Re: question about running jdb on redhat linux 7

2001-01-09 Thread Stephan Jaensch
Hi, On Tue, 09 Jan 2001 18:31:01 [EMAIL PROTECTED] wrote: > Hi, I cannot run jdb under linux, after I input 'step', jdb seems hung > there > (there's no output, whatever i input), I don't know why. I tried jdb > under > DOS, and it's ok. Try the JDKs from Sun or IBM, they seem to work OK. Ciao

question about running jdb on redhat linux 7

2001-01-09 Thread wen_dong
Hi, I cannot run jdb under linux, after I input 'step', jdb seems hung there (there's no output, whatever i input), I don't know why. I tried jdb under DOS, and it's ok. Has anyone met with the same problem with me? How to solve this problem? One further question: Ho

local setting question

2001-01-01 Thread Timothy Reaves
I'm having a problem with Java after upgrading some of my RPM's to PLD. When I try to start Borland JBuilder, I get this message on the console: current local is not supported in X11, local is set to CX local modifiers are not supported, using default # # An unexpected exception has been

Real Java/Linux question (I think...)

2000-12-11 Thread Jacob Nikom
Hi, The problem: my Java Console window does not show any messages which do appear on the lower part of my browser. I am debugging applets with my Netscape Communicator 4.75. on Linux RedHat 6.2, Pentium III. The JDK is Linux Sun 1.2.2, plugins installed. If I run Windows, however, the "same" N

Re: question about java 1.3 source

2000-11-06 Thread Joi Ellis
On Mon, 6 Nov 2000, Gita Sukthankar wrote: > Hello, > > Does anyone know where I can download the jdk1.3 source for Linux? I > was able to get the binary from the Sun site, but the only 1.3 source > I saw was for Windows. src.jar is included in the standard distribution, and as far as I know i

question about java 1.3 source

2000-11-06 Thread Gita Sukthankar
Hello, Does anyone know where I can download the jdk1.3 source for Linux? I was able to get the binary from the Sun site, but the only 1.3 source I saw was for Windows. Thanks, -Gita --- Gita Sukthankar Compaq Cambridg

question on port numbers

2000-10-05 Thread Karthik Vishwanath
Hi, I was reading up on basic networking with Sockets on java and had this question: if a server was started on a machine A with the constructor - new ServerSocket(0), and I needed a client on Machine B to connect to this server but the client does not know in advance which port will the service

Re: question about building libraty for JNI

2000-10-02 Thread Aaron Stromas
corection - i was setting the LD_LIBRARY_PATH to /usr/local/java/jre/lib/i386/ not /usr/local/java/jre/lib/i386/classic Aaron Stromas wrote: > Hello again, > > I managed to build my library using the the GNU linker > (ld -G -f /usr/lin/libdb.so -o libkeys.so) but another problem surfaced - I n

Re: question about building libraty for JNI

2000-10-02 Thread Aaron Stromas
Hello again, I managed to build my library using the the GNU linker (ld -G -f /usr/lin/libdb.so -o libkeys.so) but another problem surfaced - I now get java.lang.UnsatisfiedLinkError: /home/ams/work/keys/libkeys.so: undefined symbol: GetStringUTFChars I pass -Djava.library.path=/home/ams/work/k

Re: question about building libraty for JNI

2000-10-02 Thread Joi Ellis
"Aaron M. Stromas" wrote: > > greetings, > > I need a little assistance with building a shared library for JNI under > Linux 2.2. > This is how I went about creating the library: > > compiling: g++ -I /usr/local/java/include > -I/usr/local/java/include/linux -shared -fPIC -o keys.o keys.c > >

question about building libraty for JNI

2000-10-02 Thread Aaron M. Stromas
greetings, I need a little assistance with building a shared library for JNI under Linux 2.2. This is how I went about creating the library: compiling: g++ -I /usr/local/java/include -I/usr/local/java/include/linux -shared -fPIC -o keys.o keys.c linking: gcc -shared -Wl,-soname,libkeys.so -o li

Re: Question on MouseEvent

2000-09-20 Thread Joi Ellis
brEezE wrote: > > Hi, > I have a JWindow displayed below a button, similar to > a JComboBox. The problem is when the "parent" JFrame > is moved to other location, the JWindow is still > remain on the screen at the old location. How do i > hide the JWindow when I click/drag on the title bar of > t

Question on MouseEvent

2000-09-20 Thread brEezE
Hi, I have a JWindow displayed below a button, similar to a JComboBox. The problem is when the "parent" JFrame is moved to other location, the JWindow is still remain on the screen at the old location. How do i hide the JWindow when I click/drag on the title bar of the "parent" JFrame? I have noti

jdk-1.1.7 v3 native threads question/problem

2000-08-31 Thread Bill Halchin
Hello, I have some kind of file system permissions problem. I installed the native threads jdk-1.1.7 on my Red Hat machine (6.0, 6.2??). When I run javac, I get a complaint about inability to create a file in /proc. The permissions on /proc look OK. Any help? Bill Halchin _

java 3D question

2000-07-30 Thread yangyuexiang
Hi, Everyone I used the Box class in my programs. But I want the edge and face have different colors, I cannot find any methods to solve this problem. I donot know whether I must create a special class like Box. Any suggestions will be welcomed! Thanks advance! Yangyuexiang ---

Re: Question about @ argument to javac

2000-07-17 Thread Chris Abbey
gt;compiler behaves the same way. as will most/all other 1.3 based javac's... due to the common code base and all. and yes Mo, I purposely refrained from answering, :) I'm too close to the heart of the question, and responses like Nathan's are what I've been waiting f

Re: Question about @ argument to javac

2000-07-17 Thread Nathan Meyers
Mo DeJong wrote: > I am not sure this is a java-linux question, so feel free > to flame me, but ... > > Does this seem like an error to anyone else? > > echo "" > empty > javac @empty > > I would tend to think that this is the same as > running javac

Question about @ argument to javac

2000-07-17 Thread Mo DeJong
I am not sure this is a java-linux question, so feel free to flame me, but ... Does this seem like an error to anyone else? echo "" > empty javac @empty I would tend to think that this is the same as running javac with no arguments, so it should display a help message. Th

[Question] Java Servlet Err...

2000-07-13 Thread 황정원
I have a problem of servlet process. java.io.IOException: There is no process to read data written to a pipe. at java.net.SocketOutputStream.write(Compiled Code) at sun.servlet.http.HttpOutputStream.writeOu

Re: I have a question about Thread..

2000-07-08 Thread Nathan Meyers
"¸¶·ÐÀÎÇü" wrote: > I made chatting server. When I execute Server, the processes made like following. In the Linux environment, every thread has its own process ID. They look like separate processes, but they are indeed all threads of the same Java process. "Native threads" means you are using

I have a question about Thread..

2000-07-08 Thread ¸¶·ÐÀÎÇü
I made chatting server. When I execute Server, the processes made like following. 736 pts/0S0:00 /usr/local/jdk1.2.2/bin/i386/native_threads/java Chat 774 pts/0S0:00 /usr/local/jdk1.2.2/bin/i386/native_threads/java Chat 775 pts/0S

RE: Hardware-related question

2000-06-19 Thread Robert Wynkoop
not reflect the opinions of my employer] Mail: [EMAIL PROTECTED] [EMAIL PROTECTED] [Original post] Hi everybody, I'm having a problem with RAM upgrade and I don't know how to fix it either who I can ask, so really apologize for this question. I had 64 MB RAM and I've

Hardware-related question.

2000-06-19 Thread Thanh Loan
Hi everybody, I'm having a problem with RAM upgrade and I don't know how to fix it either who I can ask, so really apologize for this question. I had 64 MB RAM and I've bought 64 MB RAM. The problem is that BIOS and Windows see the new RAM but Linux not. Any help would be v

Re: Sun 1.3 src.jar file question

2000-06-04 Thread Calvin Austin
There is a known bug list where this is listed, in a nutshell src.jar is actually a gzip archive, run unzip or gunzip to extract the files from that archive for this release. regards calvin >Did anyone else get an exception when unjaring this file? > > >--

Sun 1.3 src.jar file question

2000-06-04 Thread Timothy Reaves
Did anyone else get an exception when unjaring this file? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

IBM 1.3 AWT question

2000-05-03 Thread Nathan Ehresman
hey guys, i don't have a glibc 2.1 box handy or i'd check this myself. the requirements include KDE or Gnome/Enlightenment. just wondering if QT or GTK is used instead of Motif maybe for the AWT?? thanks! nathan -- To UNSUB

RE: Java security question

2000-04-21 Thread Red Mike
in jar file, so you should not afraid some files inside jar file are changed. hope this helps! Have a nice weekend! --- john <[EMAIL PROTECTED]> wrote: > hi all, > > I have been reading this thread for a while now. > I have a question about the java security in general

RE: Java security question

2000-04-21 Thread Rajesh Nair
ll, > >I have been reading this thread for a while now. >I have a question about the java security in general >and specifically caters to applets downloaded from >the internet sites while browsing. >People have raised security questions when users >browse and download applets on

RE: Java security question

2000-04-21 Thread Rajesh Nair
al. > >Zack > > >-Original Message- >From: Rajesh Nair [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, April 19, 2000 4:22 PM >To: Gayathri Viswanathan; 'Zack Grossbart'; Gayathri Viswanathan; >[EMAIL PROTECTED] >Subject: RE: Java security question >

RE: Java security question

2000-04-21 Thread john
hi all, I have been reading this thread for a while now. I have a question about the java security in general and specifically caters to applets downloaded from the internet sites while browsing. People have raised security questions when users browse and download applets on their local

RE: Java security question

2000-04-21 Thread Zack Grossbart
they do make your car more difficult to steal. Zack -Original Message- From: Rajesh Nair [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 19, 2000 4:22 PM To: Gayathri Viswanathan; 'Zack Grossbart'; Gayathri Viswanathan; [EMAIL PROTECTED] Subject: RE: Java security question

RE: Java security question

2000-04-19 Thread Rajesh Nair
be used on >applets ? >Is there any other alternative ? > >Thanks. > >-- Gayathri > >-Original Message- >From: Zack Grossbart [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, April 19, 2000 1:30 PM >To: Gayathri Viswanathan; [EMAIL PROTECTED] >Subject: RE: Ja

RE: Java security question

2000-04-19 Thread Zack Grossbart
license agreement it may be illegal to do so. Zack > -Original Message- > From: Gayathri Viswanathan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 19, 2000 2:06 PM > To: 'Zack Grossbart'; Gayathri Viswanathan; > [EMAIL PROTECTED] > Subject: RE: Java

RE: Java security question

2000-04-19 Thread Gayathri Viswanathan
: Wednesday, April 19, 2000 1:30 PM To: Gayathri Viswanathan; [EMAIL PROTECTED] Subject: RE: Java security question Gayathri, Obfuscation would help prevent someone from decompiling and understanding your code, but not from changing it. You should sign your JAR file. Tools like Visual Cafe have

RE: Java security question

2000-04-19 Thread Zack Grossbart
. If you look on the JavaSoft site you can get more data about signing JARs. Zack > -Original Message- > From: Gayathri Viswanathan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 19, 2000 12:41 PM > To: [EMAIL PROTECTED] > Subject: Java security question > &

Java security question

2000-04-19 Thread Gayathri Viswanathan
Hi ! I have written a Java applet and we wish to make it into a product. I have the applet setup so that all the resources that it needs are within a jar file. How can I make sure that other people to whom we may sell the software will not be able to disassemble the code or change some of the ima

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 popup window

Another JCE Question...

2000-02-01 Thread Robert J. Hansen
Howdy again, y'all, and forgive yet another JDK/JCE question. I grabbed an open implementation of the Sun JCE from http://www.openjce.org (it supplies the Twofish algorithm, which I need). Untarring it presented with a whole bunch of files. At any rate, in /home/rjhansen/jce-aba-1.1/li

Java/Linux CJK question: user-defined fonts?

2000-01-21 Thread Polly Powledge
Greetings, I'm a developer working on double-byte-enabling a java app. I'd like to support user-defined characters (known in Japan as "Gaiji"). I took a look at http://java.sun.com/products/jdk/1.1/docs/guide/intl/unicode_font.doc.html and read the section on mapping user-defined characters to U

coding question

1999-12-20 Thread Yohans Mendoza
hi all, How can I enable a textarea component to copy an paste text? TIA --Yohans ~ Yohans Mendoza Unix Administrator [EMAIL PROTECTED]Sirius Images Inc. http://www2.utep.edu/~

Re: Font quality question

1999-12-08 Thread jim
Juergen Kreileder wrote: > > > Peter Schuller writes: > > >> Since I cannot currently use the Blackdown 1.2.2 RC3 release as > >> it requires glibc 2.1.2 and I am currently stuck at 2.1.1, I > >> decided to try the Imprise 1.2.2 RC1 JDK. The first thing I > >> have noticed i

Re: Font quality question

1999-12-08 Thread Juergen Kreileder
> Peter Schuller writes: >> Since I cannot currently use the Blackdown 1.2.2 RC3 release as >> it requires glibc 2.1.2 and I am currently stuck at 2.1.1, I >> decided to try the Imprise 1.2.2 RC1 JDK. The first thing I >> have noticed is that the font rendition is terrible co

  1   2   3   4   >