APEX Oracle 11g HTTP Server - Cannot get SSL working

I have installed APEX on Oracle 11g with the Oracle HTTP Server on MS Windows server.
Data base up and running, APEX up an running.
All works as expected on port 7777
When I try 4443 I get error message re self signed certificate by Oracle, but if I click through error message I get an https connection.
I want to replace default cert with a locally signed cert, and get SSL working on 4443, then switch to port 443.
I have used the Oracle Wallet manager, generated a CSR, had this signed by my corproate CA, and installed the corporate CA cert and the newly signed server cert into the wallet (with Auto Login Set) and saved it in:
D:\orahttp\Oracle_WT1\instances\apex\config\OHS\ohs1\keystores\infosec2wallet
This creates two files: ewallet.p12 and cwallet.sso
I then manually add the group/users "SYSTEM" and "Administrators" to these two files to match the security tab on the default wallet.
I T then go to the ssl.conf file located at:
D:\orahttp\Oracle_WT\instances\apex\config\OHS\ohs1\ssl.conf
and changed the entry:
#SSLWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/default"
SSLWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/infosec2wallet"
I then stop and start the Oracle HTTP Server - ohs1 from the start menu.
Then I try to connect from my desk top machine using the following URL:
https://us-pghinfosec2.ariba.com:4443/pls/apex/f?p=101:1:
I get the clasic MS IE Message:
==========
Internet Explorer cannot display the webpage
Most likely causes:
You are not connected to the Internet.
The website is encountering problems.
There might be a typing error in the address.
What you can try:
Diagnose Connection Problems
More information
This problem can be caused by a variety of issues, including:
Internet connectivity has been lost.
The website is temporarily unavailable.
The Domain Name Server (DNS) is not reachable.
The Domain Name Server (DNS) does not have a listing for the website's domain.
If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section.
For offline users
You can still view subscribed feeds and some recently viewed webpages.
To view subscribed feeds
Click the Favorites Center button , click Feeds, and then click the feed you want to view.
To view recently visited webpages (might not work on all pages)
Click Tools , and then click Work Offline.
Click the Favorites Center button , click History, and then click the page you want to view.
==========
I am at a loss as to what to do. It acts like Oracle HTTP can not open my wallet.
I suspect it needs the password to the wallet but I cannot find any place to specify the password, and Auto Login should have addressed that issue.
Any insights welcome.
Thanks - Elton Hay

Hello Lakshmi,
>
I got your point but in our case HTTP Server and Oracle Database (APEX) running on different machines.
Oracle HTTP Server running on a Windows 2003 server and Oracle Database running on Sun Solaris machine.
So do i need to change Oracle 10g HTTP Server? do i need to install Oracle 11g HTTP SErver?
Please let me know if my question is not clear.
>
<ul><li>
I got your point but in our case HTTP Server and Oracle Database (APEX) running on different machines.Did I missed something?
You should have mentioned this additional information in the original question itself.
</li>
<li>Oracle HTTP Server running on a Windows 2003 server and Oracle Database running on Sun Solaris machine.As long as [url http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/otn_install.htm#BHAFJJDA]dads.conf is configured correctly there should not be a problem with this.
From Original question:
We are having Oracle APEX 3.1 version on Oracle 10g Database and Oracle 10g HTTP Server as web server in our organization.How did this setup of APEX worked?(i.e. on different machines)
If you still have doubt about this you can do the setup and find out before upgrading.
</li>
<li>So do i need to change Oracle 10g HTTP Server? do i need to install Oracle 11g HTTP SErver?This question is answered in the above post. As long as you fulfill the [url http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/pre_require.htm#CFHIIJBE]HTTP Server Requirements for APEX 4.2 (Also we are discussing this long about only Oracle 10g HTTP Server but which version?)
</li></ul>
Hope now I am more clear!
Regards,
Kiran

Similar Messages

  • What is the URL for administration of a standalone Oracle 11g HTTP server (OHS + Web Cache)

    Hi,
    I have a running Oracle 11g HTTP server (OHS + Web Cache). A stand-alone installation.
    What is the URL to access the administration page of the OHS server?
    Thanks by advance.

    Try this:
    http://hostname:7777/demos.htm

  • Oracle and http server to install apex

    Dears,
    My old configuration was a solarisx86 (installation : 10202_database_solx86 ,10202_companion_solx86).
    I would like to install a new version of apex on a node of a cluster HP UX.
    Could someone tell me what and where can i find an oracle 10 compatible apex and and http server for this?
    thanks in advance.
    Celio

    [10g Release 2 downloads on OTN|http://www.oracle.com/technology/software/products/database/index.html]. (Can't be more specific than this because you haven't identified your flavour of HP-UX.) Oracle HTTP Server is on the Companion CD.

  • Porting from Oracle 10g AS to Oracle 11g Weblogic server

    Hi,
    I am trying to port J2EE applicatin from Oracle 10g AS to Oracle 11g Weblogic Server. I have jsp files which contains sql code embedded to fetch data from the DB. The components used in this application are Java, JSP, Servlets and Stateless session beans.
    I have a commonjar which is used to create DB Connection manager and other common stuff which is present inside web-inf/lib. My application is packaged as an ear and which contains the war and different ejb-project.jar files. When the Stateless bean is trying to call the ConnectionManager class, which is present inside the commonjar inside web-inf/lib, I get InvocationTargetException. When I debugged in Eclipse, I see that that inside ejb the reference ConnectionManager, the variable cannot be resolved. So I guess at runtime, ejb is not able to locate ConnectionManager Class.
    I tried to copy this jar to APP-INF/lib and the same jar is present inside web-inf/lib as well. In that case what happens is the jsp fails with the exception ConnectionManager cannot be resolved.
    How can I make the ejb work by keeping the commonjar inside web-inf/lib alone.
    Any help or suggestions?
    Thanks
    Raj

    The classloader hierarchy in WLS looks like this (arrows denote inheritance direction):
    Java bootstrap classloader <- Java CLASSPATH classloader <- WLS $DOMAIN_HOME/lib classloader <- Application (e.g., EAR) classloader <- web app classloader <- single JSP classloader
    The Connection Manager is loaded by the web app classloader while the EJBs are loaded by the application classloader so the EJBs have no visibility to the classes loaded by the child (web app) classloader.
    The simplest fix might be to move the Connection Manager jar file to the EAR file's APP-INF/lib directory.
    One word of caution though, you need to be using WebLogic Server's Data Sources and JDBC connection pooling to make sure that you correct transactional behavior if the application is doing any sort of JTA transaction (regardless of whether the JTA transactions are using XA or not...).
    Hope this helps,
    Robert

  • Error starting HTTP-Server: Cannot assign requested address: JVM_Bind

    Hi.
    Anyone know how to configure the Oracle HTTP server within Jdeveloper9i to work?
    When I try run a JSP page, I get the following error:
    C:\Oracle9iDS\jdk\bin\javaw.exe -ojvm -classpath C:\Oracle9iDS\j2ee\home\oc4j.jar com.evermind.server.OC4JServer -config C:\Oracle9iDS\jdev\system\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8888, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Error starting HTTP-Server: Cannot assign requested address: JVM_Bind
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    Please contact me at [email protected]
    cheers paul

    A JVM_Bind error means that the port is already in use. This is an unusual error message to get because JDev scans the ports ahead of time to make sure they are free before launching the server.
    Check if you have any processes running that might be holding port 8888. There might be a previous instance of the OC4J server running that hasn't released port 8888 yet. On Windows, at a command prompt, you can use "netstat -a" to see local ports that are in use.

  • Oracle XDB HTTP Server?

    Hi,
    Version: 11.1.0.6 - Linux
    I have configured the Apex installation to use the Oracle XML DB HTTP Server and everything is working fine.
    I also understand that this XML DB HTTP server is running in the database.
    Just wanted to know if I could find the path of this HTTP server and where it is running in the linux box on which this DB is installed.
    Could somebody please help me with this information.
    Regards,
    Jitesh

    Hi Prabodh,
    The path is the http://host_name:port/apex is the url to access the apex application.
    Ex: If I am using an Apache server, then I would have a path for this Apache server on my linux machine.
    Since, my current scenario deals with a XDB HTTP server inside the DB, just wanted to know that does this HTTP server have a path where I could access it on the linux machine as well.

  • Move database from server running Oracle 11G to server running Oracle 12c

    I'm trying to find out the easiest way to migrate a database from a server running Oracle 11G to a server running Oracle 12c. I have tried using RMAN's duplicate database command but have run into far too many issues when trying to setup both servers before running the duplicate command.  If someone could provide some clear guidance on configuring both servers for the RMAN Duplicate command then that would be great.  The other thing I have tried is performing a cold backup of all the files for the database (control files, data files, etc.).  Copying them to the new server and then recreating the control file to include the correct location and names for the datafiles and redologs.  After recreating the control file the database will not start up.  I'm suspecting this is due to the version differences. If you can provide me clear (ie. migration for dummies) instruction for getting either of these methods to work it would be greatly appreciated.  I'm also open to any other method you can think of to achieve what I'm trying to accomplish. Thanks, Paul Noyes

    Pl do not post duplicates - Move database from server running Oracle 11G to server running Oracle 12c

  • Why ? installing SolMan 7.0 MS SQL server cannot get info about acct sidadm

    While installing SolMan on Windows 2003 SQL 2005  64bit OS the install stops and will not continue
    with the following error
    NOTE: I am installing on 64bit OS as we already have on 32bit OS and need to migrate it over to 64bit
    MS SQL server cannot get informatin about account cityacct\sidadm 
    the log recommends to execute the following command in SQL
    master..xp_logininfo 'CITYACCT\sidadm'
    I get the error
    Could not obtain information about Windows NT group/user ''CITYACCT\sidadm' error code 0x5
    I am soooo stuck , I have been researching and researching even with SAP and no answer yet, has anyone had this issue and how can I get past it?
    Thank You in Advance
    Maria
    I

    Maria,
    Were you able to resolve this issue? I'm getting the same error.
    -wael

  • Oracle 11g b2b server JMS Internal Delivery Channel Configuration

    Hi,
    I am using Oracle 11g b2b server configured with ebMS protocol. I have created a JMS internal delivery channel at host trading partner. Now the Inbound message (message from remote trading partner) will be delivered to back-end application through the jms internal delivery channel. Now I wanted to send this message to the another weblogic server domain which is hosted on another box. So where do I give the other weblogic domain details such that the message will be delivered from the host trading partner's b2b server to remote weblogic domain queue?
    Regards,
    Baskaran

    Hi Baskaran,
    As already mentioned by Nitesh, You can Create a Internal JMS Delivery channel and configure the same in your agreement to route the messages to the remote weblogic(domain) JMS queue.
    Remote weblogic domain's ip address and port details can be configured as part of JMS Internal Delivery channel, "Destination Provider" like below,
    eg.
    java.naming.provider.url=t3://<host>:<port>;java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory;java.naming.security.principal=<username>;java.naming.security.credentials=<password>
    In this case the messages directly delivery to the remote JMS queue.
    Regards
    Nandagopal

  • 9iAS vs. Oracle 8i HTTP Server

    Hi,
    Can anyone explain in some sentences main differences between 9iAS and Oracle 8i HTTP Server.
    The latter we have "for free" with the database and in many applications (e.g. PL/SQL + Web Toolkit) this seems to work quite well.
    What do we pay for when buing 9iAS?
    Regerds,
    Jarek

    For your application if you care about scalability and want to offload db traffic to cheaper hardware based app server, you might want to consider app server usage.
    Also, please note that the presence of HTTP Server in database might change in future.
    Regards
    Pavna Jain
    Oracle9iAS Product Manager

  • Question: I cannot start my iPhone 4. It just "died". I connected it ti my Mac, but tha Mac doesn´t recognise it. Any ideas how to wake the phone.The battery is fine, I just cannot get it working!

    Question: I cannot start my iPhone 4. It just "died". I connected it ti my Mac, but tha Mac doesn´t recognise it. Any ideas how to wake the phone.The battery is fine, I just cannot get it working!

    See Here for
    Frozen or unresponsive iPhone
    Try this first... You will not lose any Data...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    http://support.apple.com/kb/ht1430
    If that does not work... try letting the battery fully drain.
    Then Charge for an Hour and try the suggestions again.

  • Have Adobe's Digital Edition, now I wanted per bookcase the books in a list printing, but printing can not activate. I cannot get it working to someway to print lists. Please tell me what the cause is that this fails or what should I change to get the lis

    have Adobe's Digital Edition, now I wanted per bookcase the books in a list printing, but printing can not activate. I cannot get it working to someway to print lists. Please tell me what the cause is that this fails or what should I change to get the lists be printed

    Hello, Edward and thank you for your note.
    I read through the thread you mentioned and it seems that people are having a lot of problems with the iCloud clients, so we're not alone, but the unique issue in my case is the failing email address vs. the working perfectly email address.
    After reading your message tonight, I tried my setup again with the preferred Apple ID (the one without the "." between the names), and for the first time ever, IT WORKS. Mail app configured the servers both send and receive as p01-smtp.mail.me.com and p01-imap.mail.me.com. For the first time, I'm able to send and receive into the Mail app, create mailboxes, move messages into and out of mailboxes, keep Sent messages, etc.
    I had a 50-minute support chat with MobileMe support via ExpressLane on Monday afternoon. They couldn't resolve my issue but passed me on to escalation. I was told to expect to get an email from advanced support by this afternoon, but none has arrived. However, so far tonight -- and I will check again tomorrow several times before declaring victory -- it looks like something has been fixed on the Apple end to make things work.
    I will report back after I do some additional testing tomorrow to make sure the fix is real and is solid...and before I let my friend, the new Mac user, know the good news.
    Regards,
    Mike

  • Re Post: Http server cannot start after running the following JSP

    Hi,
    I have 9iAS 1.0.2.2 and it has been working fine.
    My http server was running fine until I ran the following Jsp. Now I cannot start the Http server at all.
    I check the Oracle home and the path and make sure they match (i.e. if my Oracle Home is iSuites, I have the PATH variable: c:\oracle\isuites\bin as the 1st one. And I reboot the system after I changed the Oracle Home, check the PATH variable etc.)
    I also check the oci.dll files, and I have the oci.dll file in the following directories:
    c:\oracle\ora81\BIN 87KB
    c:\oracle\806\BIN 38KB
    c:\oracle\iSuites\BIN 87KB
    I check the Registry (regedit) and found that I have ORACLE_HOME_KEY for ora81 home, iSuites home, but not
    806 home. And there are oracle.key files in c:\oracle\ora81\bin, c:\oracle\806\bin, c:\oracle\isuites\bin .
    The contents of oracle.key in c:\oracle\ora81\bin and c:\oracle\isuites\bin are correct (i.e. "Software\ORACLE\HOME0" "Software\ORACLE\HOME2" respectively.) However, the content in c:\oracle\806\bin is "Software\ORACLE" .
    Will this be a problem because there is no corresponding ORACLE_HOME_KEY for 806 in regedit?
    OR
    the OCI.DLL file is corrupted in one of the above directory.
    Below is the JSP code that I ran. Before that, my HTTP server is started correctly.
    I really appreciate if someone could give me some pointers about this.
    I also suspect that when the HTTP server was brought down for some reasons and it was not a clean shutdown.
    So how can I shutdown the http server cleanly before restarting that?
    Thanks;
    Kelly.
    <%@ page language="sqlj"
    import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracl
    e" %>
    <HTML>
    <HEAD> <TITLE> The SQLJQuery JSP </TITLE> </HEAD>
    <BODY BGCOLOR="white">
    <% String empno = request.getParameter("empno");
    if (empno != null) { %>
    <H3> Employee # <%=empno %> Details: </H3>
    <%= runQuery(empno) %>
    <HR><BR>
    <% } %>
    <B>Enter an employee number:</B>
    <FORM METHOD="get">
    <INPUT TYPE="text" NAME="empno" SIZE=10>
    <INPUT TYPE="submit" VALUE="Ask Oracle");
    </FORM>
    </BODY>
    </HTML>
    <%!
    private String runQuery(String empno) throws
    java.sql.SQLException {
    DefaultContext dctx = null;
    String ename = null; double sal = 0.0; String hireDate = null;
    StringBuffer sb = new StringBuffer();
    try {
    dctx = Oracle.getConnection("jdbc:oracle:oci8:@", "scott",
    "tiger");
    #sql [dctx] {
    select ename, sal, TO_CHAR(hiredate,'DD-MON-YYYY')
    INTO :ename, :sal, :hireDate
    FROM scott.emp WHERE UPPER(empno) = UPPER(:empno)
    sb.append("<BLOCKQUOTE><BIG><B><PRE>\n");
    sb.append("Name : " + ename + "\n");
    sb.append("Salary : " + sal + "\n");
    sb.append("Date hired : " + hireDate);
    sb.append("</PRE></B></BIG></BLOCKQUOTE>");
    } catch (java.sql.SQLException e) {
    sb.append("<P> SQL error: <PRE> " + e + " </PRE> </P>\n");
    } finally {
    if (dctx!= null) dctx.close();
    return sb.toString();
    %>

    I had this problem and the pkgchk mentioned above helped to get the admin server going (thanks!) but I could not run the admin console. I saw:
    Exception in thread "main" java.lang.UnsupportedClassVersionError: org/GNOME/Accessibility/JavaBridge (Unsupported major.minor version 49.0)
    It turned out that something (I suspect the patch) had replaced my java1.5.0_06 binary with a java1.4.2_03 binary - but left the java1.5 directory structure alone! i.e. looking in /usr/jdk would have indicated that java1.5 was installed, but when I ran jdk1.5.0_06/bin/java -version , it reported java version "1.4.2_03". I was unimpressed.
    I ended up removing all the SUNWj5* packages and reinstalling them and then I could start the admin console.
    Now to find out what other damage this patch might have caused.....

  • Http server cannot start after running the following JSP

    Hi,
    I have 9iAS 1.0.2.2 and it has been working fine.
    My http server was running fine until I ran the following Jsp. Now I cannot start the Http server at all.
    I check the Oracle home and the path and make sure they match (i.e. if my Oracle Home is iSuites, I have the PATH variable: c:\oracle\isuites\bin as the 1st one. And I reboot the system after I changed the Oracle Home, check the PATH variable etc.)
    I also check the oci.dll files, and I have the oci.dll file in the following directories:
    c:\oracle\ora81\BIN 87KB
    c:\oracle\806\BIN 38KB
    c:\oracle\iSuites\BIN 87KB
    I check the Registry (regedit) and found that I have ORACLE_HOME_KEY for ora81 home, iSuites home, but not
    806 home. And there are oracle.key files in c:\oracle\ora81\bin, c:\oracle\806\bin, c:\oracle\isuites\bin .
    The contents of oracle.key in c:\oracle\ora81\bin and c:\oracle\isuites\bin are correct (i.e. "Software\ORACLE\HOME0" "Software\ORACLE\HOME2" respectively.) However, the content in c:\oracle\806\bin is "Software\ORACLE" .
    Will this be a problem because there is no corresponding ORACLE_HOME_KEY for 806 in regedit?
    OR
    the OCI.DLL file is corrupted in one of the above directory.
    Below is the JSP code that I ran. Before that, my HTTP server is started correctly.
    I really appreciate if someone could give me some pointers about this.
    Thanks;
    Kelly.
    <%@ page language="sqlj"
    import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracl
    e" %>
    <HTML>
    <HEAD> <TITLE> The SQLJQuery JSP </TITLE> </HEAD>
    <BODY BGCOLOR="white">
    <% String empno = request.getParameter("empno");
    if (empno != null) { %>
    <H3> Employee # <%=empno %> Details: </H3>
    <%= runQuery(empno) %>
    <HR><BR>
    <% } %>
    <B>Enter an employee number:</B>
    <FORM METHOD="get">
    <INPUT TYPE="text" NAME="empno" SIZE=10>
    <INPUT TYPE="submit" VALUE="Ask Oracle");
    </FORM>
    </BODY>
    </HTML>
    <%!
    private String runQuery(String empno) throws
    java.sql.SQLException {
    DefaultContext dctx = null;
    String ename = null; double sal = 0.0; String hireDate = null;
    StringBuffer sb = new StringBuffer();
    try {
    dctx = Oracle.getConnection("jdbc:oracle:oci8:@", "scott",
    "tiger");
    #sql [dctx] {
    select ename, sal, TO_CHAR(hiredate,'DD-MON-YYYY')
    INTO :ename, :sal, :hireDate
    FROM scott.emp WHERE UPPER(empno) = UPPER(:empno)
    sb.append("<BLOCKQUOTE><BIG><B><PRE>\n");
    sb.append("Name : " + ename + "\n");
    sb.append("Salary : " + sal + "\n");
    sb.append("Date hired : " + hireDate);
    sb.append("</PRE></B></BIG></BLOCKQUOTE>");
    } catch (java.sql.SQLException e) {
    sb.append("<P> SQL error: <PRE> " + e + " </PRE> </P>\n");
    } finally {
    if (dctx!= null) dctx.close();
    return sb.toString();
    %>

    Hi Jim,
    I have the same environment with almost similar problem, no IIS services being started, but HTTP_Server still failed to start. Below log:
    +10/09/28 23:35:04 Start process+
    +[Tue Sep 28 23:35:06 2010] [warn] pid file c:/oracle/frhome_1/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous+
    Apache run?
    ap_spawn_child: Bad file descriptor
    Couldn't fork child for piped log process
    Regards,
    Chai
    Edited by: user13350226 on Sep 28, 2010 9:14 AM

  • Apex Installation ok, HTTP Server displays error in logs

    I have a strange issue.
    Apex 3.2 installation was okay. However when bouncing Apache HTTP Server, I have following errors in the log.
    =================================================================
    [Mon Mar 30 23:36:26 2009] [error] [client 192.168.2.102] [ecid: 1238474186:192.168.2.102:5792:4952:4,0] File does not exist: c:/oraclehttp/apache/apache/htdocs/favicon.ico
    [Mon Mar 30 23:36:29 2009] [error] [client 192.168.2.102] [ecid: 1238474189:192.168.2.102:5792:4116:5,0] File does not exist: c:/oraclehttp/apache/apache/htdocs/favicon.ico
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:6040:5,0] Filename is not valid: c:/orahttp/apache/images"favicon.ico
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:6040:6,0] Filename is not valid: c:/orahttp/apache/images"javascript/apex_ns_3_1.js
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:6040:7,0] Filename is not valid: c:/orahttp/apache/images"javascript/apex_3_1.js
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:6040:8,0] Filename is not valid: c:/orahttp/apache/images"javascript/apex_get_3_1.js
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:6040:9,0] Filename is not valid: c:/orahttp/apache/images"javascript/apex_builder.js
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:6040:10,0] Filename is not valid: c:/orahttp/apache/images"css/apex_3_1.css
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:3956:1,0] Filename is not valid: c:/orahttp/apache/images"css/apex_builder_3_1.css
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:4780:1,0] Filename is not valid: c:/orahttp/apache/images"htmldb/apex_logo.gif
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:4696:1,0] Filename is not valid: c:/orahttp/apache/images"1px_trans.gif
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:3956:2,0] Filename is not valid: c:/orahttp/apache/images"htmldb/builder/right_curve.gif
    [Tue Mar 31 00:04:22 2009] [error] [client 192.168.2.102] [ecid: 1238475862:192.168.2.102:4640:6040:11,0] Filename is not valid: c:/orahttp/apache/images"htmldb/builder/left_curve.gif
    [Tue Mar 31 00:04:25 2009] [error] [client 192.168.2.102] [ecid: 1238475865:192.168.2.102:4640:4780:2,0] Filename is not valid: c:/orahttp/apache/images"favicon.ico
    [Tue Mar 31 00:04:25 2009] [error] [client 192.168.2.102] [ecid: 1238475865:192.168.2.102:4640:4696:2,0] Filename is not valid: c:/orahttp/apache/images"favicon.ico
    =======================================================
    My http home directory is c:\OracleHTTP; my old HTTP directory was C:\orahttp that I deleted and reinstall Oracle HTTP Server.
    I don't understand why these error is coming? even Apache is referring old http server home.
    on DADS.CONF my image directory is set to
    Alias /i/ "c:\OracleHttp\Apache\images\/"
    So the situation is when I invoke Apex it displays with all images, but do not move after that; i.e the screen don't move whatever you type.
    Can anybody give advise what can we do to make Apex functional?
    Thanks.

    The reference to old HTTP home was resolved as there were old settings on Window Registry that I deleted.
    I am still getting following errors:-
    [Tue Mar 31 09:10:48 2009] [error] [client 192.168.2.102] [ecid: 1238508648:192.168.2.102:944:4080:7,0] File does not exist: c:/oraclehttp/apache/apache/htdocs/favicon.ico
    [Tue Mar 31 09:10:50 2009] [error] [client 192.168.2.102] [ecid: 1238508650:192.168.2.102:944:1244:4,0] File does not exist: c:/oraclehttp/apache/apache/htdocs/favicon.ico
    Any body have ideas?
    Thanks.

Maybe you are looking for

  • Loop Browser

    I just bought a new 2.8 24" iMac. When I turned it on, I transfered all my files from my old iMac G5, including GarageBand, Logic Studio, and all Jam packs (which I paid for) to the new iMac. Unfortunately most loops are not active in the browser. Th

  • Iphoto unable to import images from card or from desktop

    A recent update to the operating system for my imac with Maverick has rendered my iphoto incapable of importing images, creates a mirror shift of the frontpage as it is opened up and requires a long time for iphoto to open. When I try to import a pho

  • Disk still wakes up with laptop-mode-tools

    Hi all, I have a Thinkpad x61 and I'm trying to manage power use with laptop-mode-tools, but I'm having trouble with the harddrive waking up too much. I have it configured so that lm-tools activates when the power is disconnected, and sure enough, a

  • HASH FUNCTION IN JAVA

    i need help!! i have to create a program in java in which i want to compare passwords by using hash function.More specifically,the parameters of hash should be like this hash(password,salt). which is the library that i have to use and how can i call

  • Cluster and Content services

    Hi,     In our environment, we have two nodes in a cluster with Content services runnin on both the cluster nodes.      One of the process, which is configured to have watched folder end point. This process reads the document from watched folder and