Despite my total lack of Java experience, a project I’m working on requires me to write JSP pages. I have managed to get the pages to work on my own computer, on which I installed a freeware JSP server called “Blazix.”
However, when I move the pages to my server, which runs Tomcat as its JSP server, (and is conveniently located 3000 miles away) and try to run them, I get an error that says the pages won’t compile.
The first line of the exception report, which I believe is the important issue here, is:
My questions, for someone familiar with Tomcat and Java in general are:
What files do I need to put on the server to provide it with the sqlConnection class?
and
Where do I put them?
Please bear in mind that my Java/Tomcat skills are pretty thin. If you dont’ think I’m even asking the right question, feel free to let me know.
Thanks.