Re: Classpath setting problem

2000-06-21 Thread Rajesh Nair
You may want to check if your CLASSPATH is exported or if you have specified both the compressed and uncompressed jars in the classpath. I put the jars under the $JAVA_HOME/lib directory and that seemed to work At 08:58 AM 06/20/2000 +0530, Hrishiraj Nair wrote: > > Hi , > > I use Mysql al

shopping-cart

2000-06-21 Thread Marcos Lloret
hi, i would like to know how can i make a shopping cart in java? there is any free-class or something to do that.? can i do it with servlets .. applets?? thanks in advance, marcos [EMAIL PROTECTED] -- To UNSUBSCRIBE, e

Re: Classpath setting problem

2000-06-21 Thread Adam Ambrose
The more proper place may be to put any extention packages in $JAVA_HOME/lib/ext, as I just discovered the other day from here: http://java.sun.com/products/jdk/1.2/docs/guide/extensions/spec.html Rajesh Nair wrote: > > You may want to check if your CLASSPATH is exported or if you have specifi

Re: Classpath setting problem

2000-06-21 Thread Rajesh Nair
Thanks. You are right. Hadn't had my coffee yet : -} At 01:44 PM 06/21/2000 -0700, Adam Ambrose wrote: >The more proper place may be to put any extention packages in >$JAVA_HOME/lib/ext, as I just discovered the other day from here: > >http://java.sun.com/products/jdk/1.2/docs/guide/extensions/sp

Re: Classpath setting problem

2000-06-21 Thread Adam Ambrose
I hadn't either - I didn't specify the right path for the JDK. It should be: $JAVA_HOME/jre/lib/ext "I picked the wrong week to give up coffee..." Rajesh Nair wrote: > > Thanks. You are right. Hadn't had my coffee yet : -} > > At 01:44 PM 06/21/2000 -0700, Adam Ambrose wrote: > >The more pro

IBM 1.3 plugin installation: how??

2000-06-21 Thread Kontorotsui
Maybe I'm missing something trivial, but where are the docs that explain how to install the IBM 1.3 plugin? I suppose I have to copy in /opt/netscape/plugins some files, but copying the libjava* stuff gave me bus error. I use Netscape 4.73. --- Andrea "Kontorotsui" Controzzi - MALE Doctor in Co

Tell me some excellent mail list about Jbuilder or pure java.

2000-06-21 Thread Boris
Hi, Who can tell ome excellent mail list about Jbuilder or pure java? Thank you very much! Boris :-) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

jdb & native methods

2000-06-21 Thread rapela
Hello, After having many problems I could debug native methods with jdb. To be able to set breakpoints I had to call a native method containing the following line: __asm__("int $0x3"); I do not like this approach because I have to modify my code and recompile a java class if I want to debug.

System.setProperty("java.class.path", classpath)

2000-06-21 Thread brEezE
Hi, As the subject stated, I would like to know what is the effect of doing that during runtime. As far as I understand, we can't use this method to include the jar files into the classpath to avoid specifying them in command line. Is there any alternative besides writing a custom class loader?