Re: Compilation Problem. Help!

2003-10-18 Thread Max Cooper
2. Putting struts.jar in that location seems like a very bad idea to me. Whenever possible, put the jars for your application in your application's WEB-INF/lib dir. You can almost always do this, and it makes your app more of a self-contained unit. Having dependencies on non-standard libraries

RE: Compilation Problem. Help!

2003-10-17 Thread Carey Nation
I'm not completely sure here, but I think putting stuff in ext just makes them visible to the jre, not javac. Put -cp yourjar.jar on the javac line (or if you're using Ant, add them to the classpath reference), and see if it helps... I have all the required jar files in the MyApp/WEB-INF/lib