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
d, "Eat bacon." The java virtual machine is telling you that it doesn't know what XYZ means. > Without knowing what the actual error message is, I don't think there > is any way we can help you. If you call your auto mechanic and say, "I can drive down the stree

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 hel

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

2007-03-01 Thread Libran Mail Me
Hi, 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) I am a beginner in Java. Kindly let me know how I ca

How to load help jars dynamically?

2006-10-06 Thread Jim C.
OK, so I've got several jars containing JavaHelp files (no classes) and I want to unit test them. The problem is that I don't know how to get them into, and subsequently out of, the classpath during runtime. I know that this is normally done with ClassLoader's but althought I'm certain it can b

jre 1.3.1 arm-linux .....error!!!!help

2006-02-25 Thread 崔巍
cpu: intel pxa 250 when i type java, it show : "can not find Java 2 runtime environment" it seems to be the problem of libjvm.so. can anyone help me? thanks -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a

Help installing JMF on Linux/AMD64

2005-10-24 Thread Castillo Mendoza, Juan Manuel
Title: Help installing JMF on Linux/AMD64 Hello list! I was sondering if anyone could please help me with the install of Java JMF on Linux/AMD64. Has anyone attempted this? Thanks in advance!     - Juanma.

Java - Linux Help

2004-10-06 Thread Vijay Kurhade
Hello,   Is there any way to find information on which all areas one might need to concentrate on while porting java application to linux o/s.   Regds- Vijay

RE: Help installing JMF on iPAQ

2004-07-16 Thread McCoig, Kenneth
g, Kenneth [mailto:[EMAIL PROTECTED]Sent: Thu 7/15/2004 5:18 PMTo: [EMAIL PROTECTED]Subject: Help installing JMF on iPAQ Hello list! I was wondering if anyone could please help me with the install of Java JMF on my iPAQ h5550 running Familiar Linux. Has anyone attempted this? I am using the

Help installing JMF on iPAQ

2004-07-15 Thread McCoig, Kenneth
Hello list! I was wondering if anyone could please help me with the install of Java JMF on my iPAQ h5550 running Familiar Linux. Has anyone attempted this? I am using the newest JMF from the Java website. I attempted to run the installation bin but it errored out. Thanks in advance! -Kenny

Re: Help on JVM hang

2004-07-07 Thread Joseph Shraibman
Hui Huang wrote: Is this on Redhat 9? If so, try this: + find out java process id + use gdb to attach to the process (gdb - ) + quit gdb The problem just happened again and indeed that trick worked (strace didn't, I think because it doesn't trace all threads, just the one it connects to). I atta

Re: Help on JVM hang

2004-06-24 Thread Juergen Kreileder
Hui Huang <[EMAIL PROTECTED]> writes: > Joseph Shraibman wrote: >> What about this? >> http://gcc.gnu.org/ml/java/2004-05/msg00064.html >> Do you know what he's talking about? > > Not familiar w/ ResourceBundle implementation. But it looks > like a performance trick to avoid frequent lookup for cl

Re: Help on JVM hang

2004-06-24 Thread Joseph Shraibman
Hui Huang wrote: It looks like the same issue. IIRC, the problem happened when one thread sleeps on pthread_cond_wait, and another thread in pthread_cond_{signal,broadcast} to wake up the first thread, sometimes kernel failed to change the first thread back to running. So how can I encourage this c

Re: Help on JVM hang

2004-06-24 Thread Hui Huang
Joseph Shraibman wrote: Hui Huang wrote: Is this on Redhat 9? If so, try this: + find out java process id + use gdb to attach to the process (gdb - ) + quit gdb wait a few seconds, does the process start to run again? If yes, it's a known RH-9 issue (a notification from pthread_cond_broadcast is lo

Re: Help on JVM hang

2004-06-24 Thread Joseph Shraibman
know any patches anywhere for this problem ??? Unfortunately, no, Redhat did not release the patch. RH9 is the only platform we've seen this problem. We didn't stress test Fedora Core, but AS-3 works Ok. So you do have code that can reproduce this problem? It would help a lot if I could

Re: Help on JVM hang

2004-06-24 Thread Hui Huang
aster than 2.2.5. Do you know any patches anywhere for this problem ??? Unfortunately, no, Redhat did not release the patch. RH9 is the only platform we've seen this problem. We didn't stress test Fedora Core, but AS-3 works Ok. So you do have code that can reproduce this problem? It wo

Re: Help on JVM hang

2004-06-24 Thread Hui Huang
ess still hangs after attach-detach with gdb, it's something else. Reg Veda -Original Message- From: Hui Huang [mailto:[EMAIL PROTECTED] Sent: Thursday, June 24, 2004 10:39 AM To: Joseph Shraibman Cc: [EMAIL PROTECTED]; Veda N Ponnusamy; [EMAIL PROTECTED] Subject: Re: Help on JVM hang Is

Re: Help on JVM hang

2004-06-24 Thread Joseph Shraibman
Hui Huang wrote: Is this on Redhat 9? If so, try this: + find out java process id + use gdb to attach to the process (gdb - ) + quit gdb wait a few seconds, does the process start to run again? If yes, it's a known RH-9 issue (a notification from pthread_cond_broadcast is lost in NPTL). Update to A

Re: Help on JVM hang

2004-06-24 Thread Joseph Shraibman
ocess start to run again? If yes, it's a known RH-9 issue (a notification from pthread_cond_broadcast is lost in NPTL). Update to AS-3 or set LD_ASSUME_KENREL should fix it. Set LD_ASSUME_KENREL to what? 2.2.5? Does only redhat 9 have this problem? Will installing a stock kernel or one from f

RE: Help on JVM hang

2004-06-24 Thread Veda N Ponnusamy
Shraibman Cc: [EMAIL PROTECTED]; Veda N Ponnusamy; [EMAIL PROTECTED] Subject: Re: Help on JVM hang Is this on Redhat 9? If so, try this: + find out java process id + use gdb to attach to the process (gdb - ) + quit gdb wait a few seconds, does the process start to run again? If yes, it's a

Re: Help on JVM hang

2004-06-24 Thread Hui Huang
eph Shraibman [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 1:26 PM To: Calvin Austin Cc: Veda N Ponnusamy; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Help on JVM hang Calvin Austin wrote: Does it ever resume. 1.5beta2 has more diagnostics in it and you may be able to even attache

Re: Help on JVM hang

2004-06-24 Thread Joseph Shraibman
turn obj; } Veda N Ponnusamy wrote: Please find attached the thread dump of the JVM. I didn't try running this app on 1.5 jvm Reg Veda -Original Message- From: Joseph Shraibman [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 1:26 PM To: Calvin Austin Cc: Veda N Ponnusamy; [

Re: Help on JVM hang

2004-06-14 Thread Joseph Shraibman
f the JVM. I didn't try running this app on 1.5 jvm Reg Veda -Original Message- From: Joseph Shraibman [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 1:26 PM To: Calvin Austin Cc: Veda N Ponnusamy; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Help on JVM hang Calvin Austi

Re: Help on JVM hang

2004-06-11 Thread Joseph Shraibman
test with 1.5 would help a great deal. I was never able to reproduce the hang on a test machine, it only happened in production under load. My boss would kill me if I ran a beta jvm in production. I also haven't seen the bug for a couple of weeks since I limited the work done by that j

Re: Help on JVM hang

2004-06-11 Thread Calvin Austin
help a great deal. regards calvin Joseph Shraibman wrote: I have. I reported it to sun and they said if they had a repoducable test case they would open a bug. But I could never figure out how to reproduce it. Veda N Ponnusamy wrote: Hi folks, I'm posting this, since I know I can get

Re: Help on JVM hang

2004-06-11 Thread Joseph Shraibman
I have. I reported it to sun and they said if they had a repoducable test case they would open a bug. But I could never figure out how to reproduce it. Veda N Ponnusamy wrote: Hi folks, I'm posting this, since I know I can get help only from this community. My application is a he

Help on JVM hang

2004-06-10 Thread Veda N Ponnusamy
Hi folks,     I'm posting this, since I know I can get help only from this community. My application is a heavily multi-threaded java application which is runs in Linux with the following configuration   OS - RH9 Kernel - 2.4.20-30.9smp glibc - glibc-2.3.2-27.9.7 JVM - SUN 1.4.2

help needed

2003-07-03 Thread vishal sinha
hi, can anybody tell me how many threads sun suggest to use in a program if no. of processors is not a problem. Any link directing to such a problem will be useful Thanking you in anticipation, vishal sinha __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per mo

Exception Message Help

2003-06-21 Thread edwarner99
I'm a little new to Linux. I'm running RH9. This message was in a file called hs_err_pid9109.log. I have several in my directory. Can someone explain how to fix this? Thanks, An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0x42073770

Re: debian help

2003-01-13 Thread Nicole Zimmerman
Check /usr/lib/j2se/version/ (e.g. /usr/lib/j2se/1.3/) or /usr/lib/j2se/ (e.g. /usr/lib/j2se1.3) At 10:33 on Jan 12, kjhbh hjhjh combined all the right letters to say: > Hi all, I have just installed Blackdowns packages by following the > instructions at > http://www.debian.org/doc/manuals/debi

debian help

2003-01-12 Thread kjhbh hjhjh
Hi all, I have just installed Blackdowns packages by following the instructions at http://www.debian.org/doc/manuals/debian-java-faq/ch8.html installation didn't seem to complain about any problems but I can't seem to find out where everthing was installed. Anyone used the Debian packages? bob

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-06-07 Thread Craig O'Shannessy
This was solved. It turned out to be bad RAM. memtest86 did NOT find the problem after thrashing the memory for over an hour. Thanks to everyone that helped. Regards, Craig O'Shannessy P.S. Redhat 7.2 doesn't seem to run Linux stably on either uni or multi processor machines, and Redhat < 7.

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-30 Thread Craig O'Shannessy
Hi Dan, I suppose this could be one of our problems, Could this "illegal instruction" problem listed here be the cause of our sig 11 errors? (there is no mention of -i "illegal" in any of the error files that the JVM saves on each crash). The "patch_final" link at the bottom of this page doesn

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-30 Thread Craig O'Shannessy
This is just an update to put a permanent record of what's happening online. There seems to be bugs in RH 7.2 on uni (and SMP) processor machines, I have not tracked them down, but no JVM seems to run stably on it. Upgrading to RH 7.3 definitely fixed our problems on our uni processor machines,

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-23 Thread Craig O'Shannessy
Hi, Yes, I have done this, I ran the memory test (took over an hour!), and everything was OK. It is happening on 3 machines (all athlons, one of them SMP), so I'm pretty sure it's not a hardware stability issue. On Thu, 23 May 2002, Dan Kegel wrote: > Craig O'Shannessy wrote: > > I am having

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-23 Thread Calvin Austin
There is a very important patch to Redhat 7.2 SMP kernel, you need the 2.4.9-31smp patch available under 'security patches' from redhat.com Unpatched redhat 7.2 SMP will create duplicate process ids. That is not good! The bug is also fixed in 2.4.18 kernels. Hui Huang tracked this down a while

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-23 Thread Craig O'Shannessy
hers > > crash (with Signal 11, SEGV) (both the smp (dual athlon) machine and uni > > processor machines). I have been researching this with a colleague for > > days, and no one seems to have a solution to this issue. If you have > > faced this issue and solved it, PLEASE let

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-23 Thread Craig O'Shannessy
On 23 May 2002, Jesse Stockall wrote: > On Thu, 2002-05-23 at 04:44, Craig O'Shannessy wrote: > > > > Sun JDK 1.4.0 > > Sun JDK 1.3.1 > > Sun JDK 1.3.1_03 > > IBM JDK 1.3.1_01 (had to use "LD_ASSUME_KERNEL=2.2.5" for smp machine) > > Blackdown JDK 1.3.1_01 (both native and green threads, both g

Re: HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-23 Thread Jesse Stockall
On Thu, 2002-05-23 at 04:44, Craig O'Shannessy wrote: > > Sun JDK 1.4.0 > Sun JDK 1.3.1 > Sun JDK 1.3.1_03 > IBM JDK 1.3.1_01 (had to use "LD_ASSUME_KERNEL=2.2.5" for smp machine) > Blackdown JDK 1.3.1_01 (both native and green threads, both give sig 11) In my experience you should always be us

HELP : Stable JVM for running JBoss on Redhat 7.2 (smp) ??

2002-05-23 Thread Craig O'Shannessy
ems to have a solution to this issue. If you have faced this issue and solved it, PLEASE let me know! I upgraded glibc*rpm which helped with a SMP specific (pthreads) sig. 11 crash, but I am still don't have a production qualitiy environment. (now running glibc-common-2.2.4-24,glibc-2.2.4-24) HE

Re: Help a novice

2002-03-29 Thread Pierre Neihouser
luded in RH7.2). Read de doc and off you go... -- Pierre - Original Message - From: "Khiani" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 29, 2002 11:14 AM Subject: Help a novice > Hi every one out there > I have Red hat 7.2 installed o

Help a novice

2002-03-29 Thread Khiani
Hi every one out there I have Red hat 7.2 installed on my system and i have to start working on a college project with Java running on Linux, but i dont don't know which Java will run. I know this is a very silly question but i am really in a trouble. It will be very kind of you if some one can p

Re: Help Required

2002-01-17 Thread Alexander V. Konstantinou
You must be running RedHat 7.1 with Sun JDK 1.3.0. There are two known problems with this configuration: 1. Need a link (ln -s /bin/cut /usr/bin/cut); which you solved by actually moving the executable (not a good idea) 2. Need "export LD_ASSUME_KERNEL=2.2.5" before executing java I would s

Help Required

2002-01-17 Thread guruprasads
Hi, I installed Java 1.3 on my linux machine. When I ran the "javac" or "java" command it gave me /usr/bin/cut not found. Then I moved cut to /usr/bin.. When I ran the "javac" command it worked. But If I ran the "java" command the system hungs... Can anyone throw light on this.. regards gur

Re: Java 3D crashes when i close the window - Please Help

2001-12-24 Thread Nathan Meyers
ize that it could be that >my laptop does > not have 3D hardware .. although i hope this is not the case. Has any one >encountered this issue? > > > Any help will be greatly appreciated, A note I found in the Flightgear-users archive suggests that versions of Mesa prior to 3.4.2

Java 3D crashes when i close the window - Please Help

2001-12-24 Thread Eryk Furman
m having a hard time installing it, not sure why. I run ./configure, but on the make and make install i get "nothing to be done" messages. I also realize that it could be that my laptop does not have 3D hardware .. although i hope this is not the case. Has any one encountered this iss

Help about JMS

2001-09-20 Thread Thiago Modro
Hello, i need help in JMS, i'm a novice in java. My problem is: As to order messages for other machines of continuous form. PS.: all must order and receive messages -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a su

Re: Novice user requesting help with JIT and RedHat Sparc Linux 6.1

2001-09-03 Thread Matthew Jensen
Warning: JIT compiler "sunwjit" not found. Will use interpreter. > > I'm obviously doing something stupid but after spending all morning > searching the web for an answer I'm getting nowhere fast. Please > would somebody help me out. >From memory there was

Novice user requesting help with JIT and RedHat Sparc Linux 6.1

2001-09-03 Thread Jo_Mills
the README's JIT is turned on by default. Yet what I get is: Warning: JIT compiler "sunwjit" not found. Will use interpreter. I'm obviously doing something stupid but after spending all morning searching the web for an answer I'm getting nowhere fast. Please w

Re: Help getting ARM 1.3.1 to run?

2001-07-02 Thread Juergen Kreileder
On Mon, 02 Jul 2001, Marc Palmer wrote: > On 02/07/01, 19:00:21, Juergen Kreileder <[EMAIL PROTECTED]> wrote > regarding Re: Help getting ARM 1.3.1 to run?: > >> You shouldn't use bin/.java_wrapper directly, use bin/java. If >> bin/java isn't there y

Re: Help getting ARM 1.3.1 to run?

2001-07-02 Thread Marc Palmer
-- Original Message -- On 02/07/01, 19:00:21, Juergen Kreileder <[EMAIL PROTECTED]> wrote regarding Re: Help getting ARM 1.3.1 to run?: > On Mon, 02 Jul 2001, Marc Palmer wrote: > > I'm having a hard time getting 1.3.1 RC1 to run on my iPAQ. I have > > Fami

Re: Help getting ARM 1.3.1 to run?

2001-07-02 Thread Juergen Kreileder
On Mon, 02 Jul 2001, Marc Palmer wrote: > I'm having a hard time getting 1.3.1 RC1 to run on my iPAQ. I have > Familiar 0.4 installed. > > I have extracted the JRE to a microdrive and mounted it as /mnt/hda. > > Now, first how do I run the VM? I tried running .java_wrapper just > as a test, and

Help getting ARM 1.3.1 to run?

2001-07-02 Thread Marc Palmer
Hi, I'm having a hard time getting 1.3.1 RC1 to run on my iPAQ. I have Familiar 0.4 installed. I have extracted the JRE to a microdrive and mounted it as /mnt/hda. Now, first how do I run the VM? I tried running .java_wrapper just as a test, and it says "Error: can't find libjava.so". My tre

Can anyone help

2001-06-23 Thread vijay kukreja
ce diagram. Thanks in advance for your help. regards, vijay _ Get your FREE download of MSN Explorer at http://explorer.msn.com -- To UNSUBSCRIBE, email to [EMAIL PROTECT

Re: Can anyone help

2001-06-23 Thread Avi Cherry
generates a sequence diagram. >Thanks in advance for your help. >regards, >vijay I'm not sure what platform you're on, but for the Mac, there's a program called ObjectPlant that will do the trick for you. It can reverse engineer Java and C++ classes and generate UML diagra

Re: Can anyone help

2001-06-18 Thread Florent Coste
ams generated out of Rational rose and > magic draw and TogetherJ. > But i'm not able to locate a tool which generates a sequence diagram. > Thanks in advance for your help. > regards, > vijay > _ >

Re: Need for help while writing resolver

2001-05-07 Thread Ingo Rockel
ing an application in Java. For which i need resolver > which could translate the name of domain to its IP. > eg. > bc.edu.pk to 210.56.11.76 > is there any function of net package of java library regarding this > problem which could directly perf

Need for help while writing resolver

2001-05-07 Thread MCS-MAAT
no idea please help me hoping for good response Mirza Abdul Ala Taimur -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

help

2001-05-05 Thread Deepa . Ananthanarayanan
:> We have a requirement in our project which talks about updating the windows :> event log from Java. Can someone give us some pointers as to how we can :> accomplish this task?. :> :> The event log needs to be filled through Java :> code. for eg,. if an erorr like "database down" :> arises, we

Java help font and character separation

2001-04-02 Thread Stuart Wier
Using Javahelp in an application that runs on Windows and Linux, the text looks fine on Windows but on Linux the character separation is very poor. Some words run together, while there are gaps inside words as large as should be between words. The font is pretty rough, too. Can anything be done?

Help gujarat

2001-02-23 Thread V Suresh
This is for the people of gujrat & all of us who > want to help. > There is a site called www.causeanaffect.org which > is paid for by corporate sponsors. Every click on its > "Save a life" button will result in donation of food > packets for the victims. It will not

Re: How to print String to default Printer, Help

2000-12-06 Thread Joseph Shraibman
" to my default printer, NOT > my screen. Could you help me on it? > > Thanks!! (Sorry for the basic stupid question) > > David > > *** > > public static v

How to print String to default Printer, Help

2000-12-04 Thread New Java
Hi, there, What I want to do is: When the following code running, print "try to be printed" to my default printer, NOT my screen. Could you help me on it? Thanks!! (Sorry for the basic stupid question) David *** public static void main (S

Help: Read data from file.

2000-11-07 Thread New Java
Hi, I want to read data from a file. The data file: mydata.txt First_Name, Last_Name, Age John, Paul, 30 David, Lee, 26 : : Can I ignore the first line--> the Title and just read from second line? Thanks, David __ Do You Yahoo!? Thousands of

Re: [Fwd: I am lost! Can you help?]

2000-10-27 Thread Rajesh Patel
Juergen Kreileder wrote: > > "Rajesh" == Rajesh Patel <[EMAIL PROTECTED]> writes: > > Rajesh> black:rpatel% javac bank/CGGAMPSSLSocketFactory.java > Rajesh> bank/CGGAMPSSLSocketFactory.java:17: The method > Rajesh> bank.Socket createSocket(java.lang.String, int) declared > Raj

Re: [Fwd: I am lost! Can you help?]

2000-10-27 Thread Joi Ellis
On Fri, 27 Oct 2000, Rajesh Patel wrote: > I am using jsse1.0.2, Redhat 6.2 jdk 1.2.2. > > Thanks, The error message said what the problem was. Not only must your method's name and parameters match, but the return type must match also. -- Joi EllisSoftware Engineer Aravo

Re: [Fwd: I am lost! Can you help?]

2000-10-27 Thread Juergen Kreileder
> "Rajesh" == Rajesh Patel <[EMAIL PROTECTED]> writes: Rajesh> black:rpatel% javac bank/CGGAMPSSLSocketFactory.java Rajesh> bank/CGGAMPSSLSocketFactory.java:17: The method Rajesh> bank.Socket createSocket(java.lang.String, int) declared Rajesh> in class bank.CGGAMPSSLSocketFac

[Fwd: I am lost! Can you help?]

2000-10-27 Thread Rajesh Patel
I am using jsse1.0.2, Redhat 6.2 jdk 1.2.2. Thanks, -Raj Hi,    I am trying to implement my version of RMISocketFactory that provides ssl sockets instead of regular sockets.  I extended RMISocketFactory as follows but compiler complains that i can not extend it's methods! package bank; i

Re: Help, why wrong ?!

2000-10-14 Thread Ali
rintln(++a); }catch(IOException e){System.out.println(e.getMessage());} } } regards ali farid - Original Message - From: Friendship <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 13, 2000 11:26 PM Subject: Help, why wrong ?! > Hi, guru, > > I am very n

Re: Help, why wrong ?!

2000-10-13 Thread Carlos Olmos
non deprecated function. hope this helps. Carlitos. Friendship wrote: > Hi, guru, > > I am very new to java. > I want read a int from keyboard and plus one, then > display it. > But why it doesn't work? > Help me please!! > > Thanks & Have nice weeke

Help, why wrong ?!

2000-10-13 Thread Friendship
Hi, guru, I am very new to java. I want read a int from keyboard and plus one, then display it. But why it doesn't work? Help me please!! Thanks & Have nice weekend!! import java.io.*; public class ReadKeyB { public static void main (String args[]) { DataInput

Re: help..

2000-10-13 Thread Jesus M. Salvo Jr.
Joseph, Go to my homepage link for Oracle8i Linux: http://homepages.tig.com.au/~jmsalvo/linux/oracle8i.html Cheers, John Salvo Santhosh Joseph wrote: > > Friends, > I'm relativly new to Linux/Java/Oracle. As a first step, i tried to > install Oracle 8i on my linuxbox (Red Hat 6.2 - which is

help..

2000-10-13 Thread Santhosh Joseph
Friends, I'm relativly new to Linux/Java/Oracle. As a first step, i tried to install Oracle 8i on my linuxbox (Red Hat 6.2 - which is the downloadable version supplied along with a popular magazine ). Fortunatly, the CD carried a script file, which installed Java 1.1 in the /usr/bin directory

Re: Need a BIG help

2000-09-19 Thread jprivera
This is not a backdoor/trojan. It looks like that but that is part of my job make backups of my servers. but don`t worry now i think i know how to do it with java any way there are a command in linux with the one it can do it. Any way... thank you everyone for the BIG HELP that you gave

Re: Need a BIG help

2000-09-18 Thread Chris Abbey
Sorry, but most of the people on this list aren't going to help you write a backdoor/trojan. Perhaps a not so subtle reminder to everyone... [EMAIL PROTECTED] == JAVA & LINUX JAVA & LINUX != JAVA | LINUX --- [EMAIL PROTECTED] != JAVA | LINUX At 15:42 9/18/00 -0600, [EMAIL PRO

Need a BIG help

2000-09-18 Thread jprivera
I made a Client/Server aplication but when a send the message, the message has to be the PASSWD file. I am almost new in java programin so realy need help. I was wondering if somebody can help me with this. Juan Pablo Rivera

Re: A help please

2000-09-15 Thread Joi Ellis
On Fri, 15 Sep 2000, Joi Ellis wrote: > Use a thread to read from the pipes. The thread can block without > disturbing the flow of the rest of the java program. > > Unix pipes run sequentially as they do on windows. Unix pipes send > data as soon as the IO buffers are flushed if buffers are

Re: A help please

2000-09-15 Thread Joi Ellis
Reghunath P D wrote: > > Dear Sir, > > Here is my problem, > > Sub:InterProcess Communication in Linux > > There are two neverending, independent, concurrent process..P1 and P2 > P1 is capable of generating some data.. > and p2 is capable of consuming some data. > P1 is a C Process > P2 is a J

A help please

2000-09-14 Thread Reghunath P D
Dear Sir, Here is my problem, Sub:InterProcess Communication in Linux There are two neverending, independent, concurrent process..P1 and P2 P1 is capable of generating some data.. and p2 is capable of consuming some data. P1 is a C Process P2 is a Java Process Q::No 1 *** Is there exists a

Help!! How to use server side javascript on Apache?

2000-06-05 Thread Kilmer Yang
Hi, guys: I want to use server side javascript on Apache , I know that the Netscape Entiprise Server with the LiveWire can provide this running environment to server side javascript, but on Linux , are there any solutions for running server side javascript to access postsql databa

[Fwd: Help to configure Servlets Programming Environment]

2000-06-04 Thread Walter G. da Cruz
.  Go to $TOMCAT_HOME/bin/ and type: ./startup.sh     7 Open your browser and enter: http://localhost:8080 (the standard port for Tomcat servlet). Tomcat should show.     I hope this help.  More information in http://jakarta.apach

Re: Help to configure Servlets Programming Environment

2000-06-01 Thread Peter Pilgrim
[EMAIL PROTECTED] wrote: > > Greetings > > I am a teacher in UNIVERSIDAD DE ANTIOQUIA in the arena of > > Networks and Programming , and I am very interested in to > begin to work with Servlets Programming. > > At current time I dispose of the followi

Help to configure Servlets Programming Environment

2000-06-01 Thread Mario Jaramillo R.
Greetings I am a teacher in UNIVERSIDAD DE ANTIOQUIA in the arena of Networks and Programming , and I am very interested in to begin to work with Servlets Programming. At current time I dispose of the following environment in my PC: .LINUX RE

Re: RMI ClassNotFoundException - help!

2000-05-22 Thread yangyuex
list. BTW, is there a > 'debug' mode for rmiregistry?) .... > > (Dear RMI users,) > > Can you please help me with this problem I am having trying to establish > a connection between Server and client. The server process(es) seem to > properly register with rmireg

RMI ClassNotFoundException - help!

2000-05-22 Thread James Sinnamon
#x27; mode for rmiregistry?) (Dear RMI users,) Can you please help me with this problem I am having trying to establish a connection between Server and client. The server process(es) seem to properly register with rmiregistry, the client process, succeeds in looking up the server process, b

Re: HELP: using unix-signals?

2000-03-31 Thread kornel c
want server.shutdown(); // and exit cleanly System.exit(0); } } } ==excerpt ends here== - Original Message - From: "Chris Kelly" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, March 30, 200

JDK 1.2.2 RC4 JNI - garbage collector problems - help!!!!

2000-03-31 Thread Ramesh Thummala
Hi everybody, Sorry if this is bothering you but i need help while using Blackdown JDK 1.2.2 RC4. While i am using JDK 1.2.2 RC4 on RedHat 6.2 Linux with glibc2.1.3, i am facing very peculiar problem. Due to memory alloc failure, the garbage collector starts and hangs the daemon. It

Re: HELP: using unix-signals?

2000-03-30 Thread TrentJarvi
http://interstice.com/~kevinh/projects/javasignals/ -- Trent Jarvi [EMAIL PROTECTED] On Thu, 30 Mar 2000, Bruno Boettcher wrote: > Hello, > > i didn't found this in the FAQ's nor in the docu is there a way to capture > -c interruptions or as long as this one to any one of the other > uni

Re: HELP: using unix-signals?

2000-03-30 Thread Chris Kelly
http://interstice.com/~kevinh/projects/javasignals/ http://www.naturalbridge.com/useful/index.html At 07:06 PM 3/30/00 +0200, Bruno Boettcher wrote: >i didn't found this in the FAQ's nor in the docu is there a way to capture >-c interruptions or as long as this one to any one of the other >un

HELP: determining system load?

2000-03-30 Thread Bruno Boettcher
Hello, i am setting up an distributed environment, it would be helpful to be able to determine the load on each node is there a platform independ way to get grip of this ? Does anything speak against reading /proc/loadavg ? (if linux was detected as platform...) -- ciao bboett ===

Help java3d

2000-03-30 Thread Dr. S. V. Rao
Hello, I have downloaded jdk-1.2.2 and java3d-1.1.3 and installed. I am viewing java3d demos using appletviews, but unable to view in nestscape. Please let me know, what I have to do? Thanks in advance svrao -- --- Dr. S. V. Rao

Re: help with jdk1.2.2

2000-03-29 Thread Peter Pilgrim
[EMAIL PROTECTED] wrote: > > Hi- > > I just downloaded and installed jdk1.2.2 on RH6.1. When trying to run > some sample code, I get the following message: > > Exception in thread "main" java.lang.NoClassDefFoundError: > p1/Protection > > Here is what I have: > > jdk1.2.2 is installed i

help with jdk1.2.2

2000-03-28 Thread Steve Ettorre
Hi- I just downloaded and installed jdk1.2.2 on RH6.1. When trying to run some sample code, I get the following message: Exception in thread "main" java.lang.NoClassDefFoundError: p1/Protection Here is what I have: jdk1.2.2 is installed in /usr/local. My path variable has /usr/local/jdk1.2

Re: Jsp Newbie, Help

2000-03-20 Thread James Seigel
It is all in the documentation. #:) James. "V.Vasant" wrote: > Hello, > I have just started learning about servlets , even though I have > sufficient knowledge of the language in general. I downloaded and > installed the JSDK 2.0 , but I couldn't find the servletrunner utility... > Also

Re: Jsp Newbie, Help

2000-03-17 Thread Peter Pilgrim
[EMAIL PROTECTED] wrote: > > Vasant, > > The JSDK is what you need, yes. Default servletrunner location: > /usr/local/JSDK2.0/bin/ Also, check the doc directory in the JSDK for where it > talks about an overview of the servlet architecture. > > I use JServ-1.1 instead of servletrunner to se

Re: Jsp Newbie, Help

2000-03-17 Thread John . Folkers
John "V.Vasant" <[EMAIL PROTECTED]> on 03/17/2000 08:53:41 AM To: [EMAIL PROTECTED] cc: Subject: Jsp Newbie, Help Hello, I have just started learning about servlets , even though I have sufficient knowledge of the language in general. I downloaded and installed the

Jsp Newbie, Help

2000-03-17 Thread V.Vasant
Hello, I have just started learning about servlets , even though I have sufficient knowledge of the language in general. I downloaded and installed the JSDK 2.0 , but I couldn't find the servletrunner utility... Also how do I view the servlets I write and where do I keep them?? Ple

Re: Help,, Red Hat 5.1 and JDK1.2

2000-02-04 Thread Jacob Nikom
PATH to included, but when I try to run > > > java -version > > > i get the following > > > > > > /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory > > > /usr/local

Re: Help,, Red Hat 5.1 and JDK1.2

2000-02-04 Thread Jacob Nikom
en I try to run > java -version > i get the following > > /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory > /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory > java was not found in /bin/i386/green_th

  1   2   3   4   5   >