95-702 Organizational Communications and Distributed Object Technologies Getting Started =============== Installation Lab ================ This lab is not to be turned in but needs to be completed as soon as possible. Contact your instructor or the TA if you are having difficulties. Part 1 Download and test. ========================= 0. Download and install Netbeans 6.5.1 from http://www.netbeans.org/downloads/index.html. Choose the largest bundle. 1. Publish a simple Java Server Page (JSP). Create a Netbeans project called SuperSimpleJSPProject. Select the category as Java Web and the Project as Web Application. Enter this document in the editor. Call it index.jsp. Test it in a browser.
<% java.util.Date d = new java.util.Date(); %> Today is <%= d.toString() %> Part 2 Test a servlet and an index.jsp page. ============================================ 0. Provide the HTML in a JSP page. In a new project, enter this document as index.jsp: