Hello

I have this servlet, which actually doesn't do much except write html,
so for testing purpose I decided to change it to JSP. 
I want to use some methods defined in our homegrown packages
and imported the package with: <%@ page import="com.mypacke.util.*" %>
I then wrote the following:
.
.
<%
Cleo c = new Cleo();
out.println("Howdy from Cleo: " + c.getDate());
%>
.
.
the result was, that my page could not be displayed.
Removing the reference: c.getDate() helped
but I cannot find any hints ind the logfiles as to WHY it doesn't work.


med venlig hilsen / best regards
Henrik Skafsgaard Larsen




Reply via email to