Greetings, i'm a beginner in Servlet/JSP, i'm trying to execute a simple JSP page on the server where is hosted my site.
The server use Resin server for J2EE application.
When i try to execute this page :
<%@ page contentType="text/html"%>
<html>
<head><title>JSP Page</title></head>
<body>
<%= "Java Server Page"%>
</body>
</html>
i got a blank page only.
When i browse the html code, i found the same code i wrote; the server seems doesn't recognize the JSP page.
The server use Resin server for J2EE application.
When i try to execute this page :
<%@ page contentType="text/html"%>
<html>
<head><title>JSP Page</title></head>
<body>
<%= "Java Server Page"%>
</body>
</html>
i got a blank page only.
When i browse the html code, i found the same code i wrote; the server seems doesn't recognize the JSP page.