<HTML> <TITLE>Welcome to Crontab Editor</TITLE> <BODY> <%@ page language="java" %> <% out.println("Hello World"); %> <jsp:useBean id="listOfCrontabBean" scope="session" class="org.jcrontab.CrontabEntryBean" /> </BODY> </HTML>
should be <HTML> <TITLE>Welcome to Crontab Editor</TITLE> <BODY> <%@ page language="java" %> <% out.println("Hello World"); %> <jsp:useBean id="listOfCrontabBean" scope="session" class="org.jcrontab.data.CrontabEntryBean" /> </BODY> </HTML>
karl
Hi,
Thanks for you correction.
The problem with jsp is that i dont use it right now, cause i prefered to write a Servlet to do the job of editing CrontabBeans.
But i would like to do a jsp as an example. if you are interested in helping you are welcome.
The initial design was to do a Servlet as controller (remove/store as events) and a jsp as the view (generating xml).
If you see smth that can be improved plz send your suggestions and ideas.
Thanks.
Log in to post a comment.
<HTML>
<TITLE>Welcome to Crontab Editor</TITLE>
<BODY>
<%@ page language="java" %>
<% out.println("Hello World"); %>
<jsp:useBean id="listOfCrontabBean" scope="session" class="org.jcrontab.CrontabEntryBean" />
</BODY>
</HTML>
should be
<HTML>
<TITLE>Welcome to Crontab Editor</TITLE>
<BODY>
<%@ page language="java" %>
<% out.println("Hello World"); %>
<jsp:useBean id="listOfCrontabBean" scope="session" class="org.jcrontab.data.CrontabEntryBean" />
</BODY>
</HTML>
karl
Hi,
Thanks for you correction.
The problem with jsp is that i dont use it right now, cause i prefered to write a Servlet to do the job of editing CrontabBeans.
But i would like to do a jsp as an example. if you are interested in helping you are welcome.
The initial design was to do a Servlet as controller (remove/store as events) and a jsp as the view (generating xml).
If you see smth that can be improved plz send your suggestions and ideas.
Thanks.