weird org.apache.struts.action does not exist

2003-03-11 Thread Tom Cat
Hi, I am new to struts trying to learn something from Ted Husted's book Struts in Action. I installed Tomcat and IBM JDK 1.4., then downloaded Ted's example application register-complete.war (which is example app on struts site too). It works fine but when I try to compile something using

Re: weird org.apache.struts.action does not exist

2003-03-11 Thread Guido
Try using : instead of ; in your CLASSPATH if you are developing under Linux/UNIX. If this doesn't work, try putting the classpath within your javac statment: javac -classpath classpath RegisterForm.java HTH Guido. Tom Cat wrote: Hi, I am new to struts trying to learn something from Ted

Re: weird org.apache.struts.action does not exist

2003-03-11 Thread Mark Lowe
i'd read this http://jakarta.apache.org/tomcat/tomcat-4.0-doc/appdev/index.html take the example ant project and use it as a starting point for any java propjects you are doing.. This will save you all the messing around with classpaths etc (you still have to set them in ant's build.xml