RE: webMathematica\Tomcat

2006-07-05 Thread Peter Crowther
From: Frank Murray [mailto:[EMAIL PROTECTED] I get the error msg -bash: setenv: command not found Ah, the good old Bourne / csh gotcha - well, one of many :-). export JAVA_HOME=... Or JAVA_HOME=... export JAVA_HOME - Peter

Re: webMathematica\Tomcat

2006-07-05 Thread Avi Deitcher
I couldn't remember if bash supports export JAVA_HOME= or not. I remember sh does not and ksh does, but bash... Peter Crowther wrote: From: Frank Murray [mailto:[EMAIL PROTECTED] I get the error msg -bash: setenv: command not found Ah, the good old Bourne / csh gotcha - well, one of

Re: webMathematica\Tomcat

2006-07-05 Thread Frank Murray
Thank you. fjm On Jul 4, 2006, at 4:45 PM, Avi Deitcher wrote: Frank, See http://www.mcsr.olemiss.edu/unixhelp/environment/env3d.html It has been too many years since I did bash, but if I remember correctly, basically, just to JAVA_HOME=/System/etc; export JAVA_HOME However, why not

Re: webMathematica\Tomcat

2006-07-05 Thread Frank Murray
Thank you. fjm On Jul 5, 2006, at 12:33 PM, Peter Crowther wrote: From: Frank Murray [mailto:[EMAIL PROTECTED] I get the error msg -bash: setenv: command not found Ah, the good old Bourne / csh gotcha - well, one of many :-). export JAVA_HOME=... Or JAVA_HOME=... export JAVA_HOME

webMathematica\Tomcat

2006-07-04 Thread Frank Murray
Hello, This is a newbie question. I am trying to set up a servlet container using Apache Tomcat. One of the primary steps is setting up the JAVA_HOME environment variable. Unfortunately, when I use: setenv JAVA_HOME /System/Library/Frameworks/JavaVM.Framework/Home I get the error msg

Re: webMathematica\Tomcat

2006-07-04 Thread Avi Deitcher
Frank, See http://www.mcsr.olemiss.edu/unixhelp/environment/env3d.html It has been too many years since I did bash, but if I remember correctly, basically, just to JAVA_HOME=/System/etc; export JAVA_HOME However, why not wrap it up in a sh or ksh script to make your life easier? Frank