/* * Copyright (c) 2008 Declarative Engineering LLC. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Declarative Engineering LLC * verson 1 which accompanies this distribution, and is available at * http://declarativeengineering.com/legal/DE_Developer_License_v1.txt */ package com.foundation.web; public interface IWebServerApplicationDefaults { public static final String RESOURCE_NOT_FOUND = "" + "The page cannot be found." + "" + "" + "
" + "

The page cannot be found.

" + "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable." + "
" + "

Please try the following:

" + "
    " + "
  • Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
  • " + "
  • If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
  • " + "
  • Click the Back button to try another link.
  • " + "
" + "

HTTP Error 404 - File or directory not found.

" + "
"; public static final String INVALID_ACCESS = "" + "The page cannot be accessed." + "" + "" + "
" + "

The page cannot be found.

" + "You do not have authorization to access the requested resource." + "
" + "

Please try the following:

" + "
    " + "
  • Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
  • " + "
  • If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
  • " + "
  • Click the Back button to try another link.
  • " + "
" + "

HTTP Error 404 - Invalid access.

" + "
"; public static final String TLS_FAILURE = "" + "Upgrade Your Browser!" + "" + "" + "
" + "

You are unable to access this website.

" + "Please upgrade your browser in order to access this website. Your browser does not support the latest SSL security standards and is unable to access this web content as a direct result. IE 6 is not supported at all. IE 7 & IE 8 are supported if you have the latest patches. All other browsers simply need to be updated to the latest version." + "
" + "

For Internet Explorer

" + "

Please try the following:

" + "
    " + "
  1. Click the Help menu (tap the Alt key if you don't see any menus) and select \"About Internet Explorer\"
  2. " + "
  3. If the version number is 6 you will need to either install Internet Explorer 7 or higher, or you may alternatively install Mozilla Firefox, Chrome, or Safari.
  4. " + "
  5. If the version number is 7 or 8 you will need to run Windows Update from the Start menu (bottom left corner of the screen in most cases - then select All Programs for Vista or Windows 7). You can simply patch the version you have, or upgrade to a newer major version of IE.
  6. " + "
" + "

For Mozilla Firefox

" + "

Go to the Mozilla Firefox website and click the \"Upgrade Your Firefox\" link and follow the instructions.

" + "

If you are still having problems, click on the Tools menu and select \"Options...\", then select the \"Advanced\" button along the top, select the \"Encryption\" tab, and make sure that both \"Use SSL 3.0\" and \"Use TLS 1.0\" are checked.

" + "

For Google Chrome

" + "

Chrome auto updates in the background, but if you are still having problems you can reinstall it: Go to the Google Chrome website and click the \"Download Google Chrome\" link and follow the instructions.

" + "

If you are still having problems, click on the wrench icon on the upper right of the window and select \"Options\", then select the \"Under the Hood\" button along the top, scroll to the bottom, and make sure that \"Use SSL 2.0\" is NOT checked.

" + "

For Apple Safari

" + "

Safari has a built in auto update system, but if you are still having problems you can reinstall it: Go to the Apple Safari website and click the \"Download Now\" link and follow the instructions.

" + "
"; public static final String UPGRADE_FAILED = "Socket upgrade request failed or was rejected."; }//IWebServerApplicationDefaults//