Custom Help Message Text on user/login.jsp

Hello,
I am trying to get some custom text to appear in the help box associated with the user/login.jsp page. I did some digging around in the docs and looked at the includes/helpServer.jsp file. I found the <$WSHOME>/help/html/help/en_US/com/waveset/msgcat/help/user/login-help.html file.
I replaced this file with our own custom version. I can not get our custom version to load. The old version still continues to load. I cleared out all the cache options I could find in the debug pages, then rebooted the server. Still no luck. Does anyone know how I can change the contents of this help message?
Thanks,
Jim

Here's a solution that works too. Application server is: Tomcat 5.0.28. Identity Manger 7.0 Running on a Windows 2003 server and a SQL Server dbms.
This is not the ideal solution because upgrades (i.e. new releases from Sun) will over write the changes.
This example over writes the HELP button content on the End User Menu.
This approach should work for all App servers however the folder structure will vary.
1. Stop Tomcat
2. Clear cache. (i.e. delete the localhost folder and its contents found in C:\tomcat\work\Catalina\localhost).
3. Create the following folder structure C:\com\waveset\msgcat\help\user
4. Copy the original html file from: C:\tomcat\webapps\wavex\help\html\help\en_US\com\waveset\msgcat\help\user to C:\com\waveset\msgcat\help\user. In this example main-help.html is the file being copied.
5. Make your changes to C:\com\waveset\msgcat\help\user\main-help.html
6. Open C:\tomcat\webapps\wavex\WEB-INF\lib\idm.jar with WinZip and add file C:\com\waveset\msgcat\help\user\main-help.html.
7. Close WinZip
7b. If you want you can check your results.
7c. Open C:\tomcat\webapps\wavex\WEB-INF\lib\idm.jar using WinZip.
7d. Find main-help.html and open it using your favorite web browser to see if your changes have been included.
7e. Hope it worked for you.
8. Start Tomcat
9. Test Change
9a. Log into Identity Manger's end user interface.
9b. Click the HELP button to see your changes.
Good Luck.

Similar Messages

  • SUN IDM 8.1 - /user/login.jsp

    Hi
    Can anyone pls let me know from where is the Login button and the Forgot Password? link is coming from in the /idm/user/login.jsp ?
    The reason i want to know is because i want to add additional login when the user press the Login button or cliks the Forgot Password? link.
    Secondly. I willl like to know <jsp:useBean id="form" scope="page" class="com.waveset.ui.web.common.LoginForm"/> from where i can see all the methods in the LoginForm class.
    Thanks

    I don't think you can edit the login . as they are generated by class files.
    but another thing to explore might be the user/altlogin.jsp & user/altloginHandler.jsp

  • Can we show custom error message if the user fail to log in MII system.

    Hi,
    Is it possible to show a custom error message when a log in is failed because of access restrictions?
    I am using xMII version 11.5
    Thanks
    Regards,
    Neha Maheshwari

    Since you are on 11.5, it is possible to make edits to some of the system jsp pages, etc. but it would NOT be my recommendation to do so.  Since the NetWeaver versions for MII 12.0 and beyond use UME for the login instead of the LHSecurity engine, this would be a very short term change.
    What specific changes would you like to make, the login page messages, query result messages, applet messages?

  • Can not assign custom access level with a user login

    Hi,
    I am using Business objects XiR3. When I am loging in with a user having full control access and then I select a folder added a principal from user sercurity and when I am trying to add custom access level it gave me error
    An error occurred at the server during security batch commit: Request 0 of type 38 failed with server error : You do not have sufficient rights to make the requested security changes.
    it allow me to give access to standard access levels. also when I tried to assign custom access level with administrator user, it assigns custom access level to a principal without error.
    Can any body tell me what I am doing wrong?
    Thanks in advance,
    Rajendra

    Hi Rajendra,
    You have to make sure that the user group has the right 'Use access level for security assignment' assigned as granted on the access level you created. You can find this right under System / Access Level. That should do the trick!
    Hope this helps...
    Martijn van Foeken
    Focuzz BI Services
    http://www.focuzz.nl
    http://nl.linkedin.com/in/martijnvanfoeken
    http://twitter.com/mfoeken

  • Can anyone help me with a user login script on php for Oracle database?

    I have a script which somehow is not working well. Can anyone give a good script (for Oracle database) for user login and validation and change password? I will be grateful
    JJZ

    http://www.oracle.com/technology/pub/articles/deployphp/seliverstov_deployphp.html
    http://www.oracle.com/technology/tech/php/htdocs/php-oracle-tutorial.html

  • Oracle Waveset 8.1.1 patch 1 - /user/login.jsp

    Has anyone else experienced the Log In and Forgot Password? buttons on the End User interface in version Oracle Waveset 8.1.1 patch 1 to be different sizes on the End User Interface? Also can anyone pls let me know from where is the Login button and the Forgot Password? link is coming from so we can fix this.
    Thanks,

    You must first go from Sun IDM 8.1 to Oracle Waveset 8.1.1 - then you can apply the latest patch.

  • Custom Error message in Login Page

    Hi,
    I am using MVC framework for my project. I want to display custom error messages to the user in the Login page(JSP).
    For eg: invalid password, password has been expired etc. How do I pass these messages from Java to my login page & display it?

    This is a sample action class for login page in struts : -
    package xxx;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import LoginForm.java;
    public class Action extends org.apache.struts.action.Action
    public ActionForward execute(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response)
    throws Exception {
    ActionErrors errors = new ActionErrors();
    ActionForward forward = new ActionForward(); // return value
    String username;
    String password;
    try {
    LoginForm lf = new LoginForm;
    username =lf.getUserName();
    password = lf.getPassword();
    if( username== null)
    forward=mapping.getInputForward();
    if( (username == "admin" ) && ( password="admin"))
    // do something here
    } catch (Exception e) {
    // Report the error using the appropriate name and ID.
    //Errors will be caught here.
    errors.add("name", new ActionError("id"));
    // If a message is required, save the specified key(s)
    // into the request for use by the <struts:errors> tag.
    if (!errors.isEmpty()) {
    saveErrors(request, errors);
    // Forward control to the appropriate 'failure' URI (change name as desired)
    //     forward = mapping.findForward("failure");
    } else {
    // Forward control to the appropriate 'sucuess' URI (change name as desired)
    forward = mapping.findForward("success");
    // Finish with
    return (forward);
    You need to have LoginForm.java as Model and Login.jsp as View . Action.java will be your controller.

  • Anonymous User Login

    Hi All,
    I have an issue with 'Forgot Password' button in the end user login. When a Forgot Password button is clicked, a Question Login workflow will trigger (I think I am right?) .Now I would like to customize the 'Question Login' workflow as per my requirements, but unfortunately I am not, I modified the system configuration object, but still with no luck I am not able to customize that workflow.
    So I thought of using anonymous login page and I can launch my own workflow as per my requirements. I have registered my workflow at 'anonymous end user tasks'. and I try to launch the anonymous login page using the url 'http://localhost:8080/idm/user/anonlogin.jsp'. I am getting the following errors.
    An unrecoverable error has occurred processing the request. Contact your system administrator.
    Syslog ID = LG-1111-024933.
    Only the Reset Administrator may access this view.
    I don't know, where I am doing wrong. For the first time I am trying to use anonymous login page.
    Did anybody faced similar problems?
    Can anybody please post some points, like what is the procedure to use a Anonymous login page?
    Thanks in advance

    Well, first, I visited Configure > User Interface, and enabled Anonymous Enrollment.
    Next, I went to user/login.jsp, and saw "Request Account". I clicked on it, and up popped the user/anonEnrollment.jsp page. (I was looking at using this for one of our requirements; turned out I didn't need it, and did something else).
    Anyway, a quick check with Live HTTP Headers for Firefox shows that the post was directly to anonEnrollment.jsp; anonEnrollment.jsp has this at the top:
    String anonUser = LoginHelper.getAnonymousUser(session);
    if (anonUser == null) {
        String url = "user/login.jsp";
        LoginHelper.redirect(req, out, url);
        return;
    }Not a huge amount of help. However, it does establish that there is an "getAnonymousUser" method, which is documented to return "the currently registered anonymous user name if any". And reading the Workflows, Forms, and Views manual, it states that the anonymous main page is for "... when a user who does not have a Identity Manager account logs in, an Identity Manager user object is created ...". Basically, if you're using pass through auth, and have a source system that will let a user authenticate, they can then set themselves up.
    So, I visited "anonmain.jsp" after clearing all cookies, and up popped "anonlogin.jsp", with a login box. I entered "anonymous", and lo!, I was logged in, and saw the anonymous user menu. In other words, I was "provisionally" logged in with an account that doesn't really exist (anonymous).
    However, I had to provide that extra bit of information, namely, my "fake" user name of "anonymous". I don't know how you'd do that without JSP customization.
    Basically, "anonymous" means "has a username, but we don't have an account", rather than "truely anonymous" as near as I can tell. The system will do it for you in the case of "Request Account" (the generated login page has some Javascript code to redirect to anonEnrollment.jsp), but it doesn't seem to be an exposed API.
    You might get somewhere with customizing the "Request Account" string in the messages catalogue, and then customizing the anonymous enrollment workflow.

  • Simple User Login

    I am having problems getting my user login jsp page to connect to my MySQL database.
    Can anyone have a look at the following JSP code to see if it is right?
    <html>
    <head>
    <title>GCMB User Login</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FF9900">
    <p align="left"><img src="GCDMsgLogo.gif" width="564" height="70"></p>
    <table width="372" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="138"> </td>
    <td colspan="2"><font face="Arial"><b> User Login:</b></font></td>
    </tr>
    <tr>
    <td width="138"><font face="Arial">Username:</font></td>
    <td colspan="2">
    <input type="text" name="textfield2">
    </td>
    </tr>
    <tr>
    <td width="138"><font face="Arial">Password:</font></td>
    <td colspan="2">
    <input type="text" name="textfield3">
    </td>
    </tr>
    <tr>
    <td width="138"> </td>
    <td colspan="2">
    <input type="submit" name="Submit" value="Login">
    </td>
    </tr>
    <tr>
    <td width="138"> </td>
    <td colspan="2"> </td>
    </tr>
    </table>
    <p align="left"> </p>
    <table width="772" border="0" cellspacing="0" cellpadding="0" height="72">
    <tr>
    <td colspan="2" height="7"><img src="bar.gif" width="774" height="3"></td>
    </tr>
    <tr>
    <td width="568" height="30">
    <p> <img src="GCDHome.gif" width="115" height="24" border="0"><img src="Email.gif" width="115" height="24"></p>
    </td>
    <td width="206" height="30">
    <div align="right"></div>
    </td>
    </tr>
    <tr>
    <td colspan="2"><font face="Times New Roman, Times, serif" size="2">Griffith
    College Dublin, South Circular Road, Dublin 8, Ireland. Tel/Fax: +353 1
    415 0400/ +353 1 454 9265 <br>
    email: [email protected] website:
    www.gcd.ie </font><font face="Times New Roman, Times, serif" size="2">�
    2002 Design: Niall Magner</font></td>
    </tr>
    </table>
    <p align="left"> </p>
    <p> </p>
    <p>  </p>
    </body>
    </html>
    Cheers,
    Niall

    Hi, Does this look right? Is this what you were talking about in your reply?
    <HTML><HEAD><TITLE>GCMB User Login</TITLE>
    <%@ page import="javax.servlet.*" %>
    <%@ page import="javax.servlet.http.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.io.*" %>
    <%-- connection to database--%>
    <%
    String connectionURL = "jdbc:mysql://host:3306/databasename?user=username&password=passwordUsedforDatabase";
    Connection connection = null;
    Statement statement = null;
    ResultSet rs = null;
    ResultSet rs2 = null;
    %><% Class.forName("org.gjt.mm.mysql.Driver").newInstance(); connection = DriverManager.getConnection(connectionURL,
    "", ""); statement = connection.createStatement();
    <META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
    <META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
    <BODY bgColor=#ff9900>
    <P align=left><IMG height=70 src="Login_files/GCDMsgLogo.gif" width=564></P>
    <form method="post" action="">
    <table cellspacing=0 cellpadding=0 width=372 border=0>
    <tbody>
    <tr>
    <td width=138> </td>
    <td colspan=2><font face=Arial><b>User Login:</b></font></td>
    </tr>
    <tr>
    <td width=138><font face=Arial>Username:</font></td>
    <td colspan=2>
    <input name=textfield2>
    </td>
    </tr>
    <tr>
    <td width=138><font face=Arial>Password:</font></td>
    <td colspan=2>
    <input name=textfield3>
    </td>
    </tr>
    <tr>
    <td width=138> </td>
    <td colspan=2>
    <input type=submit value=Login name=Submit>
    </td>
    </tr>
    <tr>
    <td width=138> </td>
    <td colspan=2> </td>
    </tr>
    </tbody>
    </table>
    </form>
    <P align=left> </P>
    <TABLE height=72 cellSpacing=0 cellPadding=0 width=772 border=0>
    <TBODY>
    <TR>
    <TD colSpan=2 height=7><IMG height=3 src="Login_files/bar.gif"
    width=774></TD></TR>
    <TR>
    <TD width=568 height=30>
    <P><IMG height=24
    src="Login_files/GCDHome.gif" width=115 border=0><IMG height=24
    src="Login_files/Email.gif" width=115></P></TD>
    <TD width=206 height=30>
    <DIV align=right></DIV></TD></TR>
    <TR>
    <TD colSpan=2><FONT face="Times New Roman, Times, serif" size=2>Griffith
    College Dublin, South Circular Road, Dublin 8, Ireland. Tel/Fax: +353 1
    415 0400/ +353 1 454 9265 <BR>email: <A
    href="mailto:[email protected]">[email protected]</A> website: <A
    href="http://www.gcd.ie/">http://www.gcd.ie/</A> </FONT><FONT
    face="Times New Roman, Times, serif" size=2>� 2002 Design: Niall
    Magner</FONT></TD></TR></TBODY></TABLE>
    <P align=left> </P>
    <P> </P>
    <P> </P></BODY></HTML>

  • Custom error messages OIM11g

    Hi,
    Can anyone let me know how to throw custom error messages while creating users for custom fields / attributes in OIM 11g?
    In 9i, we can attach custom error adapter in Data Object information of Users form. But in 11g, this feature is not available.
    - Kalyan

    I didn't tried this but you can check this link
    Re: How to use custom error message definition in OIM 11g?

  • Where can i find the user login form

    Hi everyone
    Do you know the name of the end user login form? I want to add a button on it but i don't know where i can find it.
    Somebody has an idea?

    Thanks everyone
    I found the solution in the login.jsp (idm/user/login.jsp). I will just add a link which will execute a workflow.
    I needed to have the number of failed login attemps. So I uses this code in the login JSP
    com.waveset.server.Server _server = com.waveset.server.Server.getServer();
        com.waveset.repository.Repository _repo = _server.getRepository();
        com.waveset.object.WSUser uo = (com.waveset.object.WSUser)_repo.getIfExists(com.waveset.object.Type.USER, "test");
        int nb = 0;
        if (uo != null ) {
            com.waveset.object.ObjectCache _serverCache = _server.getCache();
            uo.setCache(_serverCache);
            nb = uo.getFailedPasswordLoginAttemptsCount();
            %>
                The user is not null <BR>
                nb == <%=nb %>
            <%
        else{
            %>the user is null <BR><%
        }good luck.

  • I need to copy and paste as I am loading content onto my website through an online user panel, I dont have the know how to start re-writing coding as the help message stated when I try to copy some text, is there a simple solution to this task?

    I really need to copy and paste as I am uploading content onto my website through an online user panel, I dont have the know how to start re-writing coding as the help message stated when I try to copy some text, is there a simple solution to this everyday type task? Thanks in advance. Mark in Cheshire.

    kaymarhar wrote:
    Because it took me AGES to manually configure the text to wrap around my little pig friend there and I would be so bummed if I had to do it again
    Next time, you can use the Text Wrap function, so you don't need to manually wrap the text.

  • How do I remove or unregister my iphone. Changed to Samsung s4 and now cannot receive text messages from iphone users. Pls help

    How do I remove or unregister my iphone. Changed to Samsung s4 and now cannot receive text messages from iphone users. Pls help

    http://support.apple.com/kb/ts5185

  • Writing Login.jsp and authenticating a user who have stored in MySql DB

    Hi Friends,
    My project requirement is: Need to write a login page must send the request to servlet is the user and password avail in mysql db, if yes servlet should forward the home page else error message. Tools i need to use is IDE=eclipse, Server = tomcat, database = MySql
    Here is source:
    pls tell me where i m wrong.
    Login.jsp
    <%@ page language="java" %>
    <html>
    <head>
    <title>Login Page</title>
    <script language = "Javascript">
    function Validate(){
    var user=document.frm.user
    var pass=document.frm.pass
    if ((user.value==null)||(user.value=="")){
    alert("Please Enter user name")
    user.focus()
    return false
    if ((pass.value==null)||(pass.value=="")){
    alert("Please Enter password")
    pass.focus()
    return false
    return true
    </script>
    </head>
    <body>
    <h1>Login
    <br>
    </h1>
    <form name="frm" action="/LoginAuthentication" method="Post" onSubmit="return Validate()" >
    Name:
    <input type="text" name="user" value=""/><br>
    Password:<input type="password" name="pass" value=""/><br>
    <br>
    <input type="submit" value="Login" />
    <input type="reset" value="forgot Password" />
    </form>
    </body>
    </html>
    Servlet Code:
    LoginAuthentication.java
    import java.io.*;
    import java.util.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.ServletContext;
    import javax.servlet.RequestDispatcher;
    import javax.servlet.http.HttpSession;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.util.List;
    import java.util.ArrayList;
    public class LoginAuthentication extends HttpServlet{
    private ServletConfig config;
    public void init(ServletConfig config)
    throws ServletException{
    this.config=config;
    //public void init() {
    // Normally you would load the prices from a database.
    //ServletContext ctx = getServletContext();
    // RequestDispatcher dispatcher = ctx.getRequestDispatcher("/HomePage.jsp");
    //dispatcher.forward(req, res);
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException,IOException{
    PrintWriter out = response.getWriter();
    String connectionURL = "jdbc:mysql://127.0.0.1/SRAT";
    //String connectionURL = "jdbc:mysql://192.168.10.59/SRAT";
    //127.0.0.1
    //http://localhost:3306/mysql
    Connection connection=null;
    ResultSet rs;
    String userName=new String("");
    String passwrd=new String("");
    response.setContentType("text/html");
    try {
    // Load the database driver
    Class.forName("com.mysql.jdbc.Driver");
    // Get a Connection to the database
    connection = DriverManager.getConnection(connectionURL, "admin", "admin");
    //Add the data into the database
    String sql = "select user,password from login";
    Statement s = connection.createStatement();
    s.executeQuery (sql);
    rs = s.getResultSet();
    while (rs.next ()){
    userName=rs.getString("user");
    passwrd=rs.getString("password");
    rs.close ();
    s.close ();
    }catch(Exception e){
    System.out.println("Exception is ;"+e);
    if(userName.equals(request.getParameter("user"))
    && passwrd.equals(request.getParameter("pass"))){
    out.println("WELCOME "+userName);
    else{
    out.println("Please enter correct username and password");
    out.println("<a href='Login.jsp'><br>Login again</a>");
    Deployment Descriptor for TOMCAT
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>
    SRAT</display-name>
    <welcome-file-list>
    <welcome-file>login.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
    <servlet-name>LoginAuthentication</servlet-name>
    <servlet-class>LoginAuthentication</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>LoginAuthentication</servlet-name>
    <url-pattern>/LoginAuthentication</url-pattern>
    </servlet-mapping>
    </web-app>
    PLS HELP ME.
    S. Udaya Chandrika

    I too have used the same code but its giving the following error:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Wrapper cannot find servlet class Validation or a class it depends on
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         java.lang.Thread.run(Unknown Source)
    root cause
    java.lang.ClassNotFoundException: Validation
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
         org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         java.lang.Thread.run(Unknown Source)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.
    Apache Tomcat/6.0.18
    Please some one help??

  • Notification message box of Hyperion Planning when user login

    Can we have a notification message box popup when user login Hyperion Planning or Workspace application? We would like to communicate to the end users by the system instead of just email because some end users may not check the email so frequently. It is the best to notify end users about any latest changes e.g. budget rate, etc when they login the system to check data or print reports.
    We noticed that there is a broadcast message feature but only limit to those users already online. And the message will not shown when there are some users login later. We would like to have some notice board like message instead of instant messaging.
    The online help of "broadcast message" feature:
    "Use broadcast messaging to communicate a text message to all Planning users currently logged on to an application. For example, you can send messages about system availability or periodic maintenance. You should also send broadcast messages to request that users log out before upgrading or migrating applications.
    You can send broadcast messages using the Web client or a command line utility. If you send them using the Web, they are sent to users of your current application. If you send them using the command line, you can specify any application, without being logged on to it. You can also schedule messages using standard operating system mechanisms. "
    Thanks in advance!

    I have tried the above step and it only works when i am in the advanced mode. but when i change to basic mode i can see the forms and still can access without any disturbance. for your help i am pasting the planningcentral.jsp so that you could suggest me something other.
    Thanks in advance...
    the original file :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <%@ include file="Common.jin" %>
    <% nWhichPage = HspConstants.PLANNING_CENTRAL;
    String redirectString = request.getParameter("Redirect");
    String mainFrameContentURL = (String)session.getAttribute(HspConstants.SESSION_MAIN_FRAME_CONTENT);
    String mainFrameContent = ((inAdvancedMode) && (mainFrameContentURL != null)) ? mainFrameContentURL : "SelectForm.jsp";
         String queryString = request.getQueryString();
         String mastHeadURL = "BT_Masthead.jsp" + ((queryString != null) ? "?" + queryString : "");
    %>
    <%@ include file="SessionValidate.jin" %>
    <%-- Section for Checking latest CSS version and redirecting to AppSettings.jsp --%>
    <%     if ((HspPlanning != null) && (HspPlanning.isApplicationOwner()))     {
              boolean isHubRegistered = (HspPlanning.getHubServer() != null);
              if ((!isHubRegistered) || (HspPlanning.isUserMigrationReqd())) {
                   inAdvancedMode = true;
                   redirectString = null;
                   mainFrameContent = "AppSettings.jsp?RND=" + Math.random();
    %>
    <%-- End CSS validation section --%>
    <html>
    <head>
    <title><%= HspMsgs.LABEL_WELCOME_TO_HP %></title>
    <%@ include file="PlanningLibraries.jin" %>
    <script language="JavaScript">
    var isPlanningFramework = true;
         var topFrameLoaded = false;
         var taskListViewPaneLoaded = false;
         var processBarLoaded = false;
    </script>
    </head>
    <frameset id="mainframeset" rows="72,19,*" cols="*" frameborder="NO" border="1" framespacing="0">
         <frame src="<%= mastHeadURL %>" name="topFrame" id="topFrame" scrolling="auto" noresize >
         <frame src="BT_ProcessBar.jsp" title="object palette header" id="objPaletteHeader" name="objPaletteHeader" scrolling="no">     
         <frameset id="nestedFrameSet" cols="20%,*" frameborder="NO" border="0" framespacing="0">
    <% if (inAdvancedMode) { %>
         <frame src="LP_ObjectPalette.jsp" id="leftPalette" name="leftPalette" scrolling="no">
         <frame src="<%= (redirectString != null) ? redirectString : mainFrameContent %>" id="mainFrame" name="mainFrame" scrolling="auto">
    <% } else { %>
    <%     int currentTLId = -1;
         HspTaskList thisTL = (HspTaskList)session.getAttribute(HspConstants.SESSION_TASK_LIST);
         if (thisTL != null) thisTL = HspPlanning.getTaskList(thisTL.getId());
         if (thisTL != null) {
              currentTLId = thisTL.getId();
         } else {
         Vector availableTaskLists = null;
         availableTaskLists = HspPlanning.getTaskLists();
         HspObjectPositionComparator hspObjectCompare = new HspObjectPositionComparator();
         HspCSM.sortVector(availableTaskLists, hspObjectCompare);
         if ((availableTaskLists != null) && (availableTaskLists.size() > 0))
              currentTLId = ((HspTaskList)availableTaskLists.firstElement()).getId();
         } %>
         <frame src="LP_ObjectPalette.jsp?TaskList=<%= currentTLId %>" id="leftPalette" name="leftPalette" scrolling="no">     
         <frameset id="wizardFrameSet" name="wizardFrameSet" rows="*,0" frameborder="NO" border="0" framespacing="0">
    <%     if (currentTLId != -1) {
              String wizardFrameContent = "TL_Navigator.jsp?TaskList=" + currentTLId;
              HspTask currentSessionTask = (HspTask)session.getAttribute(HspConstants.SESSION_TASK);
              if (currentSessionTask != null) {
                   wizardFrameContent = "TL_Navigator.jsp?TaskList=" + currentTLId + "&SelectedTask=" + currentSessionTask.getId() + "&ShowWizard=true";
                   mainFrameContent = "TL_Wait.jsp";
              } else {
                   mainFrameContent = "TaskListStatus.jsp?TaskList=" + currentTLId;
              %>          
              <frame src="<%= mainFrameContent %>" id="mainFrame" name="mainFrame" scrolling="auto" noresize>
              <frame src="<%= (redirectString != null) ? redirectString : wizardFrameContent %>" id="wizardFrame" name="wizardFrame" scrolling="NO" noresize>
    <%      } else { %>
              <frame src="<%= (redirectString != null) ? redirectString : "Error.jsp" %>" id="mainFrame" name="mainFrame" scrolling="auto">
    <%      } %>
    <% } %>
         </frameset>
    </frameset>
    <noframes><body>
    </body></noframes>
    </html>

Maybe you are looking for

  • How can I do a manual install of ACR 7.4 in 64-bit Win 7 PSE 11?

    I found detailed instructions on this forum that I think were for  32-bit Win 7 but I'm hoping 64-bit install is different since I followed them and still no success.  I know that 8.1 is supposed to be able to be manually installed and that would be

  • View attached documents?

    I need help viewing attached documents. I can see my MS WORD docx as an attachment on my school's email, but my iPad 2 will not open it... any suggestions? The attachments open on my PC, but I have the iPad for convenience while travelling. If I swit

  • Load Balancing Statistics

    We have a CSS 11050. We mostly use it for load balancing accross multiple web servers. What is the command to see some statistics on how much traffic is sent to each one of the web servers? (Number of bytes, connections...)

  • Video downloads volume 3db lower than Music downloads

    I dont know if this is the proper area for this , but no matter what settings I play with my video downloads from the Music Store are about 3db lower than the music I download ( that is HALF as loud as the other for you non engineers) Pream settings

  • RSS feed no more update

    Hi, I have 2 macs in my home with the same problem. All the rss feed i have bookmarked don't update automatically. When i delete the pref file "com.apple.Syndication.plist", Safari update the rss feeds one times but not all 30 min like i have defined