Using JDeveloper 10g in XP Pro

This document is a part of the Bare-Bone-Library

  • In this document we would create a simple jsp page using JDeveloper 10g; and work out some options like configuring "Application Server", "Connection to a database and it's contents".
  • For the recent version of JDeveloper  Software, please visit http://www.oracle.com/technology/products/jdev/index.html .

Intranet Uses:  http://manas5:8988/simple_jsp-Project-context-root/simple.jsp

Step 1: My physical folder in XP-Pro (windows classic folder view)

The folder jdev will hold all  my web-applications

Step:2 Below is the overview of JDeveloper workspace or table or bench as you feel like calling, but don't fail to note that you don't have to break your head to load and tune a server. The local host accepts take you computer name as an intranet domain; and this domain is viewable across the internet.

 

Code

<%@ page contentType="text/html;charset=windows-1252"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Simple JSP</title>
</head>
<body>
<SCRIPT LANGUAGE="javascript">
function LinkUp()
{
var number = document.DropDown.DDlinks.selectedIndex;
location.href = document.DropDown.DDlinks.options[number].value;
}
</SCRIPT>
The Time is
<%= new java.util.Date() %><br>
<a href="http://frontiersoft.net">FrontierSoft</a><br>
<FONT color="#003399"><STRONG>This is a simple jsp created with Oracle JDeveloper IDE
<form NAME="DropDown">
<select NAME="DDlinks" onClick="LinkUp(this.form)" multiple >
<option value="Value 1"><a href="http://frontiersoft.net">FrontierSoft</a></option>
<option value="Value 2"><a href="http://oracle.com">Oracle</a></option>
</select>
</form></STRONG></FONT>
</body>
</html>
 

Runtime view : The default local host (http://198.168.2.6:8988

Viewing the page with computer's name:

Like to use another server !

Step: 3 Some extended information of the Navigator Pane:

Applications-Navigator pane

The application server allows you to configure a server

and so on

Connecting to Data-Base 10g

Once you complete the above you will notice that DBConnection1 is appeared under DataBase tree menu.