Blank page after submitting.

Hi all the Java Geeks can any one help me with this,<br>
<br>
I am getting a blank page after hitting the submit button. can you help me finding a solution for this in the JSP page or tell me where the error is.
<br>
<br>
<br>
<br>
<br>
<%@page contentType="text/html;charset=UTF-8" %><br>
<%@page import="oracle.portal.provider.v2.render.*" %><br>
<%@page import="oracle.portal.provider.v2.render.PortletRenderRequest" %><br>
<%@page import="oracle.portal.provider.v2.PortletDefinition" %><br>
<%@page import="oracle.portal.provider.v2.http.HttpCommonConstants" %><br>
<%@page import="java.sql.*, javax.sql.*, java.util.*, oracle.jdbc.*, oracle.jdbc.pool.*, oracle.jdbc.oci.*" %><br>
<br>
<%<br>
PortletRenderRequest portletRequest = (PortletRenderRequest)request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);<br>
RenderContext rc = portletRequest.getRenderContext();<br>
PortletDefinition pd = portletRequest.getPortletInstance().getPortletDefinition();<br>
%><br>
<br>
<%!
     String tree_descrip;<br>
     String tree_descrip_long;<br>
     String     curr_Scheme;<br>
     String     overl_gif;<br>
     String     curr_css_path;<br>
// page param<br>
     String     p_number_val= "1";<br>
     String     p_period_val= "Day";<br>
%><br>
<br>
<%<br>
     String     long_desc = "LONG";<br>
     String     Descrip = "SHORT";<br>
     String     treeDescrip= "%SUBMISS%OLDER%";<br>
     String     curr_treeCateg = "SUB";<br>
<br>
try<br>
{<br>
          curr_Scheme = getInfo.getSchem.getSchem();<br>
          overl_gif = "/images/smmj_page_obj/" curr_Scheme "images/prefreshdefault.gif";<br>
          curr_css_path = "/images/smmj_page_obj/" curr_Scheme "css/param_jsp.css";<br>
<br>
          tree_descrip = getInfo.getPortletTitle.getPortletTitle          ( Descrip , treeDescrip , curr_treeCateg);<br>
          tree_descrip_long = getInfo.getPortletTitle.getPortletTitle          ( long_desc , treeDescrip , curr_treeCateg);<br>
}<br>
catch(Exception e)<br>
{<br>
tree_descrip = "";<br>
tree_descrip_long = "";<br>
}<br>
%>
<br>
<%
// Get page param p_number_val
try
p_number_val = request.getParameterValues("p_number")[0];
catch(Exception e)
p_number_val = "1";
// Get page param p_period_val
try
p_period_val = request.getParameterValues("p_period")[0];
catch(Exception e)
p_period_val = "Day";
%>
<br>
<HTML>
<HEAD>
<link href="<%= curr_css_path %>" rel="stylesheet" type="text/css" media='' screen=''/>
<SCRIPT LANGUAGE="JavaScript1.1" SRC="/images/smmj_page_obj/Popup/overlib.js"></SCRIPT>
</HEAD>
<BODY>
<br>
<TABLE WIDTH=100% summary="<%= tree_descrip %>" border="0" cellspacing="0" cellpadding="3" BGCOLOR="#FFFFFF" >
<TR WIDTH="100%" height="6px"><td height="6px" COLSPAN="6" ></td></TR>
<TR WIDTH="100%" >
     <td ALIGN="LEFT" nowrap ></td>
     <td ALIGN="LEFT"      style="font-family:Verdana; font-size:8pt;font-weight:normal"      nowrap class="smmjPort2HeadJS"><span>  CYCLE NAME</span></td>
     <td ALIGN="CENTER"     style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS"><span>ID</span></td>
     <td ALIGN="CENTER"     style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS"><span>FIRM NAME</span></td>
     <td ALIGN="CENTER"     style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS"><span>BILLING PERIOD</span></td>
     <td ALIGN="RIGHT"      style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS0"><span>AGE</span></td>
</TR>
<%= getOlderSubs( p_number_val, p_period_val , "dev", portletRequest.getUser().getName(), "close_connect") %>
</table>
<TABLE><TR><TD>
     <%=p_number_val%>
     <br>
     <%=p_period_val%>
     <br>
     <%=portletRequest.getUser().getName()%>     
</TD></TR>
</TABLE>
</BODY>
</HTML>
<br>
<br>
<br>
<%!<br>
     private String getOlderSubs( String cnumb, String cperiod, String cstring, String userid, String cState) throws SQLException<br>
     {<br>
          CallableStatement cstmt;<br>
          ResultSet cursor;<br>
          int spacerLine = 1;<br>
          int retStrC = 1;<br>
          String retStr = "f";<br>
          String retStr2 = "f";<br>
          String retStr3 = "f";<br>
          String retStr4 = "f";<br>
          String ALLretStr = " ";<br>
          String TempretStr = " ";<br>
String userstring = getInfo.getPortlUser.getPortUsr("B", "1");<br>
String pwstring = getInfo.getPortlUser.getPortUsr("B", "2");<br>
String CNNstring = getInfo.getPortlUser.getPortUsr("B", "3");<br>
<br>
          String PROXY_user_name = "test$" + userid;<br>
          //String PROXY_user_name = "test1$roger" ;<br>
               String url= "jdbc:oracle:oci:@" + CNNstring;<br>
          Properties prop = new Properties();<br>
<br>
try {<br>
                    if ( userid.trim().toUpperCase().equals(getInfo.getCONN.chkPortal.trim().toUpperCase()) )<br>
                         {<br>
                              ALLretStr = "<tr><td>Default user: " + userid + "</td></tr>";
                         }<br>
<br>
               else<br>
               {<br>
               // Create an OracleOCIConnectionPool instance with default configuration<br>
               OracleOCIConnectionPool cpool = new OracleOCIConnectionPool(userstring, pwstring , url, null);<br>
                    Properties proxUserProp = new Properties();<br>
                    proxUserProp.setProperty(OracleOCIConnectionPool.PROXY_USER_NAME, PROXY_user_name);<br>
                    OracleConnection conn__OCI      = cpool.getProxyConnection<br>(OracleOCIConnectionPool.PROXYTYPE_USER_NAME, proxUserProp);<br>
                    cstmt = conn__OCI.prepareCall ("begin PORT_CURSOR.s_submission_wip( ?,?,?,?,? ); end;");<br>
                    cstmt.setString(2, cnumb);<br>
                    cstmt.setString(3, cperiod);<br>
<br>
                    cstmt.setInt(4, retStrC);<br>
                    cstmt.setString(5, retStr3);<br>
<br>
                    cstmt.registerOutParameter (4, Types.NUMERIC);<br>
                    cstmt.registerOutParameter (5, Types.VARCHAR);<br>
                    cstmt.registerOutParameter(1, OracleTypes.CURSOR);<br>
                    cstmt.execute();<br>
                    retStrC = cstmt.getInt (4);<br>
                    retStr3 = cstmt.getString (5);<br>
<br>
                    retStr = "<tr class=OraDataText><td>  " + retStrC + "</td></tr>";<br>
                    retStr = retStr + "<tr class=OraDataText><td>  " + retStr3 + "</td></tr>";<br>
<br>
if ( retStrC == -1 ) { ALLretStr = ALLretStr + retStr; }<br>
                              else<br>
                              {<br>
<br>                                   cursor = ((OracleCallableStatement)cstmt).getCursor(1);<br>
                    while (cursor.next ())<br>
{<br>
if (spacerLine >= 2)<br>
{<br>
ALLretStr = ALLretStr + "<tr><td ALIGN=LEFT nowrap ></td><td colspan=5 height=1 <div id=ssubLine> <div id=ssubLinet></div> </div> </td></tr>";<br>
          }<br>
ALLretStr = ALLretStr + "<tr WIDTH=100% class=smmjPort2Text <br>><td ALIGN=LEFT nowrap ></td><td ALIGN=LEFT>  " + cursor.getString(1) + "</td><td ALIGN=CENTER>" + cursor.getInt(2) + "</td><td ALIGN=CENTER>" + cursor.getString(3) + "</td><td ALIGN=CENTER>" + cursor.getString(4) + "</td><td ALIGN=RIGHT>" + cursor.getString(5) + "</td></tr>";<br>
spacerLine++;<br>
}<br>
}<br>
          if (cState != null )<br>
               { //return(retStr);<br>
if (conn__OCI != null)      conn__OCI.close();<br>
if (cpool != null)           cpool.close();<br>
          }}<br>
          return(TempretStr);<br>
     }<br>
     catch (SQLException e )<br>
               {<br>
String retErrStr = retStr + "<P> SQL Error: <PRE> " + e + " </PRE> </P> \n";<br>
return(retErrStr);<br>
               }<br>
          }<br>
%><br>
<br>
<br>
<br>
Vijay.

Vijay,
Do you see any error messages on your application server console or the error log files?
Thanks,
Rashmi

Similar Messages

  • Printer just started feeding a blank page after some, but not all printed documents

    Printer just started feeding a blank page after some, but not all printed documents

    Hi @cam21 ,
    I understand that you are having issues printing, after some documents you are getting blank pages. I would be happy to help you.
    I would do a hard reset to see if that will resolve the issue.
    Leave the printer on and unplug the power cable from the printer and wall outlet for 60 seconds.
    Then reconnect the power cable to the printer and wall outlet rather than a surge protector.
    This ensures the printer is receiving full power and may help this situation.
    What application are you printing from?
    It may be a setting in the application.
    Does this happen from all applications?
    Download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it. http://www.hp.com/go/tools>Using HP Diagnostic Tools for HP Printers in Windows.
    How is the printer connected? (USB/Ethernet/Wireless)
    What were the results when you ran the Print and Scan Doctor? (did it print or scan, any error messages)
    If there is anything else I can help you with, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Blank page after posting a reply?

    I'm getting a blank page after I post a reply. I have to go back to my bookmark for the whole forum manually. Is this a feature or a bug? (Im using Safari)

    Bold, Italics, Underscore, Teletype, Color, etc...
    Patrick

  • Urgent - Blank Page after login

    Hello All,
    My Portal was running fine in the morning without any problems. Now i've tried to login to the Portal and supplied the User/Password on the Login Screen i can't see anything (a blank page) after that. I have checked the defaultTrace.trc also and found the following message:-
    "Error in service call of Portal Component
    Component:com.sap.portal.navigation.portallauncher.default
    Component class: com.sapportals.portal.navigation.PortalLauncher"
    If i make a direct call to any of the component directly that's coming up.
    Regards
    Vaib

    hi
    can you redeploy the par file  from nwds after getting it from usr directory and straight away configure portal from the window preferences and deploy it as export par option or you can use portal launcher and navigate to security zone under permissions of system configuration  apply owner for that user  for that component.hope this helps you
    with regards
    subrato kundu

  • LMS 4.1 blank page after login

    Hi!
    I recently installed LMS 4.1 on a freshly installed W2k8R2 server, and untill last week I had no problems logging on.
    For some reason, I'm now getting a blank page after entering my credentials. The URL is like https://lms02/cwportal/c/portal/login
    I already rebooted the system, but that made no difference. All Cisco Works services seem to be started, as is Apache/2.2.17.
    What am I missing here?
    Thanks in advance!

    When you change the url to e.g. https://lms02/cwportal/group/lms/lms-monitoring does it work then?
    if so you may want to try to clear the cache/history of the browser.
    Cheers,
    Michel

  • Blank page after adding portlet from sample provider

    Hi All,
    Homepage not appearing after Login, tried adding Sample portlet to HomePage!
    I managed to configure and register the JPDK's Sample portlet provider as per the installation instructions.After configuration i tried the URL "http://yourserver/servlets/sample" and i got "Congratulations! You have successfully reached your Provider's Test Page"
    Then tried to add a sample portlet (Hellow Worls portlet) to one of the regions of the my homepage using the Navigator.
    Now, I'm not able to navigate to the home page after logging in from the portal Welcome page.
    I'm just seeing a blank page after login.
    This is the error i got in jserv.log file
    page/Unexpected exception in servlet
    java.lang.Exception: Invalid meta-data found in ProviderData process 4
         at oracle.webdb.page.ProviderData.parse(ProviderData.java, Compiled Code)
         at java.lang.Exception.<init>(Exception.java, Compiled Code)
         at oracle.webdb.page.ProviderData.parse(ProviderData.java, Compiled Code)
         at oracle.webdb.page.DataProcessor308.generatePage(DataProcessor308.java, Compiled Code)
         at oracle.webdb.page.DataProcessor308.process(DataProcessor308.java:2658)
         at oracle.webdb.page.PageBuilder.process(PageBuilder.java:684)
         at oracle.webdb.page.ParallelServlet.doGet(ParallelServlet.java:89)
    How can view the sample portlets from my home page?
    Any help would be greatly appreciated.
    Sapna

    Yes. I selected yes to Require Proxy .
    But no use. Where i'm doing wrong.
    Under Proxy settings in Global seeting i've given the following info.
    HTTP Server : alpha
    HTTP Server :80
    No Proxy Servers for Domains beginning with ALPHA
    URL Connection Time-Out (seconds) :0
    and in the provider edit page i set Require Proxy to 'YES'
    Thanks in advance
    Sapna

  • HP 6510 printing only blank pages after changing print cartridges

    Hi,
    My HP 6510 is printing only blank pages after I installed new print ink cartridges. I tried cleaning the print heads, aligning the printer... which did result in some pages printing with a little color (but it seemed "off" to me). That said, when I try to print a regular document from my PC it only prints a blank page. 
    I can't seem to figure this one out on my own - please help!
    Thanks!
    Chloe

    The document here may help resolve black not printing on your Photosmart 6510.  Be sure the cartridges are vented as shown in solution two.
    Is your printer still in warranty? You can check with HP's warranty tool here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • IE 11 links open to Blank page after last Window update

    IE 11 links open to Blank page after last Window update, I tried every trouble shooting and suggestions I could find in all forums but to no avail.
    Operating system Win 8.
    will try any suggestions and report back.

    Hi,
    Not sure whether you have tried these methods, if yes, keep trying the others.
    1.Run IE with no add-ons firstly.
    Click Start -> All Programs -> Accessories -> System Tools -> Internet Explorer (with no add-ons).
    If works, please follow the steps to narrow down which add-on cause the issue.
    Start IE>Press Alt to show the menu bar>On the Tools menu, click manage add-ons>under show, click All add-ons>disable half add-ons one time for quick narrow down>restart IE.
    2.Try resetting IE.
    Start IE>Press Alt to show the menu bar>On the Tools menu, click Internet options>Advance>Reset>restart IE.
    3. This is caused due to some registry problems occurred. To resolve this issue, follow the below steps:
    Click Start, click All Programs, click Accessories, right-click Command Prompt, and then click Run as administrator.
    Type regsvr32 actxprxy.dll in the Open box, and then click OK.
    If the command was successfully executed, you will receive the message ‘DllRegisterServer in actxprxy.dll succeeded’ window.
    Restart the Internet Explorer
    4.if still not work, run system restore.
    Start>type system restore in the search box>click system restore>follow the steps in the wizard to choose a restore point.
    For more information, please see:
    Nothing happens when you click a link in Internet Explorer
    http://support.microsoft.com/kb/175775/en-us#method4
    Hope this helps,
    Ada Liu
    TechNet Community Support

  • Struts goes to a blank page after signin

    I have an application similar to Toystore but I get a blank page after signin. It should go to a defined home page. Right now the only way I fixed it is define a success action and forward there instead of the home page.
    This is toystore code but mine is similar. I hope someone has seen this problem.
    ACTION CLASS:
    public class VerifySignInAction extends Action {
    public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) {
    String target = request.getParameter("target");
    //home defined in struts-config.xml as:<action path="/home" forward="/WEB-INF/jsp/welcome.jsp"/>
    if (target == null) target = "home";
    * We shouldn't get here unless the LoginForm bean validation succeeds
    LoginForm loginForm = (LoginForm)form;
    toystore.controller.AppUserInfo.signIn(request,loginForm.getUsername());
    //return mapping.findForward(target);//target is home but it goes to a blank page instead.
    //Using success works but should not be needed
    return mapping.findForward("success");
    STRUTS-CONFIG.XML:
    <action path="/verifysignin" type="toystore.controller.strutsactions.VerifySignInAction" input="/signin.do" validate="true" name="loginform"
    scope="request">
    <set-property property="application" value="ToyStore"/>
    <set-property property="releasemode" value="Stateful"/>
    <forward name="success" path="/WEB-INF/jsp/welcome.jsp"/><!--//Using this is the only way to forward but it should not be needed.-->
    </action>

    I got the same when using UIX for signin page

  • How to print blank page after group change

    Hi,
    I would like to print my report like this:
    (No1)
    Page1
    Page2
    Blank Page
    (No2)
    Page1
    Page2
    Blank Page
    No3
    How can I make this?
    Thanks
    Gregor
    gt

    Insert an empty frame with a Page Break Before and Page Break After, or use these properties to see if you can get the result you want in your current layout model.

  • Double sided printing, adding blank page after two different groups

    Post Author: adepper
    CA Forum: General
    I have created a report that is structured as such:
    Group 1 - Based on formula, groups by type
    Group 2 - Based on formula, groups by use
    Group 3 - use (pulled directly from Database)
    Group 4 - ID
    I have the report printing an extra page after group 3.  I used this formula in the Section Expert - New Page After
    remainder(pagenumber,2)=0
    I also use that formula to reset the page number
    What I would like to do is print a second blank page if group 2 does not start on the top of the page, meaning I do not want either group 3 or group 2 to start on the back of a page, so that this report can be placed in a binder, with dividers.
    I have group 3 giving me a blank page with no issues, it is just group 2.
    Any help and/or suggestions would be appreciated.  If I did not give enough details, I am sorry.
    Thanks!

    Post Author: adepper
    CA Forum: General
    After a lot of blood, sweat and tears, not to mention a lot of curse words directed at the computer, I was able to get this to work.  Now I just have to do it for three groupings instead of two (deliver the impossible to your bosses, and they turn around and move the brass ring right out of reach again!)
    In case anyone is interested in how I was able to manage this (I found many sites where people asked this question, but not one complete answer), this is what I did:
    In the footer section:
    Group 4 - ID (database field)
    Group 3 - PrimeUse (database field)
        3a - Contains data
        3b - Contains data
        3c - New Page After, Keep Together, and Reset Page Number After are all checked.  In the condition for Reset Page Number After I also have this formula:
        remainder(pagenumber,2)=0
        3d - New Page After, Keep Together, and Reset Page Number After are all checked.  In the condition for New Page After I have this formula:
        remainder(pagenumber,2)=0
    Group 2 - Suppressed
    Group 1 - Grouped by Store Type -
        1a - Suppressed, New Page After and Keep Together are all checked.
        1b - New Page After and Keep Together are checked.  In the condition for New Page After I have to following formula:
        remainder(totalpagecount,2)=1
    If anyone sees any errors, or if you think you can get it so that I get another page blank, after Group 1, if the Group starts on an even numbered page, I would appreciate the help.
    Thanks!

  • Firefox 17 on Windows 7 prints blank pages after printing selection

    I need to be able to highlight text on a webpage and print only that text using the print selection inside the file/print tab. However, instead, I am getting only that highlighted text AND then blank pages (with headers and footers) keep printing (how many pages that print depends on the actual size of the webpage).
    I have Windows 7, 32bit and Firefox 17. I updated Firefox this morning and restarted but the problem still exists. I did not have this problem when I had Windows XP.
    The print selection works properly in IE9.

    Firefox's Print Selection feature has always left much to be desired...
    What I get is blank pages ''before'' the selection but not after. You get blank pages for the entire document? That's especially unhelpful.
    I am aware of two ''workarounds''. Each isolates the selection by itself so you can print it normally, i.e., without choosing Print Selection.
    '''[https://addons.mozilla.org/en-US/firefox/addon/nuke-anything-enhanced/ Nuke Anything Enhanced]'''
    After installing this add-on, when you have a selection and right-click it, you can choose "Remove everything else" to isolate the text for printing. Note that you need to reload the page to see the rest of the content again.
    '''Bookmarklet'''
    Before learning about the above, I wrote a small script to isolate the selection for printing. I wouldn't use it if you are filling in a form, making a purchase, etc., since the script duplicates part of the page and this may break the form. On the other hand, at least there is some level of undo without reloading the page.
    If you want to try it, here are the steps:
    (1) Select and copy the following line of script (it's all one long line):
    javascript:var sel=window.getSelection(); if(!sel.isCollapsed){var rng=sel.getRangeAt(0); if(!rng.collapsed){var docfrag=rng.cloneContents(); if(!document.getElementById("divHideMe")){var rng2=document.createRange(); rng2.selectNodeContents(document.body); var myContainer=document.createElement("DIV"); rng2.surroundContents(myContainer); myContainer.setAttribute("id","divHideMe"); rng2.detach();} myContainer.style.display="none"; if(document.getElementById("printFrag")){var myFrag=document.getElementById("printFrag"); while(myFrag.firstChild) {myFrag.removeChild(myFrag.firstChild);} myFrag.style.display="block";}else{var myFrag=document.createElement("DIV"); myFrag.setAttribute("id","printFrag"); document.body.appendChild(myFrag);} myFrag.appendChild(docfrag); rng.detach(); var myP=document.createElement("P"); myFrag.appendChild(myP); myP.setAttribute("id","killBtn"); var myBtn=document.createElement("INPUT"); myP.appendChild(myBtn); myBtn.setAttribute("type","button"); myBtn.setAttribute("value","Return to Page"); myBtn.setAttribute("onclick","document.getElementById('divHideMe').style.display='block'; document.getElementById('printFrag').style.display='none';"); myStyle=document.createElement("STYLE"); myFrag.appendChild(myStyle); myStyle.setAttribute("type","text/css"); myStyle.setAttribute("media","print"); myStyle.innerHTML="#killBtn{display:none}";}} void 0;
    (2) Right-click the Bookmarks Toolbar and choose New Bookmark. (If you do not ordinarily display the Bookmarks Toolbar, you can add it to the menu instead. Whatever will be convenient.)
    (3) Click in Location and paste the script.
    (4) Click in Name and name it whatever you like (I call it Crop4Print) and then click Add.
    Now after selecting text, click the bookmarklet button to hide the rest of the page.

  • HP 3510 All In One only printing blank pages after cartridge replacement

    Recently replaced my blank ink cartridge after supply level showed low, and printed output looked faded.
    Using genuine HP product - check
    Cartridge supply level good - check
    Powered on and off twice - check
    Installed, removed, re-installed cartidges - check
    Good paper - check
    Alignment prints blank page - does not print partial or low quality, just produces a blank page.
    Printing from my computer, a word document, also produces a blank page - not parital - blank.
    Was printing before the HP cartridge change.
    Did I buy a bad HP cartridge?
    Any help would be appreciated.

    Forgot to mention that I am not getting an error message either, except when I go through the motions of scanning the (blank) alignment page.  That error is related to the fact that it is blank though.
    Thanks for any assistance.

  • Blank page after logged into portal system

    Hi,
    After logged into our portal system, we are getting blank page with white space. This is not quite common for all users, few users able to view screens at portal systems.
    Please help me to resolve this issue.
    Thanks in advance
    Regards
    Srinias

    Srinivas,
    Looks like the users not seeing anything have roles which does not have any content in them. Take any of these users and look for assigned roles in 'User Administration'. If there is no content assigned to these roles then assign some relevant content, else make these users part of the group that other users seeing content are part of.
    Hope this helps.
    Vishwas.

  • Blank page after installation :1158/em

    Hi,
    I am trying to install the O-DB 10.2 on WINDOWS SERVER 2003.
    I am using the documentation on: file://///192.168.11.55/e$/DB_10.2_extracted/B19306_01/install.102/b14316/reqs.htm
    I have installed the loopback adapter because it was giving an error when installing the DB for the first time.
    Since the computer does not have a domain I gave the IP-address found with command: ipconfig; section "ethernet adapter local area connection"
    Then I have installed the DB and when I want to open the browser URL, given by the install manager: http://hostname.domain:1158/em
    it just shows a blank page.
    the page ~:5560/isqlplus opens (although it seems I cannot login. But when I open a "command prompt" window and enter "sqlplus" and then enter the values it does connect)
    So I have stopped after chapter 3.4 of the documentation, because I have got the blank page.
    Can anybody help please? or is that normal?
    Regards,
    Denise

    rpearson wrote:
    I can't give you a screen shot because I uninstalled again. But it's just a shortcut in Start > Oracle > Database Control. Did you look at the properties of that shortcut to see what it is and does? It's trying to launch the old java console. Mine doesn' work either, but then I've never really even looked at it until just now. After all, dbcontrol is web based .. accessed via a browser, just like this site, just like google, .....
    Another interesting thing is if I do a basic install, then oracle uses port 1158 for dbconsole and installs an agent. When I did an advanced install, port 5500 was used, and I didn't see any agent.Probably trying to deal with vestiges of things left over from the first install, and different choices you made (or didn't make) on the advanced vs. the basic.

Maybe you are looking for