NetDynamics

1999-07-22 Thread LAIKOK
Has anyone have use the NetDynamics before ? I plan to use the NetDynamics run on NT /Solaris and the database server is Linux which have Postgres / MySQL . Does anybody ever tried to configure in such a way or that is possible ? _ Do You Yah

Re: Java IDE for Linux?

1999-07-22 Thread Chris Woods
Guillermo Payet <[EMAIL PROTECTED]> writes: > Hello, > > Can someone recommend a Java Development environment for Linux? That is: > an IDE to develop Java code, not necessarily written in Java. My preference is XEmacs (http://www.xemacs.org/) with JDE (http://sunsite.auc.dk/jde/) and the JDK.

Re: Evoke Unix call ">" from Java??

1999-07-22 Thread Moses DeJong
On Thu, 22 Jul 1999, Yuet Sim Lee wrote: > I am trying to make my Java code > to exec another Unix program. > The command in Unix/Linux platform > is: > > "ppmtogif inputfile.ppm > outputfile.gif" > > The command will create a new output file > storing a gif formatted image. > However, I t

Re: Java IDE for Linux?

1999-07-22 Thread Kazushi Mukaiyama
Hi G, > Can someone recommend a Java Development environment for Linux? That is: > an IDE to develop Java code, not necessarily written in Java. How about "WipeOut"? I use this on linux. http://www.softwarebuero.de/wipeout-eng.html This can develop not only Java but also C, C++, etc. Because i

Which tar file(s)?

1999-07-22 Thread Brent Allsop
Folks, Thanks for all the help about using java without graphics! You guys are much better than the technichal support I'm getting out of livesoftware for jrun! I got a few more questions. I'm trying to download a blackdown run time environment. I don't want a devel

JDK1.2 installation problems

1999-07-22 Thread Md.Riaz
Hi,       I am using linux-RedHat6 on my ix86 system. After downloading about 20 MB of JDK1.2 pre-ver2.1 , the installation bombed on me stating missing libjava.so. I hava glibc2.1 on my system and I'm sure I have downloaded the correct version of JDK. So what is the problem? Please help me.

Re: Java IDE for Linux?

1999-07-22 Thread Riyad Kalla
This same question came up a few weeks ago, and there were a lot of suggestions, which I checked out. I used to use Emacs with the JDE addition, which was simple and nice... but someone pointed me to AnyJ, and good lord... I was blown away! Its a free developement environment for Linux ( not for

Re: Java IDE for Linux?

1999-07-22 Thread Alex M.
emacs or xemacs with JDE is what I like the best so far. I've looked at NetBeans, and it's okay, but a little slow. I do like Together/J and Structure Builder that integrade modeling tools with code generation. On Thu, 22 Jul 1999, Guillermo Payet wrote: > > Hello, > > Can someone recommend

Java IDE for Linux? (Correction)

1999-07-22 Thread Guillermo Payet
Actually, I just realized that Kawa is Win32 binaries, so never mind the previous Kawa comments >Can someone recommend a Java Development environment for Linux? That is: >an IDE to develop Java code, not necessarily written in Java. > >I looked at Kawa, a Java based IDE, but based on t

Java IDE for Linux?

1999-07-22 Thread Guillermo Payet
Hello, Can someone recommend a Java Development environment for Linux? That is: an IDE to develop Java code, not necessarily written in Java. I looked at Kawa, a Java based IDE, but based on their Web site, it's not clear if will run under anything but Windoze. What are most people using? e

Re: Help needed

1999-07-22 Thread Jim Hazen
I don't have a problem with 1.1.7B, and if you use 1.2pre2 and put a System.out.println to print out sum after your loop, it will exit normally with a sum of 9604. Without the println, 1.2pre2 bombs for me too. Strange. -Jim

DB2, Linux & Java Experiences

1999-07-22 Thread Alexander Schatten
I am searching for a database for my new project. now there are really a lot of RDBMS systems for Linux (nearly too much!). at the moment I am playing with mySQL, which is nice, simple, but lacks some functionality: foreign keys, first of all. PostgreSQL seems to have other problems, now there are

Re: Help needed

1999-07-22 Thread Nathan Meyers
Rudi Streif wrote: > > Raj, > > Basically it says that your code doesn't make sense because the result of > sum is invariant to the loop. I can't tell you why it fails under Blackdown > JDK1.2 for Linux (it does on my machine too) but works under Sun JDK1.2 for > Windows. The failure is in the

Re: Bad file descriptors?

1999-07-22 Thread Daniel W. Dulitz x108
Dustin Lang writes: > Can someone tell me what this means: > > java.io.IOException: Bad file descriptor > at java.io.FileInputStream.readBytes(Native Method) > at java.io.FileInputStream.read(Compiled Code) > ... Sorry, I can't say without looking at the native method. But

Re: Sending mail from an application (Pre-v2 JDK, Redhat 6.0)

1999-07-22 Thread Juergen Sonnauer
You can use the JavaMail API, designed to support mail handling, filing and processing or use one of the many free available mail classes that abstract the details of sending email into simple, convenient method calls. (i.e. http://www.coolservlets.com) Another example is the sun.net.smtp.SmtpClie

Re: Help needed

1999-07-22 Thread Rudi Streif
Raj, Basically it says that your code doesn't make sense because the result of sum is invariant to the loop. I can't tell you why it fails under Blackdown JDK1.2 for Linux (it does on my machine too) but works under Sun JDK1.2 for Windows. If you changed your code to something like this sum

Re: Netscape 4.61 bus error

1999-07-22 Thread Brian Wisti
I had the same problem ( along with many others ) when I upgraded my Debian system to glibc 2.1. Several days, and 3 distro installs later, everything works fine. You know in the glibc HOW-TO's where they tell you to leave the libc alone unless you know what you're doing? They're absolutely ri

Re: draw images

1999-07-22 Thread Rick Sanders
> i want to draw a image in my applet and i used the code > below. but it is not loading. i think there is a small mistake. > > public class GetImage extends java.applet.Applet { > > Image img; > > public void init() { > > System.out.println(getCodeBase()); > t

Bad file descriptors?

1999-07-22 Thread Dustin Lang
Hi, Can someone tell me what this means: java.io.IOException: Bad file descriptor at java.io.FileInputStream.readBytes(Native Method) at java.io.FileInputStream.read(Compiled Code) ... This keeps happening while attempting to read an input file I need to use. Thanks, d

Help needed

1999-07-22 Thread Rajkishore Barik
Hi, Here is a piece of code, i am trying to execute in JDK1.2pre-release. But it does not seem to be running. The code : *** class test { public static void main(String Str[]) { int sum=0; i

draw images

1999-07-22 Thread R MUTHUSWAMY
hi, i want to draw a image in my applet and i used the code below. but it is not loading. i think there is a small mistake. thanks in advance MUTHU. import java.awt.*; import java.lang.*; import java.net.*; public class GetImage extends java.applet.Applet { Image img; p

Re: Evoke Unix call ">" from Java??

1999-07-22 Thread Nathan Meyers
The redirection operator ">" is interpreted by the shell, and your exec call doesn't go through a shell. Try this: String[] cmds = { "sh", "-c", "ppmtogif inputfile.ppm > outputfile.gif" }; Runtime.getRuntime().exec(cmds); This will run a shell that will interpret your command line. There ar

Re: Netscape 4.61 bus error

1999-07-22 Thread Jim Hazen
Nelson Minar wrote: > > >I just upgraded to RedHat 6.0 and Netscape 4.61 and when I invoke a Java > >applet, Netscape exits with a 'bus error' when trying to start Java. > > I don't have that happen, but pretty much any Java applet I run works > for about 5 seconds before the entire netscape pro

Evoke Unix call ">" from Java??

1999-07-22 Thread Yuet Sim Lee
I am trying to make my Java code to exec another Unix program. The command in Unix/Linux platform is: "ppmtogif inputfile.ppm > outputfile.gif" The command will create a new output file storing a gif formatted image. However, I tryed the following in my Java code: String command = "ppmt

Re: Netscape 4.61 bus error

1999-07-22 Thread Nelson Minar
>I just upgraded to RedHat 6.0 and Netscape 4.61 and when I invoke a Java >applet, Netscape exits with a 'bus error' when trying to start Java. I don't have that happen, but pretty much any Java applet I run works for about 5 seconds before the entire netscape process wedges, consuming 100% CPU a

RE: Sending mail from an application (Pre-v2 JDK, Redhat 6.0)

1999-07-22 Thread BAZLEY Sebastian
You could try using JavaMail, which is available from Java.sun.com (sorry don't have exact URL to hand, but search should find it). We have used it successfully to send plain text mails, as well as mails with attachments. -- Sebastian Bazley <[EMAIL PROTECTED]> The opinions expressed herein are

jdk1.1.7_v3 with RH 5.2

1999-07-22 Thread Luc Martin
Hi all, jre,jdk 117_v3 (glibc) -> core dump with RH5.2 with green,native threads , jit or nojit 117_v1a run fine . I check bad libraries (as suggest in install), ldconfig but nothing seems bad. Does v3 runs only with RH6.0 or glic2.1 ? Thanks a lot for any info Luc Martin [EMAIL PROTECTED

Re: Segmentation Fault and 1024-bit reselotion?

1999-07-22 Thread Michael Emmel
Nathan Meyers wrote: > Rob Clark wrote: > > > > For what it is worth, I see the same problem under xfree86 at 16bpp, > > so I am not sure that it is an Xvnc problem. > > > > What is involved in adding support for new color depths? I would like > > to drop support for older versions of JDK for an

Re: Sending mail from an application (Pre-v2 JDK, Redhat 6.0)

1999-07-22 Thread Nathan Meyers
[EMAIL PROTECTED] wrote: > > Hey all, > How would one go about sending e-mail from an application? I have > tried doing it via the Runtime.exec() method and running a long drawn out > 'mail' command, but the system executes it too fast and it ends up getting > garbled in the process. An

Re: Netscape 4.61 bus error

1999-07-22 Thread Rob Nugent
Bill, Many thanks - that fixed it ! Rob Bill & Martinah Smith wrote: > I ran into a similar problem with Netscape 4.5.x. At the RedHat site, they > reported that this was due to a bug in one of their RPMs. The fix was to add > the 75dpi font to the font path with: > > /usr/sbin/chkfontpath --a

RE: Netscape 4.61 bus error

1999-07-22 Thread Bill & Martinah Smith
I ran into a similar problem with Netscape 4.5.x. At the RedHat site, they reported that this was due to a bug in one of their RPMs. The fix was to add the 75dpi font to the font path with: /usr/sbin/chkfontpath --add /usr/X11R6/lib/X11/fonts/75dpi as root. For more info, the reference number o

Sending mail from an application (Pre-v2 JDK, Redhat 6.0)

1999-07-22 Thread agetchel
Hey all, How would one go about sending e-mail from an application? I have tried doing it via the Runtime.exec() method and running a long drawn out 'mail' command, but the system executes it too fast and it ends up getting garbled in the process. Any ideas? Thanks, Abe Abe L. Getchell

Re: Netscape 4.61 bus error

1999-07-22 Thread Todd Greanier
I had the same problem. I just grabbed a new rpm and installed all over and it was fine. Of course, if anyone knows why it happened in the first place I am sure Rob and I would be happy to hear it ;-)   Rob Nugent wrote: Hi, I just upgraded to RedHat 6.0 and Netscape 4.61 and when I invoke a Java

segmentation while using db2cc

1999-07-22 Thread Wendell Nichols
I've just got db2 udb up and running, (or almost running). I've been experimenting with table creation etc via db2cc and routinely get a segmentation fault in the jvava vm (using blackdown 117_v3). Has anyone else seen this? My system is an asus dual processor PII 400, 256m ram, running Redhat 6

Netscape 4.61 bus error

1999-07-22 Thread Rob Nugent
Hi, I just upgraded to RedHat 6.0 and Netscape 4.61 and when I invoke a Java applet, Netscape exits with a 'bus error' when trying to start Java. Has anyone seen this and if so, does anyone know what the solution is ? Thanks Rob ---

No Subject

1999-07-22 Thread Murray
am running a java method which includes a native method and am getting the following error messages, any ideas anyone? Cheers. Murray. SIGSEGV 11* segmentation violation stackbase=0xb9f0, stackpointer=0xb8f8 Full thread dump: "Finalizer thread" (TID:0x40655210, sys_threa