Hi to all,
my name's Diego and I have developed a website using JSP that connect to a MySQL server. I developed it locally using NetBeans and Tomcat. It works perfectly. I uploaded the website to a server that use also tomcat as webserver but I have problems. I used JSTL libraries. If i write in a JSP page:
<c:set var="prova" value="prova" />
<c:out value="${prova}" />
Locally: it prints "prova"
On the server: it prints "${prova}"
On the server, if instead of <c:out value="${prova}" /> I write <% out.println(prova); %> it prints "prova"
I copied the jstls jar file in WEB-INF/lib and also to tomcat/common/lib so I think that Tomcat now should support JSTL. If not, it should out an error when I try to set a variable or to print it.
I don't know what to do and I don't know what to search on google to find if someone else had the same problem. Could anyone to help me? Thank you very much

