%@ page import="common.Hello, beans.HelloCorbaWrapperBean" %>
The CallCORBA JSP
<%
String surl = request.getParameter("surl");
String inJServer = System.getProperty("oracle.jserver.version");
if ((surl != null) || (inJServer != null)) {
%>
Hello, I'm a CORBA object in Oracle 9i.
<%= helloBean.doCallCORBA(surl, inJServer) %>
<% }
if (inJServer == null)
{ // not running in JServer, ask for a CORBA service URL
%>
Enter a CORBA service URL:
<% } %>