Struts -- LogonView.jsp Displays A Blank Page

I am using the Struts. My LogonView.jsp displays a blank page. I have no idea why nothing is written while the MessageResources.properties file is found. (I would have gotton HTTP Status 500 if the MessageResources.properties is not found or the value of the corresponding key in the bean:message tag cannot be picked up.)
Here is my MessageResources.properties file:
button.submit=Send for Verification
button.reset=Clear the Form
logonForm.userId=User Name
logonForm.password=Password
logonForm.confirm_password=Confirm Password
logonForm.emailAddress=E-mail Address
logonForm.hear_from_us=How did you hear about the StudentScholar.org?
logonForm.subscriber=Subscribe to the StudentScholar.org newsletter
logonForm.send_updates=Occassionally send me updates
logonForm.fname=First Name
logonForm.lname=Last name
logonForm.streetAddress=Street Address
logonForm.city=City
logonForm.state=State
logonForm.zip=Zip Code
logonForm.country=Country
logonForm.phone=Telephone
logonForm.degree_type=Degree Type(s)
logonForm.major=Majoring Field(s)
logonForm.cumulativeGPA=Cumulative GPA
logonForm.collegeID=College ID
logonForm.permissionID=Permission ID
logonForm.last_logon_date=Last Logon Date
heading.logon=<H2>Enter your user information</H2>
title.logon=Logon Screen
error.invalid.logon=<li>The User ID and/or Password are invalid. Please try again.</li>
errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul>
title.mainmenu=Welcome
heading.mainmenu=<H1>Welcome!</H1>
label.userType=<H2>You are authorized to use this system as a</H2>
errors.prefix=<LI>
errors.suffix=</LI>
errors.footer=</UL><hr>
errors.minlength={0} can not be less than {1} characters.
errors.required={0} is required.
errors.date={0} is not a date.
errors.double={0} must be an double.
errors.email={0} is an invalid e-mail address.Here is my LogonView.jsp:
<!-- LogonView.jsp -->
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<html>
<head><title><bean:message key="title.logon" /></title>
<html:javascript formName="logon" />
</head>
<body bgcolor="white">
<bean:message key="heading.logon" />
<html:errors />
<html:form action="/logon" onsubmit="return validateLogon(this)" >
<table border="0" width="100%">
    <tr>
        <th aligh="right">
           <bean:message key="logonForm.userId" />:
        </th>
        <td align="left">
        <html:text property="userId" size="10" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
           <bean:message key="logonForm.password" />:
        </th>
        <td align="left">
        <html:password property="password" size="10" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
           <bean:message key="logonForm.confirm_password" />:
        </th>
        <td align="left">
        <html:password property="confirm_password" size="10" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.emailAddress" />:
        </th>
        <td align="left">
        <html:text property="emailAddress" size="25" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.hear_about_us" />:
        </th>
        <td align="left">
           <html:text property="hear_about_us" size="25" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
           <bean:message key="logonForm.subscriber" />:
        </th>
        <td align="left">
           <html:checkbox property="subscriber" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.send_updates" />:
        </th>
        <td align="left">
           <html:checkbox property="send_updates" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
           <bean:message key="logonForm.fname" />:
        </th>
        <td align="left">
        <html:text property="fname" size="15" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.lname" />:
        </th>
        <td align="left">
        <html:text property="lname" size="15" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.streetAddress" />:
        </th>
        <td align="left">
        <html:text property="streetAddress" size="50" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.city" />:
        </th>
        <td align="left">
        <html:text property="city" size="15" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.state" />:
        </th>
        <td align="left">
           <html:text property="state" size="25" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.zip" />:
        </th>
        <td align="left">
        <html:text property="zip" size="10" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.country" />:
        </th>
        <td align="left">
        <html:text property="country" size="25" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.phone" />:
        </th>
        <td align="left">
        <html:text property="phone" size="15" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.degree_type" />:
        </th>
        <td align="left">
        <html:textarea property="degree_type" rows="9" cols="90" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.major" />:
        </th>
        <td align="left">
        <html:text property="major" size="15" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.cumulativeGPA" />:
        </th>
        <td align="left">
        <html:text property="cumulativeGPA" size="4" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.collegeID" />:
        </th>
        <td align="left">
        <html:text property="collegeID" size="5" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.permissionID" />:
        </th>
        <td align="left">
        <html:text property="permissionID" size="5" />
     </td>
    </tr>
    <tr>
        <th aligh="right">
        <bean:message key="logonForm.last_logon_date" />:
        </th>
        <td align="left">
        <html:text property="last_logon_date" size="15" />
     </td>
    </tr>
    <tr>
        <td align="right">
            <html:submit>
                <bean:message key="button.submit" />
            </html:submit>
        </td>
        <td align="right">
            <html:reset>
                <bean:message key="button.reset" />
            </html:reset>
        </td>
    </tr>
</table>
</html:form>
</body>
</html>

Any feedback. Your help would be much appreciated.

Similar Messages

  • Jsp files displaying a blank page

    Hi I have integrated tomcat5 and Apache 2 using mod_jk in Fedora 7.
    I had no problem starting Tomcat5 and Apache 2 server. The problem is when I tried to browse my
    jsp file.. it display a blank page. I try to see the log files but there is no error related to this.
    here is my jsp file..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" errorPage="" %>
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Hello World JSP</title>
    </head>
    <body>
    <h1><% out.println(" Hello world JSP!"); %></h1>
    </body>
    </html>please help me.. Thanks in advance for your help..

    here is my new HelloWorld.jsp..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" errorPage="" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Hello World JSP</title>
    </head>
    <body>
    <h1><% out.println(" Hello world JSP!"); %></h1>
    </body>
    </html>
    it still display a blank page.
    here is my context path..declared in server.xml
    <Context path="" docBase="/var/www/myweb" debug="0" reloadable="true"/>
    My HelloWorld.jsp is save in /var/www/myweb
    what is the problem? thanks..

  • BI 7.0 Analysis Authorization issue: some reports displaying a blank page.

    Hi All,
    This is regarding BI 7.0 Analysis Authorization issue.
    Overview:
    we have restricted some queries at infoobject level.
    Issue:
    a. For some of the queries, we can see the selection screen but when we try to execute the query by clicking on the execute button (Queries WAD) we get a blank page, meaning nothing is displayed on the output (white/Blank screen).
    b. When we execute the same query through RSRT, we get a message which says "Disconnecting from BW server..".
    c. Let me explain further on this. Basically we are doing this in order to have limited access to Auditors at the client side. At the same time normal users should not get impacted due to this, hence we created two roles. One for normal users and other for Auditors.
    d.  Now the thing is that we execute the same report with normal user ID's the report executes properly and displays the output. it does not show the blank page.
    e. But when we execute the same report with Auditors ID then we get a blank page.
    Any idea why this is so?

    Hi Neha,
    I tried the below also,
    GL Acnt
    I EQ 0000134010
    I EQ :
    but still it didn't work.
    No Infoobject is missing in Authorization Object.
    For your point, "rsecadmin - > analysis -> execute as -> check for the desired user & analyze the log" it didnu2019t allow me to analyze, since as soon as click on execute button a pop-up comes up saying "Disconnecting from the BW server..."
    As mentioned earlier also it is giving me the below message,
    ""I>> Row: 103 Inc: AUTHORITY_02 Prog: CL_RSR_RRK0_AUTHORIZATION                                                                       RS_EXCEPTION        301CL_RSR_RRK0_AUTHORIZATION                         AUTHORITY_02"
    Kindly suggest, since this is a show-stopper for us!
    Thanks,
    Ishdeep Kohli.

  • CF 8 not rendering page, displays a blank page

    Okay I have something that started to happen today and it
    seems others have seen it happening on IE. I try to go to a page on
    our site it doesn't display anything, just a blank page. If you hit
    refresh it works fine and continues to work as it should until you
    close the browser. If you close the browser and try to access the
    page again you will get a blank screen, refresh fixes it. Nothing
    in the code or on the server has changed since yesterday. But we
    have had similar reports of this happening to users hitting a
    submit button and getting a blank screen. This however is the first
    time I have been able to replicate the issue. I have tried this
    issue on IE, Firefox, and Flock and all give the same issue. Also
    there are no errors and any log files. Anyone know what may be
    causing this???

    We resolved our problem by adding memory to our server. We
    had a number of strange problems including the one noted above that
    were only resolved by restarting CF services regularly. The
    problems all went away after we noticed our server's physical
    memory was insufficient and increased it substantially. The
    application we have running on this server is pretty memory
    intensive (storing a lot of very large queries in APPLICATION scope
    variables).

  • Safari displays white blank page

    I'm using OSX 10.8.5 on Macbook pro Intel Core 2 Duo.
    Since almost a year ago, I didn't see pages in Safari, it display white blank screen but it has contents.
    Safari loaded contents, but it didn't render contents into page.
    I found that, Safari update entry of 'com.apple.afari.plist' file in the Preference folder and it cause Safari fail to render pages.
    When Safari start, it changes
              <key>com.apple.Safari.ContentPageGroupIdentifier.WebKit2AcceleratedCompositingEnabled</key>
    entry to
    <false/>
    and next time I start Safari, white blank page displayed.
    If I change
              <key>com.apple.Safari.ContentPageGroupIdentifier.WebKit2AcceleratedCompositingEnabled</key>
    entry to
    <true/>
    and start Safari, I can see pages well, but I can't stop Safari to update the value to false.
    Any solutions to solve this issue ?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, or by corruption of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain models.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Why does the website display white blank pages only?

    Hello:
    I use Firefox 13.0.1 on a Mac OS X, and I often go to www.wenxuecity.com for news. But, in the past couple of days, when I type in that address in the URL window, only a white blank page shows up. Nothing else! If I use Google to find direct links to a few news items at that website and click the links, I also get white blank pages. No error message or anything else.
    Could you tell what is going on here?
    Many thanks!

    Is the page completely blank or is there still some content visible?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    You can also try to check the Net log in the Web Console (Web Developer > Web Console;Cmd+Shift+K) to see if that bring up errors about loading files.<br />
    You can double click a net log entry to see more details.
    *https://developer.mozilla.org/en/Tools/Web_Console
    *https://developer.mozilla.org/en/Using_the_Web_Console
    You need to reload web page(s) and bypass the cache to refresh all files with the Web Console panel open.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)

  • Firefox opens, then it loads, then it displays a blank page , and then disappears????

    Firefox opens, then loads a blank page with prior tabs, then after 5 seconds it disappears off the screen! Poof never to be seen again!

    Firefox opens, then loads a blank page with prior tabs, then after 5 seconds it disappears off the screen! Poof never to be seen again!

  • My home page is set to google & is always open, after i open new tabs to other web pages & then go back to the original home page tab it is frozen or if not frozen you try to do a search & it displays nothing (blank page white background)

    If the above problem occurs I can open a new home(ie google) in a new tab & it works every time.
    When original home page isnt frozen & will let you do a google search but displays blank you cannot return to the original page (ie using back button or home button).
    When the page is frozen you can do nothing with it.

    # Click the orange Firefox button, then select Options to open the options window
    # Go to the General panel
    #Change the setting "When Firefox starts" to "Show my home page"

  • 10.1.2 Displays grey, blank page (Fixed with 10.1.3)

    Adobe 10.1.2 I have the blank grey screen
    show large images however is already checked...
    what else could cause this?/

    Here's a story of how I got this working... kind of a mystery still, but that's what we have to deal with all the time, isn't it?
    I had the same problem, installing 10.1.2 caused a blank screen, or a stuck progress bar, when loading PDFs in IE9. The PDFs in question are dynamically generated with IText, embedded in html via a <object> tag, and served up via Jboss (Tomcat) 5.1.0.  There were no issues in Firefox.  We also had several users report similar issues with IE8.
    What seemed to fix it (at least on my local environment) for me was to, add a Content-Length header with the file size, remove the compressableMimeType="application/pdf" in the server configuration.
    However, on a different environment, it still wasn't working (grey screen, stuck progress bar in IE), so I set a debug point.  The download method was being called 3 times - I had several Cache-Control headers set in an attempt to prevent caching.  Removing these headers seemed to help, now the download method is being called only once, or sometimes twice.  I found a MS article I found that seemed relevant: http://support.microsoft.com/kb/293792
    Possibly the multiple-request, user-agent='contype' thing with IE is really screwing up the new version of the plug-in.  I read the MS article, added a check for user-agent='contype' and returning only the Content-Type header instead of the whole document -- seemed to improve things.
    However several PDF form elements were still screwed up - missing submit button, combo box fields with missing options.
    Latest update:  This combo of configurations seems to be working on both firefox and IE9 with reader 10.1.12:
    1. removed content-length, it was causing other problems
    2. added check for user-agent='contype' and returning only headers
    3. removed cach-control headers
    4. compressableMimeType = 'application/pdf' is enabled in Tomcat config
    My hunch is #2 was the real problem, would need further testing to know for sure.

  • Safari displays blank pages for some sites

    MBP 15 inch. mid-2014
    OS X Yosemite 10.10.1
    Safari Version 8.0.2 (10600.2.5)
    Some pages, sometimes on Apple's on support site simply display as blank pages. The same page displays perfectly on Firefox or Chrome. What is this strange behaviour? For example, this link: http://support.apple.com/kb/PH15327 shows a completely blank page. See: http://i.imgur.com/PRPWgus.png
    The same site displays without problem in Firefox:
    http://i.imgur.com/82lEuaF.png
    I have no extensions installed in Safari. JS is enabled, all settings are default. This is a fresh and clean install of Yosemite. No anti-virus installed.
    What's going on? Any pointers will be appreciated. Thanks.

    As an aside, and I don't have specific data for this, but Safari does seem to load some other pages so slowly, it's annoying to the extreme.
    How can I debug this? (The blank page issue.)

  • Updated Firefox 18.0.2: Homepage and all other websites will not load anymore, tab remains a blank page. I tried resetting, checking firewall, to no avail.

    When I start firefox, instead of loading the homepage, firefox displays a blank page with "New Tab" as its title. If I try to open a new tab and try to enter ANY website it will show it's loading for a second, stop, and remain at the same situation, a blank page with "New Tab" as its title. Other browsers work perfectly fine.
    I tried running firefox in safe mode, disabling all plug-ins and extensions, checking my firewall, resetting firefox... all to no avail. Please help!

    hello, when this is happening immediately after an update, then it's almost certainly your firewall that is blocking the new version. please try to remove all rules for firefox from your firewall settings and let it detect the new version again. you may also want to try restarting your pc once...
    [[Fix problems connecting to websites after updating Firefox]]

  • Had multiple problems with Firefox 4..went back to 3.6.16. Now always opens to a blank page rather than my chosen home page, no matter how many time sI have set it to open on my homepage. Running Windows Vista. Any suggestions?

    $ was totally jacked up, no tabs, no history, no buttons that worked and always opened on a blank page. I saved my bookmarks, uninstalled 4, reinstalled 3.6.16 and all my problems went away except for the oening on a blank page. As soon as I hit home, it opens.
    Tnx,
    JFN3

    i ran into a simuler problem using firefox 4 with win 7. browser would not display web address and when you open the browser it would display a blank page. also back, forward, and refresh button's where grayed out and could not click hem.
    after checking plugins i was able to get it working with disableing java deployment toolkit.

  • How do I make new tabs default to my home page instead of a blank page?

    My home page displays when I launch Firefox, but if I click the icon to open a new tab, the new tab displays a blank page. I want it to default to my home page.

    Try this excellent add on: [https://addons.mozilla.org/en-US/firefox/addon/newtaburl/ NewTabURL]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • When I click on a tab it comes up blank. Before it came up with website, how do I correct it so it's not a blank page?

    I just want to be able to click on on the tab and have a search engine come up instead of a blank page. It used to do that but now it doesn't. How can I correct the problem???
    Thanks.

    The default action in Firefox when you open a new tab is to display a blank page. Many extensions can change that action, try this one.
    NewTabURL extension <br />
    https://addons.mozilla.org/firefox/2221/

  • Blank Page, Really Stuck, Please Help

    Hi all,
    I've got a Report that I'm running from a client application to a job server that produces a Crystal Report. When I run this report against a local server on my machine the report completes without issue but when I run it against a different server on a different machine the report displays 3 blank pages in the middle of the data. I'm using the same database, same data, same report file. This occurs ONLY when running this report against the remote server and is unconcerned with any of the above listed conditions.
    -I'm using Crystal Reports 11.5
    Visual Studio 2008
    -My local machine is 32 bit win7, the remote server is 32 Windows Server 2008.
    If anyone could give me a hand at all I would be EXTREMELY gracious.
    Thanks,
    Ryan

    Hey guys, thanks a ton for the responses.
    I think I'm getting close. It has something to do with "Keep Together" either on the columns in a crosstab or on a couple sections within the report.
    What's really still blowing my mind here is how it's different on the 64 bit machine. The client application is previewing the reports in adobe reader so I don't think the print drivers should be relevant. I did go ahead and update to Adobe Reader 10 on both machines and it had no effect but playing with these "keep together" settings seems to work .
    I'll check back with final results later.
    Thanks again,
    Ryan

Maybe you are looking for

  • PrevFrame() buttons in a swf file inserted in html not working in Firefox

    Hi! I have a very weird problem. I have created a photo gallery using AS3 in Flash CS5. I have used prevFrame() and nextFrame() actions for "previous photo" and "next photo" buttons as well as for "previous thumbnails" and "next thumbnails" buttons.

  • Opening screen in Photoshop Elements 7

    Hi everyone, out of the blue the following has happened in my Photoshop Elements 7...When I click on the desktop ico to open Elements the usuall welcome/opening sccreen appears ( giving the option  of Organize, edit, share, create). To the left there

  • Acrobat 9 will not accept my serial number

    I recently had some computer trouble and was forced to re-install Adobe CS4 Master Collection on a Windows PC running XP. I had a lot of trouble with the re-install and had to uninstall CS4 several times. I also had to update the Windows add/remove p

  • SD card doesn't eject

    When I load pictures into Aperture, everything goes normally. When complete I get the dialog to keep or delete photos. Normally I go with delete. There is a check box to eject the SD card. it used to eject the volume (as in remove the NO NAME icon fr

  • BC Tester throwing error

    Hi All, I am trying to run the ADF BC Tester and it comes up with an error message saying (oracle.jbo.jbotester.ErrorHandler$ExceptionWrapper) JBO-29000: Unexpected exception caught: java.lang.NoClassDefFoundError, msg=oracle/jbo/http/HttpSessionCook