JSP examples in Tomcat home page don�t run

Hi,
I installed Tomcat 5.5.10, Fedora Core 4 and JDK 1.5.0_04-b05 in my PC.
When I run Mozilla and type http://localhost:8080, the Tomcat page appears on the screen, but when I try to run the HelloWorld example, I see the following error mesage:
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: Error instantiating servlet class org.apache.jsp.jsp2.simpletag.hello_jsp
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
java.lang.Thread.run(Thread.java:595)
root cause
java.lang.VerifyError: (class: org/apache/jsp/jsp2/simpletag/hello_jsp, method: jspxmeth_mytag_helloWorld_0 signature: (Ljavax/servlet/jsp/PageContext;)Z) Incompatible argument to function
java.lang.Class.getDeclaredConstructors0(Native Method)
java.lang.Class.privateGetDeclaredConstructors(Class.java:2328)
java.lang.Class.getConstructor0(Class.java:2640)
java.lang.Class.newInstance0(Class.java:321)
java.lang.Class.newInstance(Class.java:303)
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
java.lang.Thread.run(Thread.java:595)
In my etc/profile file, I added the following lines (I think they are required for javac):
JAVA_HOME=/opt/jdk1.5.0_04
CATALINA_HOME=/usr/tomcat/tomcat
PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$CLASSPATH:$CATALINA_HOME/common/lib/jsp-api.jar
export CLASSPATH=.:$CLASSPATH:$CATALINA_HOME/common/lib/servlet-api.jar
export JAVA_HOME CATALINA_HOME CLASSPATH PATH
export CLASSPATH=.:$CLASSPATH:/db4o/db4o-4.6/lib/db4o-4.6-java1.2.jar
Does anybody know what�s wrong?
Thanks

Hi,
This is the source code for the tag example:
<%@ taglib prefix="mytag" uri="/WEB-INF/jsp2/jsp2-example-taglib.tld" %>
<html>
<head>
<title>JSP 2.0 Examples - Hello World SimpleTag Handler</title>
</head>
<body>
<h1>JSP 2.0 Examples - Hello World SimpleTag Handler</h1>
<hr>
<p>This tag handler simply echos "Hello, World!" It's an example of
a very basic SimpleTag handler with no body.</p>
<br>
<b><u>Result:</u></b>
<mytag:helloWorld/>
</body>
</html>
and this is the source code for the tag handler:
package jsp2.examples.simpletag;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.SimpleTagSupport;
import java.io.IOException;
public class HelloWorldSimpleTag extends SimpleTagSupport {
public void doTag() throws JspException, IOException {
     getJspContext().getOut().write( "Hello, world!" );
}

Similar Messages

  • View JSP Examples in Tomcat 4

    Hello everyone,
    I will really appreciate your advise on this problem.
    I am not able to run the JSP examples in Tomcat 4. I can see that the document sais:
    These examples will only work when these pages are being served by the ServletRunner. They will not work if you are viewing these pages via a "file://..." URL.
    But I don't know what does that mean. What should I do? How can I view these examples?
    Thank you very much for any advise and for your time.
    Martin

    >
    Normally JSP pages will be executed at server side
    e before serving
    the output to client. But you can see the same file
    using any editor
    or using windows explorer.i.e you are directly viewing
    the jsp page.
    here you are using file protocol. But when you access
    the same page
    using any browser by specifying it's URL for ex:
    http://localhost:8080/myjsp.jsp
    you are using http as protocol to get the required
    page/file.
    Gayam.Srinivasa ReddyHello ,
    My problem is that when I start Tomcat and type in my browser:
    http://localhost:8080/examples/jsp/index.html
    I see the JSP examples. But when I try to click on one of them,
    I get an error like this:
    http://localhost:8080/examples/jsp/num/numguess.jsp
    Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet jsp threw exception
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:935)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:653)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214).......
    ....and so on...........
    root cause
    java.lang.NoSuchMethodError: javax.servlet.ServletContext.getResourcePaths(Ljava/lang/String;)Ljava/util/Set;
         at org.apache.jasper.compiler.TldLocationsCache.processJars(TldLocationsCache.java:202)
         at org.apache.jasper.compiler.TldLocationsCache.(TldLocationsCache.java:139)
         at org.apache.jasper.EmbededServletOptions.(EmbededServletOptions.java:345)
         at org.apache.jasper.servlet.JspServlet.init(JspServlet.java:266)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:916)
    ....................and so on
    Please give me a hint of how to fix this problem.
    Thank you very much for your time and advise!
    Martin
         

  • Firefox 12 doesn't load bookmarks in sidebar, home pages don't open, undo closed tab won't work.

    Firefox 11 worked fine. Firefox 12 seemed to install too fast. Now, when opening Firefox, bookmarks don't load in sidebar, even though the top of the sidebar says "bookmarks." Home pages won't load on opening Firefox---only a new tab. Clicking on the little house icon opens the home pages. Display closed tabs icon is dark and Undo closed tabs won't work. Sometimes the toolbar with File, Edit, View etc goes so dark it virtually disappears. I have Vista OS. Reinstalling Firefox 12 didn't help. Is there a fix, or can I go back to Firefox 11?

    Do a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 12.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Since installing the latest FF version 14.0.1 the search boxes on the home page don't work with google

    The normal google page works fine, but the search boxes on the home page (below firefox logo and the one top RH corner) just go nowhere unless you change the search provider using the dropdown, to yahoo or bing etc, in whcih case it searches fine - just won't work with google, which I prefer to use. I have an older version 3.6.13 on another desktop and that still works fine.
    Any ideas team?

    golden-grace, to answer some of your questions:
    * Firefox 3.6 is no longer supported and will no longer be updated for security vulnerabilities or any other updates.
    *On resetting '''browser.startup.homepage_override.mstone''': It's normal for the "welcome to Firefox" tab to open and for that preference to revert back to user-set and show Firefox 14.0.1 afterwards.
    *On deleting the chromeappsstore.sqlite file in the Firefox Profile Folder and then resetting that preference again: You can open the Profile folder from the Firefox Help -> Troubleshooting Information page. See the [[Profiles]] article for more information.
    * On installing new search engines from http://mycroft.mozdev.org that simply adds new search providers to the [[Search Bar|Search Bar]]. It does not install a new search bar. You will still have a single Search Bar and the "normal" Google will still be listed.
    Getting back to Google not working from the about:home homepage or from the upper right corner search box, you said,
    ''the page tab changes to "connecting" and the little circle starts revolving, just as though it is looking for the page as normal and at the bottom of the home page the message appears "waiting for www.google.com"''. You also said in your original post that, ''The normal google page works fine.'' Which normal google page is that?
    If you can go to www.google.com directly, and it works fine:
    I would try removing Google from the list of search providers and then use the "Restore Defaults" button in the Search Bar "Manage Search Engine List" dialog to add it back to the list, then select it again as your default. The [[Search Bar|Search Bar]] article explains in detail how to do that. (Alternately, try the [https://addons.mozilla.org/firefox/addon/searchreset/ Search Reset] add-on. This should also add back Google and set it as the default.)
    If you try going to www.google.com but it never connects, that's a whole other issue. Putting that aside for now, if you would rather use google.co.uk from the Search Bar, you can install it <u>as an additional choice from the Search Bar drop-down menu</u>, by going here:
    * http://mycroft.mozdev.org/google-search-plugins.html ... where it's listed as '''''Google UK - the Web (google.co.uk) by Mycroft Project'''''. (You will still have a single Search Bar and the "normal" Google will still be listed.)
    If you try going to www.google.com but it never connects, you could troubleshoot that by following the [[Basic Troubleshooting]] article (I would start with clearing cookies and cache) but all of these steps may be frustrating for you. Another option is to simply reset Firefox (which saves your bookmarks, passwords, and some other essential data) to see if that resolves the problem. You can do that from the Firefox Help -> [https://support.mozilla.org/en-US/kb/provide-detailed-information-for-firfox-issues#w_accessing-the-troubleshooting-information-page Troubleshooting Information page]. For details, read the [[Reset Firefox – easily fix most problems]] article. You can then go to http://mycroft.mozdev.org/google-search-plugins.html and select your preferred Google search engine to use from the Search Bar.

  • How to make page content fade in? (example: Apple's home page)

    I'm assuming this is done through Javascript, but looked at the code and couldn't determine how they did it.

    The following code was written by NancyO
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Fading Logo and page redirect test</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
    </script>
    <style type="text/css">
    #logo {
    display: none;
    margin-top: 150px;
    body {
    text-align: center;
    </style>
    </head>
    <body>
    <!--your image goes here -->
    <img src="../Images/magnifying_glass.gif" alt="description" name="logo" width="175" height="173" id="logo" />
    <!--change window.location = to 'http://yourdomain.com' -->
    <script type="text/javascript">
    $(function() {
    $('#logo').fadeIn(3000, function() {
    $(this).delay(1000).fadeOut(2000, function() { window.location = 'http://alt-web.com/tools.shtml'; });
    </script>
    <noscript>This is an <a href="../tools.shtml">alternate text link </a>for browsers with JavaScript Disabled.</noscript>
    </body>
    </html>
    and the image
    Gramps

  • In Ver 6.0.2, Gadgets I've added to the home page don't stay when I boot up again.

    I recently upgraded Firefox from 3.6 (I think it was) to 6.0.2. When I boot up Firefox now, my old Gadgets are gone and new "default" gadgets appear such as Weather (set for a town in Florida), Clock etc. I change these to ones I want (following the directions correctly to select each Gadget) and the opening page then displays my selected Gadgets. But the next time I boot up Firefox, the opening page displays the old "default" Gadgets again. Why? Thank you!

    See http://kb.mozillazine.org/Website_colors_are_wrong
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • JSP as Home Page on iPlanet

    Is it possible to configure the iPlanet web server 4.1 to serve a JSP as its
              home page from WL when a user hits a URL like http://www.mywebsite.com? The
              proxy by jsp extension and directory work fine when the URL is anything
              other than the default web site. I'd rather avoid doing a redirection in an
              HTML page to a JSP page. In my testing, if the home page in iPlanet is set
              to a JSP page, the proxy rules don't go into effect properly and for some
              reason iPlanet asks WL to serve it's default page.
              Any ideas on how I can get this to work?
              -Brian Cunningham
              

    Brian,
              You can easily get WLS to serve index.jsp as the default home page. I have
              included the section of the docs from the "Serving dynamic pages by default"
              section from http://www.weblogic.com/docs51/admindocs/http.html#default
              You may configure the WebLogic Server to serve dynamic default files, delivered
              by the JSPServlet, the PageCompileServlet, or your own custom servlet. This
              property instructs the WebLogic Server to look for certain files to be handled
              by specific servlets handling their file extension types:
              weblogic.httpd.indexFiles=index.foo,index.bar
              Where servlets must be registered to handle all files with extension ".foo" and
              ".bar", such as:
              weblogic.httpd.register.*.foo=com.myservlets.FooServlet
              weblogic.httpd.register.*.bar=com.myservlets.BarServlet
              The comma separated list of filenames is searched in order, and precedes the
              invocation of the FileServlet, and hence precedes the defaultFilename associated
              with the FileServlet. Note that servlets must be registered to handle the listed
              file extension types.
              Hope this helps,
              Robert
              Brian Cunningham wrote:
              > Thanks for the reply. But, I guess I should've stated my problem more
              > clearly.
              >
              > I have my obj.conf configured to serve index.jsp as my home page and I've
              > tried adding it as an index file as well. It's also configured to proxy all
              > text/jsp to WL and anything under a specified directory. However, when a
              > user goes to http://www.myhomepage.com/ and the obj.conf tries to deliver
              > the configured home page of index.jsp it doesn't proxy it correctly to WL.
              > WL, for whatever reason, will deliver it's specified default file instead of
              > the index.jsp. My guess is that iPlanet will only proxy the requests based
              > on the URL. So, even though index.jsp is configured as the home page and
              > iPlanet is configured to proxy all jsp requests to WL, it still doesn't work
              > correctly. I don't want to use iPlanet to serve the jsp using its JSP
              > engine. I just can't get it to proxy correctly to WL. I've tried a few
              > dozen configurations in iPlanet which have all failed.
              >
              > The only other solution I can think of is to allow iPlanet to work
              > incorrectly but configure WL to serve a JSP as its home page. However,
              > weblogic.properties is configured by default to use the FileServlet to serve
              > the defaultFile. How can I configure weblogic.properties to deliver a jsp
              > as its default file? I tried changing the obvious lines without any
              > success, i.e. register ServletServlet with initArgs of
              > defaulServletName=index.jsp but that didn't work.
              >
              > Any ideas?
              >
              > Wei Guan <[email protected]> wrote in message
              > news:[email protected]...
              > > Comments inline.
              > >
              > > --
              > > Cheers - Wei
              > >
              > >
              > > Brian Cunningham <[email protected]> wrote in message
              > > news:[email protected]...
              > > > Is it possible to configure the iPlanet web server 4.1 to serve a JSP as
              > > its
              > > > home page from WL when a user hits a URL like http://www.mywebsite.com?
              > > Yes, you have to setup index.jsp as a default page in iPlanet. However,
              > I'd
              > > rather like to setup WebLogic to serve JSP and servlet while iPlanet
              > serves
              > > static pages only.
              > >
              > > > The
              > > > proxy by jsp extension and directory work fine when the URL is anything
              > > > other than the default web site. I'd rather avoid doing a redirection
              > in
              > > an
              > > > HTML page to a JSP page. In my testing, if the home page in iPlanet is
              > > set
              > > > to a JSP page, the proxy rules don't go into effect properly and for
              > some
              > > > reason iPlanet asks WL to serve it's default page.
              > > It might be your weblogic plugin setup. In your servlet setup in obj.conf,
              > > if you use path pattern, such as "/weblogic*", and if you request
              > > http://www.mywebsite.com/weblogic/abc/, iPlanet will proxy it to weblogic
              > > since it match "/weblogic*". So, weblogic has to figure out what the
              > default
              > > page is. So, the URL mathces the ppath in servlet proxy setup will not
              > work.
              > > Check to see if this applies to your case.
              > >
              > > My 2 cents.
              > >
              > > >
              > > > Any ideas on how I can get this to work?
              > > >
              > > > -Brian Cunningham
              > > >
              > > >
              > >
              > >
              

  • Podcast "home page" doesn't update

    Any help would be appreciated. Two of our five podcast "home pages" don't show new episodes. However, current subscribers receive the episodes. A lack of new episodes at the home page for these podcasts makes it look dated.
    I can't seem to find a difference in the feeds that work fine and the ones we produce that don't update. A link to see an example of a non-updating "home page" is below. Thanks [mjm]
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=203017732
      Windows XP  

    You can try:
    *http://kb.mozillazine.org/Firefox.exe_always_open
    Create a new profile as a test to check if your current profile is causing the problems.
    See:
    * [https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile Basic Troubleshooting: Make a new profile]
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See:
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Is there any way to delete all cookies except those used on the home page?

    Is there any setting in Firefox which would permit me the deletion of all cookies on exit EXCEPT those associated with with specific pages? For example, the iGoogle home page requires a cookie to be set which recognizes the session created in a prior access. If all cookies are deleted on closure of Firefox, the user is required to sign in to iGoogle every time to see their home page. Currently you can delete cookies on exit or accept cookies based on exception. I would like to delete all cookies except those from permitted sources. There is no setting for this that I can find.

    You can let all cookies expire if you close Firefox and set an allow exception for domains that you want to keep the cookies from. Don't use [[Clear Recent History]] to clear cookies as that will remove all cookies including ones with an exception, but just let the others expire.
    You can always remove cookies manually, e.g. via a click on the favicon and More Information and View Cookies.
    You can see all permissions of the current domain here: Tools > Page Info > Permissions

  • Can no longer use BT home page to log into BT Yaho...

    Hi Folks,
    Any assistance you can give me would be much appreciated, don’t sigh please … can’t login to BY Yahoo Mail from the BT home page.
    I thought I had been lucky as everything had been working fine for us, until today.  I and my family can login to our email accounts no problem with MS Outlook, but we do have a number of PC’s/Laptops that don’t have an email client on them hence trying to login via the BT home page.
    All running Windows 7, various IE versions from 8 to 10, and the same thing happens.
    We get to the email login page, type in our email address, we type in our password, click the login button or “return” on the keyboard and nothing happens.  Well not quite nothing, the typed in email address and password areas are cleared and then nothing else happens.
    This happens for all of the primary and secondary emails that we have.  Exactly the same, the boxes get cleared and nothing happens.  Worked fine before today.
    I did renew my contract this week and the order was “processed” today, could be a coincidence ?
    Anyway, any pointers ?  After spending over an hour this week being passed backwards and forwards between sales and the “retention team” getting a deal on my renewal of my contract I really can’t be bothered with a few hours with India.
    Thanks in advance
    PS, just noticed the log in page has changed, it now has a “stay logged in” button !
    Solved!
    Go to Solution.

    ryan_e1994 wrote:
    I'm new here so I hope I'm OK to add to this thread instead of starting a new one.
    I have been having exactly the same problem. I was able to access my emails on my iPhone and by using Microsoft Outlook, but whenever I tried to log in to my emails by using the "emails" link on the top of the page, the username and password that I entered was deleted. I repeatedly tried and still nothing.
    I have followed the advice on here and have managed to log into my emails at last! However, I still have a problem: I am now accessing my emails through Yahoo US and can't find a way to revert to BT Mail. While it is no major problem as it is still the same email address and all my emails are still there etc, I would prefer to go back to BT Mail.
    Can anyone help me to do this?
    Thank you
    Welcome to these friendly helpful forums ryan_e1994!
    That sounds exactly like the problem I experienced. See my post at the top of the page
    https://community.bt.com/t5/Other-Broadband-Queries/Web-mail-broken-this-evening/m-p/1163564#M78991
    That might help. Clicking that Continue button seems to me to have been the crucial action to take.

  • What can I do to change my home page from bing to google- I have tried 50 times and bing always shows back up as my home page

    I have done everything firefox says to do to change my home page. I want ti to be google but when I drag the icon over to my home page it only stays there for a few minutes and then bing shows back up. there is a little message that appears and says "someone has tried to change your home page and we have blocked it". I don't want bing aas a home page-don't know how it got on there anyway.

    Try clicking Start -> Settings -> Control Panel
    Add/Remove Programs
    Look for something called Windows Live Search Protection or Bing Search Protection.
    If you cant find that, try clicking Windows Live in the list, then clicking the change button. Untick anything that mentions Bing or the Bing Toolbar.

  • Home page different than start page

    I recently switched back from Chrome to Firefox (or I'm trying at least). The biggest thing from Chrome that I can't set up correctly is my start pages. In Chrome I can set my start pages to three separate tabs and my homepage to only one of those tabs. This is great because it'll start with those three tabs open but the home button will only take me to the one I specified as my home page. Trying to replicate hat set up in Firefox I saw using the pipe character "|" to separate the URLs. However, when I hit the home button, it opens whatever tab isn't currently open. For example, if my home pages are Google, Facebook, and Lifehacker, I want those three tabs to open on start but when I hit the home button to only bring me to Google, not open up separate tabs for Facebook and Lifehacker. Is there some kind of bookmarklet or add on home button that can give me this functionality? Thanks

    See:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes
    Can you start Firefox in Safe mode?
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers

  • Do not see file edit ect on the home page

    I'm trying to import my Favorites from Internet Explorer to Mozilla
    Firefox with no luck so far.The example shows your home page with
    the words File Edit View Favorites Tools Help The same as I E .
    Try as I have I cannot get these to show up in a (Toolbar??) How do I
    make this heading or whatever you call it to appear on the Firefox
    home page?
    Eddie A

    Firefox 3.6+ versions have a feature to allow the user to hide the Menu bar.
    Hit the '''Alt''' key to temporarily show the Menu bar, then open View > Toolbars and select Menu bar, so it has a check-mark. <br />
    The F10 can also be used on most PC's to temporarily reveal the Menu bar.
    https://support.mozilla.com/en-US/kb/Menu+bar+is+missing

  • Database Home Page - The page cannot be displayed

    Hello Oracle Gurus,
    Thank you in advance for your response.
    I'm running Oracle Database 10g Express Edition on Windows XP. When I launch the Database Home Page in IE I get a "The page cannot be displayed" error.
    I have gone through several posts on this forum and I have tried the following 5 things:
    1. I have stopped the database (net stop ...) and re-started the database (net start ...). This did not fix the problem.
    2. I checked the reading of "select open_mode from v$database;" this returned:
    OPEN_MODE
    READ WRITE
    I assume this is what it should be.
    3. I checked the reading of "select status from v$instance;" this returned:
    STATUS
    OPEN
    I assume this is what it should be.
    4. In IE -> Tools -> Internet Options -> Security -> Local intranet -> Sites -> Advanced, I added 127.0.0.1 to the local intranet zone.
    5. I restarted my WinXP PC.
    None of the above things worked.
    Does anybody have any suggestions of things to try to get the Database Home Page up and running?
    Please note that I am a newbie to Oracle so please write your response at the simplest possible level.
    Thanks,
    K

    There's a specific XE forum where they may have better answers than here. See Cannot access Oracle XE database home page

  • I can't access to  Database Home Page.

    I can't access to Database Home Page. the program run "http://127.0.0.1:8080/apex but it can't open the page

    It's a lot of threads in this Forum on same issue with solutions...
    Try with search...
    E.g.:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Database+Home+Page&objID=f251&dateRange=all&numResults=15
    HTH

Maybe you are looking for