> in order to send the email. I have the download from Sun, but > they refer to > a CLASSPATH and I do not know where to set this. I also tried > to add the jar > file to VisualCafe, and it said the jar contained no beans. Can anyone > assist? I've never used components or beans... just the built > in classes > java.io javax.swing... Classpath errors are a common source of problems. It looks like you are on some type of Win32 platform, so if NT you can set the classpath in Control Panel -> System -> Environment. But maybe you have different applications that use different classpaths on that machine, then you can set it when you run the program as part of the command line with the -classpath switch: java -classpath c:\myclasspath;c:\my\other\classpath myJavaApp Type java -help for info on command line switches. You can also run your program from a batch file (or shell script) and set different classpaths to separate environment variables, then build a single classpath environment variable from that. Also, you say Cafe said the jar file is empty. Open it with WinZip and take a look, always possible it got corrupted. =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
