ORACLE HTML DB  not found

at my URL http://<machine-name>:7777/pls/htmldb/htmldb_admin i got this error..,
Error Error ERR-1014 Application not found.
OK
application=4050 workspace=10
BUT the Oracle EM works fine http://<machine-name>:5501/em/logon/logon

Bug 3758204??

Similar Messages

  • The requested URL /Site/Home.html was not found on this server - HELP!

    NOT FOUND: The requested URL /Site/Home.html was not found on this server.
    This comes up when I type in my website address. I am new to this, have created my website on iweb, bought the domain name and purchased web hosting with 123-REG. I ask for their help but have only received the same rote info and nothing that has solved my problem.
    I am using Cyberduck as my FTP client but tried Classic FTP for macs before this and although it says that I am connected, it is saying that it can not change to the directory hosting10.123-reg.co.uk and asks if I have permission to be using it? I am not sure what to do?
    Please could someone advise me?
    Thanks!

    Welcome to the Apple Discussions. Since you're not using MobileMe these pages might be of some help to you:
    http://homepage.mac.com/thgewecke/iwebserver.html
    http://iwebfaq.org/site/iWebFolderFTP.html
    http://docs.info.apple.com/article.html?path=iWeb/2.0/en/6838.html
    OT

  • I am trying to install oracle 11g xe on ubuntu aws instance when i execute sudo /etc/init.d/oracle-xe configure command iam getting this error: sudo: /etc/init.d/oracle-xe : command not found

    i am trying to install oracle 11g xe on ubuntu aws instance when i execute sudo /etc/init.d/oracle-xe configure command iam getting this error: sudo: /etc/init.d/oracle-xe : command not found.

    "command not found" means ... there is no such thing.
    Has the .rpm been installed?
    http://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm#XEINL122

  • Class oracle.sql.OPAQUE not found in class oracle.xdb.XMLType

    I have the following code written in java in a unix box and this is the error I get when compiling the code. I am not able to find which specific jar or class file I need, Kindly help.
    XMLHelper.java:0: Class oracle.sql.OPAQUE not found in class oracle.xdb.XMLType.
    ^
    1 error
    OracleResultSet orst = .... some code to get data
    orst.next();
    //either of the following 2 lines give the same error
    //XMLType dXml = XMLType.createXML(orst.getOPAQUE(1)) ;
    XMLType dXml = (XMLType)orst.getObject(i);
    xmlDoc = dXml.getDOM();
    Please help

    Hello,
    from the little information in your post i would say try to import oracle.sql.*, oracle.jdbc.* and oracle.xdb.*. Make sure your project can access the following libraries ojdbc14.jar and xdb.jar.
    Regards, Marc

  • Class oracle.disco.DiscoApplet not found ?????

    Hi,
    I'm unable to open disco plus 10.1.2.2 today and it was working fine for me till yesterday.
    what i getting in console i pasted below.
    Any suggestions ????
    Java Plug-in 1.6.0_01
    Using JRE version 1.6.0_01 Java HotSpot(TM) Client VM
    load: class oracle.disco.DiscoApplet not found.
    java.lang.ClassNotFoundException: oracle.disco.DiscoApplet
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

    Hi,
    This looks more to me like it was an applet conflict with the newer 10.1.2.2 jar files and the older applet that was cached.
    I say this because I have used the 1.6 plugin without issue (not that it is officially certified :-) ) with versions 10.1.2.0.2 and 10.1.2.2 and I have seen that conflict before when applying patches that udpate the Discoverer Plus applet jar files.
    If you have this occur again, try to clear your JRE cache (start >> control panel >> java) and then reconnect, it will force the download of the new udpated applet. Likely why it started working when you deninstalled and reinstalled. Not sure if that would be considered a Discoverer bug/issue or a JRE issue when a new applet doesn't overwrite the old one.
    Hope that helps,
    Steve.

  • Oracle.jdbc.oracledriver not found

    Hi,
    i have this code .. given below. I installed the oracle client version 8. but everytime i run this code i get the oracledriver not found message. I put the oracle jdbc drivers in the class path. but the code just refuses to compile.
    Can anyone tell me what is wrong here. i have a funny feeling that the classpath is not set properly. let me know whats wrong here.
    ps: i havent set the system DSN - coz i am getting stuck at the drivers itself.
    It says the following .
    AccessDB.java:26: Class oracle.jdbc.driver.OracleDriver not found.
    DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver());
    i have the CLASSPATH=D:\oracle\ora81\jdbc\lib\classes111.zip;D:\oracle\ora81\jdbc\lib;D:\oracle\ora81\jdbc\lib\classes12.zip;D:\oracle\ora81\jdbc\lib\nls_charset11.zip
    the code is as follows
    //: AccessDB.java
    import java.sql.*;
    * Access the Database through JDBC
    public class AccessDB {
    private Connection con = null;
    private Statement stmt = null;
    private DatabaseMetaData meta = null;
    private String dbURL;
    private String dbUser;
    private String dbPassword;
    * Connects to JDBC driver
    public void connect(String dbURL, String dbUser, String dbPassword){
    try {
    DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver());
    Class.forName ("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection(dbURL,dbUser,dbPassword);
    stmt = con.createStatement();
    meta = con.getMetaData();
    catch(Exception e){
    System.out.println("connect: " + e);
    System.exit(0);
    * Disconnects from JDBC driver
    public void disconnect(){
    try {
    if (stmt != null) stmt.close();
    if (con != null) con.close();
    catch(Exception e){
    System.out.println("disconnect: " + e);
    System.exit(0);
    * Retrieves a Statement object
    public Statement getStatement(){
    return stmt;

    hi,
    i have some problem in JSP oracle connectivity,
    I'm running JRUN, PWS under WIN98.
    the following is the code for Oracle connection from JSP
    <%@ page import="java.sql.*" %>
    <HTML>
    <HEAD>
         <title>Example JSP</title>
    </HEAD>
    <BODY>
    <table width="50%" border=1>
         <th>Table Name</th>
         <th>Table Type</th>
    <%
    java.sql.Connection con;
    java.sql.ResultSet rs;
    java.sql.Statement sta;
              Class.forName("oracle.jdbc.driver.OracleDriver");
              con=java.sql.DriverManager.getConnection("jdbc:oracle:thin:@NTSERVER1:1521:orcl","DOHMS","TA");
              sta=con.createStatement();
              rs=sta.executeQuery("select * from USERS");
              while(rs.next()) {
                        out.println("<tr><td>"+rs.getString(1)+"</td><td>"+rs.getString(2)+"</td></tr>");
    %>
    </table>
    <BODY>
    the following is the error:
    Exception thrown on line '21' from page 'C:\\Program Files\\Allaire\\JRun\\servers\\default\\demo-app\\jsp\\dbtest.jsp'.
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver [oracle.jdbc.driver.OracleDriver]
         at allaire.jrun.servlet.JRunServletLoader.loadClass(../servlet/JRunServletLoader.java:430)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:265)
         at allaire.jrun.jsp.JSPClassLoader.loadClass(../jsp/JSPClassLoader.java:118)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:265)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:325)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:135)
         at jrun__jsp__dbtest2ejspf._jspService(jrun__jsp__dbtest2ejspf.java:49)
         at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:196)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1416)
         at allaire.jrun.session.JRunSessionService.service(../session/JRunSessionService.java:1082)
         at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:1270)
         at allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDispatcher.java:89)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1552)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1542)
         at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:364)
         at allaire.jrun.http.WebEndpoint.run(../http/WebEndpoint.java:115)
         at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
         at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
    ---------------

  • Oracle service orcl not found in windows services

    hello
    i'm facing a very serious problem. MY server ORacleserviceorcl not found in services. all services currently up and running. but ORCL service not show there and my database is down how i start my database. i found this problem first time. plz help me how to Start oracle. my ORacle version 10g on windows server 2003

    Niall,
    Do you think that the OP should try the following command to re-create the service:
    C:\> ORADIM -NEW -SID ORCLAs far as I have been able to determine, that command will not cause an issue, and will return an error if the service already exists.
    To the OP: It is possible that a utility, such as HiJackThis, was used to remove the service, the Windows registry is corrupt, someone used ORADIM to delete the service, someone was hacking away in the registry and accidentally removed the entry for the service, or any number of other possibilities (I am not sure if MSCONFIG will remove a service when that program disables the service, but that might be another possibility, and dropping the database is another possibility).
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.
    Edited by: Charles Hooper on Jan 22, 2010 10:42 AM
    Added the note about dropping the database as a possible cause - see if the datafiles still exist.

  • BO4 - auit universe changing to oracle connection - table not found

    Hi,
    We have found the BO4 sample audit universe on sdn and can open in IDT but when parse the objects says table not found.
    The tables physically exist on database and when do insert in data foundation layer they are there.
    Changed connection from mysql to our boaudit databse connection.
    Any ideas?
    Thanks

    Hi Philip,
    I suppose you have downloaded this link:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/40711187-04e8-2d10-d190-851e20c7665a
    This contains only the Activity universes for Sybase and SQL Server but not Oracle. Unfortunately, every database requires its own Activity universe. I am afraid that you have to build your own.
    Regards,
    Julian

  • Static html page not found !

    Hello,
    I'm new using OAS,
    and testing OAS Forms & Reports standalone 10g.
    When calling an html page inside a forms using
    web.show_document(l_url,'_TOP') command
    the page is not found - HTTP 404 - file notfound.
    l_url=http://e0400498vmxp:8891/applt-help/apphelp.htm
    Any help will be welcome.
    Regards
    Nelson

    Nelson,
    the URL, does it work if you type it in directly into the browser URL field? If ot doesn't work from here, then it doesn't in Forms either.
    Frank

  • Oracle.DataAccess.Client not found[SOLVED]

    Hello,
    I am trying to run a stored procedure using C# and I need to use the Oracle.DataAccess.Client but when i enter
    "using Oracle.DataAccess.Client;" visual studio throws the error:
    Error 1 The type or namespace name 'Oracle' could not be found (are you missing a using directive or an assembly reference?) P:\data\ActionItemLog\ActionItemLog\updateComment.aspx.cs 14 7 ActionItemLog
    And I installed the newest ODTwithODP for .NET. I would really like some help on this subject and I will do my best to clarify even more if needed.
    Thanks in advance,
    Dylan
    Message was edited by:
    dkroy

    Just a stupid mistake on my part all I had to do is in visual studio add the Oracle.DataAccess.dll file to references. I hope this mistake saves some one a bit of time in the future.

  • Oracle Portal Homepage Not Found.

    Hi,
    I've installed Oracle 9i Portal on Windows2000. Login server
    & gateway is up, but Portal homepage is not up.It is giving
    error (as found in install.log):
    ORA-01920: user name 'SCOTT' conflicts with another user or role
    name
    ORA-04043: object ENAME_TYPE does not exist
    ORA-12003: snapshot "SCOTT"."EMP_SNAPSHOT" does not exist
    ORA-04043: object GIVE_RAISE does not exist.
    Pl. reply.
    Thanx in advance,
    Tushar

    8.1.7 installs scott using System for the default and temporary
    tablespace. This can sometimes cause problems. To avoid problems,
    do the following for scott user:
    a) As system, issue the following commands:
    ALTER USER scott
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
    b) Log in as scott and move all of scott's objects to the
    users tablespace.
    For example:
    ALTER TABLE tablename
    MOVE TABLESPACE users;
    I hope this will help.
    Suhail

  • Help on Content html file not found

    All,
    We are using Hyperion Designer 8.5. When I click on the F1 (Help on Content), I am getting the following error message:
    C:\Program Files\Hyperion\Client\Samples\file:\c:\Program Files\Hyperion\HPSu\Client|Program\BrioHelp\briohel.htm?
    context=GETTING_STARTED&topic=Query_section contains an incorrect path.To fix this problem, I looked for setting the location of files. From the main menu, I clicked on 'Tools', 'Options' and 'Program Options'.
    From the Designer Options dialogue box, I clicked on the 'File Locations'. Even though I have found the location of the help file, but
    there are four choices under File Locations none of which is related to the help. Available file locations are:
    Documents Directory:
    Default Connection:
    Preferred Repository Connection:
    HTML Template Directory:
    How can I fix the path for running help?
    Thank you in advance,
    Seyed

    Moving a library from machine to another can require some preparation if it is to go smoothly.
    If you still have access to a working library on the original computer I can help you do the transfer again. Alternatively, as long as the files are organized within a media folder in a way that is vaguley consistent with iTunes, i.e. folders for artists, with subfolders for albums, then my FindTracks script might be able to relink the files.
    tt2

  • Customizing EBS Oracle Help - "404 File Not Found" Default page

    All,
    I am wondering if someone could explain to me how the Oracle EBS Application Help works.  For example, we have a custom form where we do not have a Help Page defined for the form so it sends me to a default page that says the following:
    "404 NOT FOUND"
    An error occurred while retrieving Oracle Applications Help information.
    Help target US/********* could not be found.
    My question is, when I clicked the Help icon, what happens after this?  It would typically find the correct Lang/Application/Form and reference a page within that directories APPL_TOP/help directory.  But when the page is not found something knows to send it to the specific oracle default 404 Not Found page.  Anyone know how this happens?
    Forgot to mention I am running on EBS R12.
    Thanks for any help!
    Jase

    Check this: https://docs.oracle.com/cd/E18727_01/doc.121/e12893/T174296T174304.htm#522236

  • Oracle 9.2 OLE DB Provider Not Found

    Hi people,
    Seem to have a similar issue with an earlier poster.... on two different machines (one with Visual Studio Enterprise Architect and the .Net Framework installed and one without using the default general purpose enterprise edition of 9.2 database install). Existing IIS + ADO applications now complain that the OraOLEDB.Oracle provider is not found. However, existing C++ -> ADO component applications do not have the same issue....
    Giving "Everyone" "Full Control" to %ORACLE_HOME% and subdirs as an NTFS permssion seems to work but also seems a bit drastic.... Anyone with a more focused explanation of what is going wrong? Anyone with a more secure workaround, perhaps?
    Thanks in advance,
    Lachlan Pitts

    All,
    Although not part of the Oracle OLE DB Team, or with any real qualifications, I do have a little information gained from experimentation...
    For those not up to date on this thread, the issue we all seem to have is when using the Oracle 9i Release 2 (9.2.0.1.0) OLE DB Provider (OraOLEDB.Oracle) with Microsoft's .NET framework, we receive the error OraOLEDB.Oracle not found when we attempt to open a connection. In the past, some have suggested that giving Everyone the security access Full Control to the Oracle home directory (such as C:\oracle\ora92) solves the problem. I tried this and to my surprise it did work. Unfortunately, I did not try giving the ASPNET user full control first (doh).
    The reason this frustrates me is that something permanently changed while the permissions were open. The permissions can now be removed, and the provider still works fine.
    The only modification I saw inside the Oracle home directory was to new oramts/trace/OracleMTSRecoveryService(*).trc files, with the timestamps corresponding to when the ASP.NET worker process (aspnet_wp) was started/restarted. I do not see the Oracle MTS Recovery service running on another machine with Oracle 9.0.x on it (although this may not mean anything). After these trace files were written I was able to remove the permissions changes I made (Everyone/Full Control), restarted the machine, and the OLE DB provider still worked fine -- seemingly using the latest trace file available (as I could delete all but the latest trace file). This file was being locked by the Oracle MTS Recovery service.
    However, I can stop the Oracle MTS recovery service, delete the trace files, restart the web service, reboot the machine, etc, and still, the OLEDB provider works fine. Something else must have permanently changed while the permissions were open, maybe even something that didn't go into the Oracle home directory but something that was able to go somewhere else after the first trace file was written... If anyone can find out what it is (in the registry maybe?) that allows the OLEDB provider to work, I'd really like to know.
    I think that this is a big enough problem that the Oracle developers should look at it -- maybe they would have insight as to what that MTS recovery service is up to, and how it relates to the OLE DB provider in regards to a fresh installation. Especially considering that Oracle is advertising this as the first OLEDB provider with full support for the .NET framework.
    Best Regards,
    Paul Hooper

  • Pages/pages/pages/main.html not found

    Hi all
    Please accept my apologies if this is a totally daft problem.
    I have a site that will have 3 main pages (for 3 different parts of
    our company) all of which will have a load of sub pages. I had
    thought to have the 3 main pages in the root directory, then have
    all the links in a /pages directory so that the root wasn't all
    clogged up. In dreamweaver, i have my links set up as:
    pages/example.html - but if (after uploading to test) i am on that
    page and attempt to navigate to another page within the pages
    directory eg. a file which in dreamweaver has the link
    pages/example2.html, i get a message saying the file
    pages/pages/example2.html is not found. So I know that it's looking
    for the pages directory relevant to the folder it's in, rather than
    the root folder. Is there any easy way to sort this out? I am
    totally new to web design, so any help would be appreciated.
    Thanks
    Jon

    jonnyozz posted in macromedia.dreamweaver
    > Hi all
    Howdy.
    > dreamweaver, i have my links set up as:
    pages/example.html - but
    > if (after uploading to test) i am on that page and
    attempt to
    > navigate to another page within the pages directory eg.
    a file
    > which in dreamweaver has the link pages/example2.html, i
    get a
    > message saying the file pages/pages/example2.html is not
    found. So
    > I know that it's looking for the pages directory
    relevant to the
    > folder it's in, rather than the root folder. Is there
    any easy way
    > to sort this out?
    If the links are in each file, create your links as document
    relative.
    If the links are in an included file, you may want to use
    site root
    relative.
    > I am totally new to web design, so any help would be
    appreciated.
    Do take some time to learn the basics of HTML and CSS.
    Understanding
    paths is one of the required basics to Web design.
    Mark A. Boyd
    Keep-On-Learnin' :)

Maybe you are looking for

  • Camera to PB

    Is there a trick (cables,software,etc) to connecting my digital camera to my PB so as to frame my shots onscreen? In other words, see on my PB the photo I am about to capture. Thanks in advance Larry

  • Sub:ck11n not picking the routing automatically

    Hi Guru,             Create cost estimation (ck11n) ,not picking the routing data automatically

  • Chinese character issue

    Hi, I already set up Oracle linux 5.7 within a Virtual box. during the setup i did choose English for the OS, now I got a problem to read Chinese in Firefox. how to adjust it well without reinstalling Oracle linux? Thanks & Best Regards, HuaMin

  • I cannot download photoshop cc for os x yosemite, I've already paid for it but it still doesn't work.

    It just always shows: Phostoshop downloading... but nothing's gonna happen ...thanks for your help guys:D

  • How to extend Generated Idoc - HRCC1DNINORD01?

    Hi Gurus,     I have a requirement add two custom fields to the Standard IDOC HRCC1DNINORD01. For this i am using IDOC Extension but system through Error like Extension is not possible for Generated IDOCs. So my self find that we cannot Enhance the G