Problems with my login page

My login page works fine the first time anyone tries to login.
I have an error that occurs when i try to login as someone else to my application having just logged of as another user. If i do this i get no error messeage just The page cannot be found which is very stange. However if i get the login attempt worng ie wrong username or password then when i next try to login no matter who it is it works.
I think it is because when a person clicks on the logout url the application still has the username cookie set and just takes the user to the login page. I currenlty use the default logout option in the navigation bar e.g. &LOGOUT_URL. How can i set the logout button to clear all the cached information about the user.
Cheers for any help dan
Message was edited by:
user551484

Dan - That was the correct application ID. You created an after-submit computation on the login page for the application item FSP_AFTER_LOGIN_URL:  SELECT STUDENT_ID
  FROM STUDENTS
  WHERE given_name||' '||family_name = :P101_USERNAME
  AND password = :P101_PASSWORD;So when a username from the login form did not match any rows in your students table, e.g., username: joe townsend, no value would be assigned to FSP_AFTER_LOGIN_URL. But if you typed the case-correct version of the username as it exists in the students table (2 columns), e.g., Joe Townsend, the row would be found and the student ID (2) would be assigned to the item.
The value 1 or 2 for FSP_AFTER_LOGIN_URL causes the page not found error. Looks like you want the after-login page to be different for different users. You can store a relative URL starting with "f?p=..." into that item if you use the current session ID but you should not use a computation. Instead use the authentication scheme's post-authentication process to assign a value to the item, e.g., FSP_AFTER_LOGIN_URL := 'f?p=&APP_ID.:&YOUR_CHOSEN_PAGE.:&APP_SESSION.'; .
I disabled that computation.
Scott

Similar Messages

  • Problems with the login page in Portal release 2

    Hi,
    I have problems logging into portal, release 2 on Linux. I get the following error message when clicking the login link:
    Forbidden
    You don't have permission to access /pls/orasso/orasso.wwsso_app_admin.ls_login on this server.
    This used to work until I changes the password for the orasso user using 9IAS Enterprise Manager. The portal home page works fine. I've tryed to run the ssooconf.sql script, but this didn't help me much.
    Does anyone have any solution to this problem?
    Kjetil

    That's just a display of the license agreement. The login page is always at:
    http://127.0.0.1:8000/apex
    (You have to put the directory on there)
    ~Jer

  • Problems with the login page

    I just finished a fresh install of Oracle XE 10g. When i browse to http://127.0.0.1:8000 (changed the default port) I get the license agreement saying "accept by installing or pressing the accept button" How do I get rid of this to login?
    The only way I can login is by getting to this page, which it took me to at one point after the installation: http://127.0.0.1:8000/apex/f?p=4550:11:1851844547778358::NO:::
    So how does one go about accepting the license agreement when there is no accept button - and I already installed the software?
    Thank you,
    -Matt

    That's just a display of the license agreement. The login page is always at:
    http://127.0.0.1:8000/apex
    (You have to put the directory on there)
    ~Jer

  • Problem with an update page.

    I have a problem with an update page on my website
    Here's how it work
    values are defualted in from the advert table  - this works fine
    I should then be able to change the fields and click on the update button
    This works fine but ONLY when the O_year field is populated. 
    There doesn't seem to be anything special about the O_year field
    I thought spry text validation would of been causing the issues, but I removed them and have the same problem.
    For some reason the POST_MMupdate value is not being set to 'form4', which it is doing if O_year is set.
    Please can someone have a look at this, code,
    Also, is there a way of 'stepping through' dreamweaver code to debug it?
    Thanks
    Adam
    $colname_Advert = "-1";
    if (isset($_GET['advert_id'])) {
      $colname_Advert = $_GET['advert_id'];
    mysql_select_db($database_guitarswap_db, $guitarswap_db);
    $query_Advert = sprintf("SELECT * FROM advert WHERE advert_id = %s", GetSQLValueString($colname_Advert, "int"));
    $Advert = mysql_query($query_Advert, $guitarswap_db) or die(mysql_error());
    $row_Advert = mysql_fetch_assoc($Advert);
    $totalRows_Advert = mysql_num_rows($Advert);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form4"))
        //Сheck that we have a file
    if((!empty($_FILES["PictureLocation"])) && ($_FILES['PictureLocation']['error'] == 0))
          //Check if the file is JPEG image and it's size is less than 350Kb
          $filename = basename($_FILES["PictureLocation"]["name"]);
          $ext = substr($filename, strrpos($filename, '.') + 1);
          if (($ext == "jpg") && ($_FILES["PictureLocation"]["type"] == "image/jpeg") &&
        ($_FILES["PictureLocation"]["size"] < 350000))
            //Determine the path to which we want to save this file
              $newname = dirname(__FILE__).'/upload/'.$filename;
              //Check if the file with the same name is already exists on the server
              if (!file_exists($newname))
                //Attempt to move the uploaded file to it's new place
                if ((move_uploaded_file($_FILES['PictureLocation']['tmp_name'],$newname)))
                       // echo "It's done! The file has been saved as: ".$newname;
                else
                       // echo "Error: A problem occurred during file upload!";
            else
                 // echo "Error: File ".$_FILES["PictureLocation"]["name"]." already exists";
          else
             // echo "Error: Only .jpg images under 350Kb are accepted for upload";
        else
         // echo "Error: No file uploaded";
        $filename=$row_Advert['PictureLocation'];
        // set default opentoalloffers
    if (!isset($_POST['checkopentoalloffers']))
        $_POST['checkopentoalloffers'] = 'n';
      $updateSQL = sprintf("UPDATE advert SET PictureLocation=%s, O_Make=%s, O_Model=%s, O_Country=%s, O_Year=%s, O_Colour=%s, O_Body=%s, O_Neck=%s, O_Fingerboard=%s, O_Pickups=%s, `value`=%s, `condition`=%s,  W_Make=%s, W_Model=%s, W_Country=%s, W_Year=%s, W_Colour=%s, W_Body=%s, W_Neck=%s, W_Fingerboard=%s, W_Pickups=%s, Comments=%s, opentoalloffers=%s, ChangeFlg = %s  WHERE advert_id=%s",
                           GetSQLValueString($filename, "text"),
                           GetSQLValueString($_POST['O_Make'], "text"),
                           GetSQLValueString($_POST['O_Model'], "text"),
                           GetSQLValueString($_POST['O_Country'], "text"),
                           GetSQLValueString($_POST['O_Year'], "date"),
                           GetSQLValueString($_POST['O_Colour'], "text"),
                           GetSQLValueString($_POST['O_Body'], "text"),
                           GetSQLValueString($_POST['O_Neck'], "text"),
                           GetSQLValueString($_POST['O_Fingerboard'], "text"),
                           GetSQLValueString($_POST['O_Pickups'], "text"),
                           GetSQLValueString($_POST['value'], "int"),
                           GetSQLValueString($_POST['condition'], "text"),
                           GetSQLValueString($_POST['W_Make'], "text"),
                           GetSQLValueString($_POST['W_Model'], "text"),
                           GetSQLValueString($_POST['W_Country'], "text"),
                           GetSQLValueString($_POST['W_Year'], "date"),
                           GetSQLValueString($_POST['W_Colour'], "text"),
                           GetSQLValueString($_POST['W_Body'], "text"),
                           GetSQLValueString($_POST['W_Neck'], "text"),
                           GetSQLValueString($_POST['W_Fingerboard'], "text"),
                           GetSQLValueString($_POST['W_Pickups'], "text"),
                           GetSQLValueString($_POST['Comments'], "text"),
                           GetSQLValueString($_POST['checkopentoalloffers'], "text"),
                           GetSQLValueString('y', "text"),
                           GetSQLValueString($_POST['advert_id'], "int"));
      mysql_select_db($database_guitarswap_db, $guitarswap_db);
      $Result1 = mysql_query($updateSQL, $guitarswap_db) or die(mysql_error());
        $updateGoTo = "Member2.php";
         if (isset($_SERVER['QUERY_STRING'])) {
           $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
           $updateGoTo .= $_SERVER['QUERY_STRING'];
         header(sprintf("Location: %s", $updateGoTo));
    ?>
    <!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=utf-8" />
    <title>Untitled Document</title>
    <link href="Layout3.css" rel="stylesheet" type="text/css" /><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixLtHdr #sidebar1 { width: 230px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixLtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
        background-color: #FFF;
        margin-left: 20px;
    .twoColFixLtHdr #container #main3 #form1 div fieldset {
        border: thin ridge #CCC;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    //-->
    </script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColFixLtHdr">
    <div id="container">
      <div id="header">
        <div id="Righty">
          <ul id="MenuBar2" class="MenuBarHorizontal">
        <li><a href="index.php">Search</a>      </li>
        <li><a href="Member2.php">Members</a></li>
      </ul>
      <p> </p>
    </div>
    <span id="LoginDiv">
        <?php
          if (isset($_SESSION['MM_Username']))
            echo "hello ". $_SESSION['MM_Username']. "";
            echo " <a href='Logout.php'>Log out</a> ";
        else
            echo "
                <a href='Login.php'>Login</a> / <a href='Register.php'>Register</a>
        ?>
        </a></span>
    <div id="Middle">
      <h1 align="center">GuitarSwap</h1>
    </div>
      </div>
      <div id="sidebar1">
        <h4>Members Area</h4>
        <ul id="MenuBar1" class="MenuBarVertical">
          <li><a href="Member2.php">My Adverts</a></li>
          <li><a href="NewAdvert.php">Create new Advert</a></li>
          <li><a href="UpdateUserDets.php">My Account</a></li>
        </ul>
        <h3>  </h3>
      </div>
      <div id="mainContent">
        <h4>Update Advert</h4>
        <!-- end #mainContent -->
      </div>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      <div id="main3">
        <div id="main">
          <fieldset>
            <legend>Please update advert details and confirm</legend>
            <form action="<?php echo $editFormAction; ?>" enctype="multipart/form-data" method="post" name="form4" id="form4">
              <input type="hidden" name="advert_id" value="<?php echo $row_Advert['advert_id']; ?>" />
              <p></p>
              <table width="650" align="center">
                <tr valign="baseline">
                  <td width="17" rowspan="15" valign="middle" nowrap="nowrap"><?php echo "<img src='upload/" .$row_Advert['PictureLocation']."' width='64' height='180'/>" ?></td>
                  <td width="133" align="right" nowrap="nowrap"> </td>
                  <td width="240" align="center" bgcolor="#CCCCCC"><strong>Offered</strong></td>
                  <td width="240" align="center" bgcolor="#CCCCCC"><strong>Wanted</strong></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Make:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Make" type="text" value="<?php echo $row_Advert['O_Make']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Make" type="text" value="<?php echo $row_Advert['W_Make']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Model:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Model" type="text" value="<?php echo $row_Advert['O_Model']; ?>" size="30" maxlength="30" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Model" type="text" value="<?php echo $row_Advert['W_Model']; ?>" size="30" maxlength="30" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Country:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Country" type="text" value="<?php echo $row_Advert['O_Country']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Country" type="text" value="<?php echo $row_Advert['W_Country']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Year:</strong></td>
                  <td bgcolor="#CCFFCC"><span id="sprytextfield1">
                  <input name="O_Year" type="text" value="<?php echo $row_Advert['O_Year']; ?>" size="4" maxlength="4" />
    <span class="textfieldInvalidFormatMsg">Invalid format.</span><span class="textfieldMinValueMsg">The entered value is less than the minimum required.</span><span class="textfieldMaxValueMsg">The entered value is greater than the maximum allowed.</span></span></td>
                  <td bgcolor="#CCFFFF"><span id="sprytextfield2">
                  <input name="W_Year" type="text" value="<?php echo $row_Advert['W_Year']; ?>" size="4" maxlength="4" />
    <span class="textfieldInvalidFormatMsg">Invalid format.</span><span class="textfieldMinValueMsg">The entered value is less than the minimum required.</span><span class="textfieldMaxValueMsg">The entered value is greater than the maximum allowed.</span></span></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Colour:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Colour" type="text" value="<?php echo $row_Advert['O_Colour']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Colour" type="text" value="<?php echo $row_Advert['W_Colour']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Body:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Body" type="text" value="<?php echo $row_Advert['O_Body']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Body" type="text" value="<?php echo $row_Advert['W_Body']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Neck:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Neck" type="text" value="<?php echo $row_Advert['O_Neck']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Neck" type="text" value="<?php echo $row_Advert['W_Neck']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Fingerboard:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Fingerboard" type="text" value="<?php echo $row_Advert['O_Fingerboard']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Fingerboard" type="text" value="<?php echo $row_Advert['W_Fingerboard']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Pickups:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="O_Pickups" type="text" value="<?php echo $row_Advert['O_Pickups']; ?>" size="30" maxlength="15" /></td>
                  <td bgcolor="#CCFFFF"><input name="W_Pickups" type="text" value="<?php echo $row_Advert['W_Pickups']; ?>" size="30" maxlength="15" /></td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Condition:</strong></td>
                  <td bgcolor="#CCFFCC"><label for="condition">
                    <select name="condition" size="1" id="condition">
                      <option selected="selected" value="" <?php if (!(strcmp("", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>---select---</option>
                      <option value="immaculate" <?php if (!(strcmp("immaculate", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>immaculate</option>
                      <option value="excellent" <?php if (!(strcmp("excellent", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>excellent</option>
                      <option value="good" <?php if (!(strcmp("good", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>good</option>
                      <option value="well used" <?php if (!(strcmp("well used", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>well used</option>
                      <option value="poor" <?php if (!(strcmp("poor", $row_Advert['condition']))) {echo "selected=\"selected\"";} ?>>poor</option>
                  </select>
                  </label></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Value:</strong></td>
                  <td bgcolor="#CCFFCC"><span id="sprytextfield3">
                  <input name="value" type="text" value="<?php echo $row_Advert['value']; ?>" size="11" maxlength="11" />
    <span class="textfieldInvalidFormatMsg">Invalid format.</span></span></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td align="right" valign="top" nowrap="nowrap"><strong>Comments:</strong></td>
                  <td bgcolor="#CCFFCC"><textarea name="Comments" cols="25" rows="3"><?php echo $row_Advert['Comments']; ?></textarea></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td nowrap="nowrap" align="right"><strong>Picture location</strong></td>
                  <td bgcolor="#CCFFCC"><label for="checkopentoalloffers"></label>                <input type="file" name="PictureLocation" value="<?php echo $row_Advert['PictureLocation']; ?>" size="20" /></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
                <tr valign="baseline">
                  <td height="26" align="right" nowrap="nowrap"><strong>Open to all offers:</strong></td>
                  <td bgcolor="#CCFFCC"><input name="checkopentoalloffers" type="checkbox" id="checkopentoalloffers" value="y" <?php if (!(strcmp($row_Advert['opentoalloffers'],"y"))) {echo "checked=\"checked\"";} ?> /></td>
                  <td bgcolor="#FFFFFF"> </td>
                </tr>
              </table>
              <p> </p>
              <div id="submitdiv">
                <input type="hidden" name="MM_update" value="form4" />
                <input name="submit button" type="submit" id="submit button" value="Update Advert" />
              </div>
              <div id="exitdiv">
                <label for="button15"></label>
                <input name="button" type="button" id="button15" onclick="MM_goToURL('parent','Member2.php');return document.MM_returnValue" value="Exit" />
                <label for="button16"></label>
              </div>
              <p> </p>
            </form>
          </fieldset>
          <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "integer", {validateOn:["blur"], minValue:1900, maxValue:2010, isRequired:false});
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "integer", {validateOn:["blur"], minValue:1900, maxValue:2010});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "integer", {minValue:1900, maxValue:2010, validateOn:["blur"], isRequired:false});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "currency", {validateOn:["blur"], isRequired:false});
          </script>
          <br class="clearfloat" />
      <!-- end #container -->
    </div></div></div>
    <script type="text/javascript">
    <!--
    var  = new Spry.Widget.MenuBar("", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($Advert);
    if (is_resource($Result1)) mysql_free_result($Result1);
    ?>

    Please note,
    Removing I investigated spry a little more, in the end I settled for removing spry altogether,
    Maybe it was because the text field in a $GET (for the default) AND a $PUT (for the update)

  • Problems with the new Pages.

    Hi everyone.
    I wonder if i am the only one experiencing a little problem with the new Pages?
    My problem is that every other time i want to correct the font lets say trying to underline or make the font fatter using the hotkeys "Command+B" or "Command+U" or "Command+I", or even changing it manually in "formats" my font gets stuck, and i have to copy-paste text from another pages-file into my old one to get et back to normal.
    Anyone else tried this?
    Martin.

    VladRO wrote:
    These are the problems that I am encountering for the moment! If there will come up some new once, I will write them here!
    Instead of starting a new list, go to
    https://discussions.apple.com/thread/5468056?tstart=0

  • Problem with Frameset and page session

    All,
    I am having a problem with Framesets and page session attributes. I
    have a client who's application uses a three frame frameset. They
    have a requirement on several pages that when a button is pushed two
    different pages load into the right and left frames. The way they
    are accomplishing this is that on the pages were this is required,
    they are adding target="_top" to the form declaration in their JSP.
    Then they store the page names they want to display in session,
    forward the request to the frameset, the frameset then determines
    which pages to display based on the session variables. This works
    exactly how they want it to.
    Here is our problem. We need to store some information in page
    session attributes. We have tried to get a handle to the desired
    view bean and call the setPageSessionAttribute method. However,
    since we are forwarding to the frame and the frame handles displaying
    the desired JSP, that view bean we had the handle to is not the one
    that is created to hand the display of the JSP.
    The next thing I tried was to use the request object. In the
    handleBtnRequest method, I set an attribute in the request object. I
    then query the request object in the beginDisplay event of the view
    bean. When the frame is reset the request object does not contain
    the attribute that I have set. I'm confused by this because I
    thought the request object would be available to me throughout the
    life of the request.
    Given the above information, does anyone have any suggestions? Also,
    am I going about this in the wrong manner.
    The client had been storing this information in user session, which
    seemed to work. However, since the data being stored dealt
    specifically with data for the requested page, we felt that storing
    it as page session was more appropriate.
    Thanks,

    The script on your page web page has some obvious bugs.. Best
    fix those
    first before looking to blame Flash.
    Jeckyl

  • Problem with display of pages in IE

    I'll keep this short and simple, I'm not after criticism of my work but if it is a mess then I understand, I've re-coded a website designed by a friend who has joined the army & is currently serving so I cannot get in touch with him for help, I'm a novice website designer but I'm stumped as to why my pages are behaving the way they are
    I've made a website for a friend's pub and it all looked brilliant in DreamWeaver CS5's Design View so I went ahead and used ftp program FileZilla to send it live on my domain and basically it shifted my pictures and it displays differently in IE to what it does in Chrome e.g. My "Find Us" page has a large white bar at the bottom in IE which shouldn't be there and I can't get rid of it, but it doesn't show in chrome?
    Any help or code I may be able to implement would be greatly appreciated, thanks Freecey.
    Edit: Forgot to add the link to my site - www.thelightdragoon.co.uk
    Also I am aware of the problems with the Home Page & the Menu Page but I am yet to attempt to fix those yet.

    You still have a problem on that page.
    <head>
    <meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" /><object type="{0C55C096-0F1D-4F28-AAA2-85EF591126E7}" id="cosymantecbfw" class="c1"></object>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Note that you STILL have an <object> tag within the head region.  That's invalid.
    Also, you are using absolute positioning to place elements within your header region - that's definitely suboptimal and unnecessary since it precludes centering the page in various width viewports.  However, if you make the following changes you can muddle by -
    1.  Change the CSS for #outerShadow to set the left/right margins to "auto".  Make it position:relative.
    2.  Change the left values for the absolutely positioned elements to whatever you need for them to be correctly located within #outerShadow.
    3.  Twiddle the remaining out of place element margins to locate them correctly within #outerShadow.
    That should do it.  But the real way to build this page is without using absolute positioning at all.  It's not necessary and will always make your maintenance more complicated as long as you have it.

  • Problem with AppleID login password

    Hi - I'm from Europe. How can I contact talk to a real live person from "nonstop " customer support service - I need help - have problem with AppleID login password

    DanielBuggati wrote:
    Hi - I'm from Europe. How can I contact talk to a real live person from "nonstop " customer support service - I need help - have problem with AppleID login password
    Have you tried MyAppleID <<== click this
    There is a link there for "Forgot your Password?"

  • Does anyone else how problems with numbers or pages spinning ball of death when saving

      Does anyone else have problems with Numbers or Pages when saving
    I have the spinning ball of death sitting there for a very long time..
    I am on a core i5 2.8ghz imac 27in with osx 10.7.5
    I have 12 gig of ram and it flies for eveything else but both numbers and pages have the problem when I go to quit..
    help please

    "We absolutely have to work off of a server so I can't get around that."
    Somebody has forced you to suffer the consequences.
    I've worked for companies like that and you have my condolences.

  • Please help us, we have a problem with loading a page is slow we have to wait a longer time to open our one page, thanks in advance

    Please help us, we have a problem with loading a page is slow we have to wait a longer time to open our one page, thanks in advance

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Problem with the login in analysis

    Hi All,
    I am trying to login to analysis page as an admin user using the credentials of weblogic which i gave during the installation of OBIEE but the login process fails giving an error"Invalid username and Pssword".
    the same credentials when i am providing in em or console the login gets successful. even i have created a new user through console but that user credentials are also not getting validated. in a sense my analysis login page is completely freezed. initially everything was wroking fine but when i saved a rpd using "copy as" and then replaced the old rpd with the same name the problem started.
    even when i am trying to open my current rpd in online mode i get the error of username and paasword but the same rpd opens up in offline mode using same password. Please help me out as i dont know what has happened.

    Hi,
    as far as the sawlog is concerned PFB the entire saw log file.
    i m not able to get out the error from it. Can you please help me out with this and tell the solution.
    Below are the contents of my sawlog.
    [2013-10-13T20:49:17.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:20.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Starting to update Account GUIDs[[
    File:initializecatalog.cpp
    Line:1046
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [ERROR:10] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Error reading object: /shared/Sample Lite/KPIs/Revenue KPI
    Element doesn't contain required attribute treatNoDataAs.
    Node: <sawkpi:thresholds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawkpi="com.siebel.analytics.web/kpi/v1" xmlns:saw="com.siebel.analytics.web/report/v1.1" goal="high"><sawkpi:thresholdRange ID="80ecc300-0b96-1000-8567-0ae4eb540000" value="100" assessmentStateKey="OK"><sawkpi:statusText><saw:caption><saw:text>OK</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">95</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="green" icon="fmap:common/kpi_ok_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc301-0b96-1000-8567-0ae4eb540000" value="50" assessmentStateKey="WARNING"><sawkpi:statusText><saw:caption><saw:text>WARNING</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="yellow" icon="fmap:common/kpi_warning_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc302-0b96-1000-8567-0ae4eb540000" value="0" assessmentStateKey="CRITICAL"><sawkpi:statusText><saw:caption><saw:text>CRITICAL</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="lessOrEqual"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="red" icon="fmap:common/kpi_critical_status.gif"/></sawkpi:thresholdRange></sawkpi:thresholds>[[
    File:catalogimpl.cpp
    Line:1214
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [ERROR:10] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Error reading object: /shared/Sample Lite/KPIs/Sample KPI
    Element doesn't contain required attribute treatNoDataAs.
    Node: <sawkpi:thresholds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawkpi="com.siebel.analytics.web/kpi/v1" xmlns:saw="com.siebel.analytics.web/report/v1.1" goal="high"><sawkpi:thresholdRange ID="80ecc300-0b96-1000-8567-0ae4eb540000" value="100" assessmentStateKey="OK"><sawkpi:statusText><saw:caption><saw:text>OK</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">95</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="green" icon="fmap:common/kpi_ok_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc301-0b96-1000-8567-0ae4eb540000" value="50" assessmentStateKey="WARNING"><sawkpi:statusText><saw:caption><saw:text>WARNING</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="yellow" icon="fmap:common/kpi_warning_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="80ecc302-0b96-1000-8567-0ae4eb540000" value="0" assessmentStateKey="CRITICAL"><sawkpi:statusText><saw:caption><saw:text>CRITICAL</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="lessOrEqual"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Revenue&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="red" icon="fmap:common/kpi_critical_status.gif"/></sawkpi:thresholdRange></sawkpi:thresholds>[[
    File:catalogimpl.cpp
    Line:1214
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [ERROR:10] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Error reading object: /shared/Sample Lite/KPIs/Unit Price
    Element doesn't contain required attribute treatNoDataAs.
    Node: <sawkpi:thresholds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sawkpi="com.siebel.analytics.web/kpi/v1" xmlns:saw="com.siebel.analytics.web/report/v1.1" goal="high"><sawkpi:thresholdRange ID="81c15110-0b96-1000-8567-0ae4eb540000" value="100" assessmentStateKey="OK"><sawkpi:statusText><saw:caption><saw:text>OK</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Actual Unit Price&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">90</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="green" icon="fmap:common/kpi_ok_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="81c15111-0b96-1000-8567-0ae4eb540000" value="50" assessmentStateKey="WARNING"><sawkpi:statusText><saw:caption><saw:text>WARNING</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="greater"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Actual Unit Price&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="yellow" icon="fmap:common/kpi_warning_status.gif"/></sawkpi:thresholdRange><sawkpi:thresholdRange ID="81c17820-0b96-1000-8567-0ae4eb540000" value="0" assessmentStateKey="CRITICAL"><sawkpi:statusText><saw:caption><saw:text>CRITICAL</saw:text></saw:caption></sawkpi:statusText><sawkpi:rangeExpression><sawx:expr xsi:type="sawx:comparison" xmlns:sawx="com.siebel.analytics.web/expression/v1.1" op="lessOrEqual"><sawx:expr xsi:type="sawx:sqlExpression">&quot;Base Facts&quot;.&quot;Actual Unit Price&quot;</sawx:expr><sawx:expr xsi:type="sawx:sqlExpression">50</sawx:expr></sawx:expr></sawkpi:rangeExpression><sawkpi:iconScheme color="red" icon="fmap:common/kpi_critical_status.gif"/></sawkpi:thresholdRange></sawkpi:thresholds>[[
    File:catalogimpl.cpp
    Line:1214
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:22.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: ] [tid: ] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.catalog.impl.scour
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:23.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.subsystem.catalog.initialize.upgrade] [ecid: ] [tid: ] Succeeded in updating account GUIDs from back end user population store[[
    File:initializecatalog.cpp
    Line:1131
    Location:
      saw.subsystem.catalog.initialize.upgrade
      saw.subsystem.catalog.initialize
      saw.subsystems.catalogbootstrapper.loadcatalog
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:49:36.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T20:51:47.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-000000000000009b,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322))[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-000000000000009b,0:1
    ThreadID: 2268
    [2013-10-13T20:52:07.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000a5,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322))[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000a5,0:1
    ThreadID: 2268
    [2013-10-13T20:57:21.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000b7,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322))[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000b7,0:1
    ThreadID: 2268
    [2013-10-13T20:57:27.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000c1,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0)[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000c1,0:1
    ThreadID: 2268
    [2013-10-13T20:57:41.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000d1,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0)[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000d1,0:1
    ThreadID: 2268
    [2013-10-13T21:02:19.000+05:30] [OBIPS] [WARNING:16] [] [saw.subsystem.security.getMasterSession] [ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000dc,0:1] [tid: 2268] Server accessed with unsupported UA (Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0)[[
    File:ssdevice.cpp
    Line:1454
    Location:
      saw.subsystem.security.getMasterSession
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:36b3c0f2:141b22c45a1:-8000-00000000000000dc,0:1
    ThreadID: 2268
    [2013-10-13T21:15:13.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:15:14.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:15:21.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:15:41.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-0000000000000894,0:1:1] [tid: 4020] User weblogic logged in (session ID: 0ohicbclpat90s0amqt8u2as2nhsd0ftcrrl0bi  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-0000000000000894,0:1:1
    ThreadID: 4020
    [2013-10-13T21:15:42.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1] [tid: 3808] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0ohicbclpat90s0amqt8u2as2nhsd0ftcrrl0bi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1
    ThreadID: 3808
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-13T21:15:42.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1] [tid: 3808] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0ohicbclpat90s0amqt8u2as2nhsd0ftcrrl0bi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1b61c7d:141b27ba80a:-8000-000000000000089a,0:1
    ThreadID: 3808
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    [2013-10-13T21:22:07.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0
    [2013-10-13T21:22:07.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHnU5hIsp3FCw70FyWMF0000S4000006,0
    [2013-10-13T21:25:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:25:50.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:25:55.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T21:29:53.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5a,0:1:1] [tid: 1948] User ukumar46 logged in (session ID: pr7cdripddh1k94k1ortpvbk27sis4j0uqm6kl2  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5a,0:1:1
    ThreadID: 1948
    [2013-10-13T21:29:58.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5e,0:1] [tid: 224] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: pr7cdripddh1k94k1ortpvbk27sis4j0uqm6kl2
    AuthProps: 
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-0000000000000f5e,0:1
    ThreadID: 224
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:4] [tid: 1372] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:4
    ThreadID: 1372
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:89] [tid: 2352] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0:89
    ThreadID: 2352
    [2013-10-13T23:53:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHnUfYKGj3FCw70FyWMF0000kS000003,0
    [2013-10-13T23:54:50.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T23:54:51.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T23:54:55.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-13T23:55:46.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118a,0:1:1] [tid: 6116] User weblogic logged in (session ID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118a,0:1:1
    ThreadID: 6116
    [2013-10-13T23:55:50.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1] [tid: 4900] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1
    ThreadID: 4900
    HttpCommand: BIEEHome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-13T23:55:50.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1] [tid: 4900] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-000000000000118e,0:1
    ThreadID: 4900
    HttpCommand: BIEEHome
    RemoteIP: 169.254.25.129
    [2013-10-13T23:57:35.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logoff] [ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-00000000000011f6,0:1] [tid: 4900] User weblogic logged out (session ID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi ).[[
    File:masterclientsession.cpp
    Line:462
    Location:
      saw.securitysubsystem.session.logoff
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: tgousq2n96gqge2gsgg12a0n6sqpcr0hn64tnoi
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:-1aa73405:141b2858e09:-8000-00000000000011f6,0:1
    ThreadID: 4900
    HttpCommand: Logoff
    RemoteIP: 169.254.25.129
    HttpArgs: 
    [2013-10-13T23:58:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0
    [2013-10-13T23:58:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHnb0P2Uj3FCw70FyWMF0001B4000003,0
    [2013-10-18T21:35:18.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-18T21:35:19.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-18T21:35:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-18T22:00:10.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000040c,0:1:1] [tid: 3820] User weblogic logged in (session ID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000040c,0:1:1
    ThreadID: 3820
    [2013-10-18T22:00:10.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.security.userpopulationcache.getparentapproles] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1] [tid: 3248] Populating application role hierarchy for the first time.[[
    File:userpopulationcache.cpp
    Line:202
    Location:
      saw.security.userpopulationcache.getparentapproles
      saw.security.securityimpl.getPermissions
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1
    ThreadID: 3248
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    HttpArgs: icharset='windows-1252',startPage='1'
    [2013-10-18T22:00:11.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1] [tid: 3248] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000042e,0:1
    ThreadID: 3248
    HttpCommand: bieehome
    RemoteIP: 169.254.25.129
    [2013-10-18T23:13:01.000+05:30] [OBIPS] [ERROR:16] [] [saw.taskScheduler.processJob] [ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:766] [tid: 1320] Running task 'Cache/Query' finished in 3609 milliseconds, 24.0% of job's frequency (15 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:766
    ThreadID: 1320
    task: Cache/Query
    [2013-10-18T23:13:04.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:769] [tid: 3972] Running task 'Cache/ReportCache/CleanupXMLDiskCache' finished in 6547 milliseconds, 5.4% of job's frequency (120 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iHtlYRxDu3FCw70FyWMF000048000000,0:769
    ThreadID: 3972
    task: Cache/ReportCache/CleanupXMLDiskCache
    [2013-10-18T23:29:13.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHtlZ5Zs43FCw70FyWMF000048000006,0:87] [tid: 3248] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHtlZ5Zs43FCw70FyWMF000048000006,0:87
    ThreadID: 3248
    [2013-10-18T23:32:43.000+05:30] [OBIPS] [WARNING:16] [] [saw.threadpool.performance] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000065b,0:1] [tid: 3456] ThreadPool<HostLookup>.Thread count: running  0, maximum 1, idle 0. Jobs pending: 1.  No available threads, creating new thread for job. Approaching configured maximum for total number of threads.[[
    File:threadpool.cpp
    Line:661
    Location:
      saw.threadpool.performance
      saw.threadpool
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-000000000000065b,0:1
    ThreadID: 3456
    HttpCommand: Sessions
    RemoteIP: 169.254.25.129
    threadpool: HostLookup
    [2013-10-18T23:36:41.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logoff] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000673,0:1] [tid: 3456] User weblogic logged out (session ID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq ).[[
    File:masterclientsession.cpp
    Line:462
    Location:
      saw.securitysubsystem.session.logoff
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: 0kt172oncmo2vebhuborpulf31oa32v6ubafdeq
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000673,0:1
    ThreadID: 3456
    HttpCommand: Logoff
    RemoteIP: 169.254.25.129
    HttpArgs: 
    [2013-10-18T23:36:52.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.session.logon] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a21,0:1:1] [tid: 2136] User weblogic logged in (session ID: behogqbi3f7quodtfe89msfuenpe4poli7vviei  ). [[
    File:masterclientsession.cpp
    Line:366
    Location:
      saw.securitysubsystem.session.logon
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool
      saw.threads
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a21,0:1:1
    ThreadID: 2136
    [2013-10-18T23:36:52.000+05:30] [OBIPS] [WARNING:16] [] [saw.catalog.item.properties.set] [ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a25,0:1] [tid: 3456] Adding property Desc with value Data Source: BIP WS getFolderContent
    [http://localhost:7001/xmlpserver/services/v2/CatalogService?wsdl]
    Parameters: User ID, Password, Folder Path --
    Note: Edit the data set and change host name & port to match the BIP server's host and port in your environment. exceeds an entry's the maximum size soft limit 256. There are 263 bytes in this property for item /shared/Sample Lite/Published Reporting/Data Models/WS getFolderContent DM.xdm.[[
    File:itemimpl.cpp
    Line:1555
    Location:
      saw.catalog.item.properties.set
      saw.catalog.impl.read
      saw.httpserver.processrequest
      saw.rpc.server.responder
      saw.rpc.server
      saw.rpc.server.handleConnection
      saw.rpc.server.dispatch
      saw.threadpool
      saw.threads
    SessionID: behogqbi3f7quodtfe89msfuenpe4poli7vviei
    AuthProps: AuthSchema=UidPwd|PWD=******|UID=weblogic|User=weblogic
    ecid: 585eecf65d051a4f:37e0f6df:141cc4c025e:-8000-0000000000000a25,0:1
    ThreadID: 3456
    HttpCommand: BIEEHome
    RemoteIP: 169.254.25.129
    [2013-10-19T15:39:35.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T15:39:36.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T15:39:53.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:17:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0
    [2013-10-19T16:17:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHui8xZUj3FCw70FyWMF0000w8000006,0
    [2013-10-19T16:21:20.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:21:21.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:21:28.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:46:45.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0
    [2013-10-19T16:46:45.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHukTcpk73FCw70FyWMF0000x^000003,0
    [2013-10-19T16:47:37.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:47:38.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T16:47:45.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T17:14:14.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0
    [2013-10-19T17:14:14.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHulvdjzm3FCw70FyWMF0000Bo000003,0
    [2013-10-19T17:40:44.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T17:40:46.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T17:40:52.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-19T23:01:26.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0:14] [tid: 5244] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0:14
    ThreadID: 5244
    [2013-10-20T02:04:06.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0
    [2013-10-20T02:04:06.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHuotaMko4QtwN0ErY6F000164000003,0
    [2013-10-20T11:48:46.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-20T11:48:47.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-20T11:48:57.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-20T15:46:37.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:14] [tid: 2112] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:14
    ThreadID: 2112
    [2013-10-20T16:39:48.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0
    [2013-10-20T16:39:48.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:12] [tid: 3188] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0:12
    ThreadID: 3188
    [2013-10-20T16:39:48.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iHvlgtbGQ4QtwN0ErY6F0000xc000006,0
    [2013-10-26T14:10:43.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T14:10:44.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T14:10:53.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T18:12:31.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:3253] [tid: 2376] Running task 'Catalog crawler' finished in 30781 milliseconds, 0.8% of job's frequency (3600 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:3253
    ThreadID: 2376
    task: Catalog crawler
    [2013-10-26T19:13:13.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:4115] [tid: 1768] Running task 'Catalog crawler' finished in 39547 milliseconds, 1.0% of job's frequency (3600 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iI3SRDYQc4QtwN0ErY6F0000_S000000,0:4115
    ThreadID: 1768
    task: Catalog crawler
    [2013-10-26T22:44:23.000+05:30] [OBIPS] [ERROR:16] [] [saw.dms.conext.unwrap] [ecid: 00iI3SRXSXa4QtwN0ErY6F0000_S000006,0:143] [tid: 980] Failed to restore ctx from reference[[
    File:executioncontext.cpp
    Line:286
    Location:
      saw.dms.conext.unwrap
      saw.threadpool
      saw.threads
    ecid: 00iI3SRXSXa4QtwN0ErY6F0000_S000006,0:143
    ThreadID: 980
    [2013-10-26T23:06:48.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T23:06:50.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T23:06:57.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-26T23:16:28.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0
    [2013-10-26T23:16:28.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iI3uOfhJc4QtwN0ErY6F0000f4000003,0
    [2013-10-29T22:53:32.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T22:53:34.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T22:53:42.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T22:54:17.000+05:30] [OBIPS] [WARNING:16] [] [saw.taskScheduler.processJob] [ecid: 00iI7f2ZR^04QtwN0ErY6F0000qk000000,0:34] [tid: 2152] Running task 'Catalog crawler' finished in 31172 milliseconds, 0.8% of job's frequency (3600 seconds).[[
    File:taskscheduler.cpp
    Line:423
    Location:
      saw.taskScheduler.processJob
      saw.threadpool
      saw.threads
    ecid: 00iI7f2ZR^04QtwN0ErY6F0000qk000000,0:34
    ThreadID: 2152
    task: Catalog crawler
    [2013-10-29T23:25:48.000+05:30] [OBIPS] [ERROR:16] [] [saw.threads] [ecid: 00iI7f2_HoN4QtwN0ErY6F0000qk000002,0] [tid: 1872] Error while executing job in PollThread.[[
    File:pollthreaddef.h
    Line:147
    Location:
      saw.threads
    ecid: 00iI7f2_HoN4QtwN0ErY6F0000qk000002,0
    ThreadID: 1872
    [2013-10-29T23:25:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0
    [2013-10-29T23:25:49.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
      saw.sawserver
      saw.sawserver.terminatesawserver
      saw.sawserver
    ecid: 00iI7f2pCLu4QtwN0ErY6F0000qk000003,0
    [2013-10-29T23:27:01.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 110427.0752 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T23:27:02.000+05:30] [OBIPS] [WARNING:1] [] [saw.webextensionbase.init.workstationCheck] [ecid: ] [tid: ] WARNING: The Oracle BI Presentation Services server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.).  Number of concurrent users may be severely limited by the operating system.[[
    File:webextensionbase.cpp
    Line:496
    Location:
      saw.webextensionbase.init.workstationCheck
      saw.webextensionbase.init
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T23:27:09.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services have started successfully.[[
    File:sawserver.cpp
    Line:563
    Location:
      saw.sawserver
      saw.sawserver.initializesawserver
      saw.sawserver
    ecid: 
    [2013-10-29T23:46:43.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.rpc.server.listen] [ecid: 00iI7guS2Tx4QtwN0ErY6F0000rK000003,0] [tid: ] Server shutdown initiated by OPMN.[[
    File:socketrpcserver.cpp
    Line:818
    Location:
      saw.rpc.server.listen
      saw.sawserver
    ecid: 00iI7guS2Tx4QtwN0ErY6F0000rK000003,0

  • Username and password with new login page

    i have created an application where in which in login page i have created
    3 items username and password confirm password . where does the
    data entered in the items fall . how can i retrieve the data .

    Just some information :
    - The problem with LOGIN page exists. I don't have that problem with for example GMAIL when defined as external application, but with my applications in Oracle Application Server.
    - There is also another thing I don't understand. The link to external application is something like:
    javascript:open_jwindow('../ealogin?ID=76D4766','76');
    and couldn't be executed outside pls/orasso
    in other words we can't give that to our users, can we? They should login to orassso and see that?
    We don't want to involve them in Identity Management...
    Any help is appreciated....
    Regards

  • APEX 3.2 Associating application with SSO login page.

    Hi
    My requirement is to replace my login page of APEX3.2 application with an SSO login page. Also, the application uses some tables with some history columns like: "Last Updated by", "Created by", "Last Update Time", etc... While create/edit of any table, I want these columns to be automatically populated according to the credentials used in SSO login page to that application. Please help.
    The link given on this forum (http://www.oracle.com/technology/products/database/application_express/howtos/sso_partner_app.html) for the purpose seems to be obsolete i.e. for previous versions of APEX.
    Thanks
    Bhavesh

    Bhavesh,
    That how-to explains all the steps you need to set up SSO with Application Express.
    As far as the audit columns, just create triggers on your tables. Referenced v('APP_USER') to get the authenticated username.
    Scott

  • Problems with the new Pages for Mac

    I'm starting to see countless problems running the new Pages for Mac (5.0.1) and I can't find a way to resolve them.
    1. when I'm typing and want to delete word(s), I'll use the alt+delete function for ease, however this starts deleting words after the cursor, merging words together and changing my sentece. It comes from when I'm deleting as the new pages is giving me the dropdown menu for the autocorrect word.
    2. grammar check is off. Namely, it picks a random point in a word and moves on from there. EX: "because of the" will have "use of the" underlined in green and give me recommendations to change to "because of the" or "cause of the". Using those recommendations, I'll end up with something like: "becabecause of the"
    3. the find and replace function jumps around in the paper, and sometimes doesn't even display the word currently selected (leaving the user to scroll around looking for what is selected)
    4. Autocorrect has vanished for some reason: no autocapitalization, no turning fractions such as 1/2 into a tidy and neat fraction with small numbers for numerators/denominators, etc.
    I'm still using it, and these are what I have found, so there may be more later as I continue to use it. If anyone has found ways around these bugs, please let me know.
    Thanks!

    Semnani wrote:
    4. Autocorrect has vanished for some reason: no autocapitalization, no turning fractions such as 1/2 into a tidy and neat fraction with small numbers for numerators/denominators, etc.
    Pages 5 now uses the system autocorrect, which does not have as many features as the one inside Pages 4.  Some things you can add manually there.   Others you have to ask Apple to add via
    http://www.apple.com/feedback
    Or continue to use Pages 4 instead.

  • Problem with Digital Editions page view

    I used Digital Editions on two books just recently and was able to fit each page of the ebook to it's full height from top to bottom.
    I just downloaded my third book to DE, and I can't seem to find the button to fit each page to their full heights (top/bottom). Instead, it's stuck on dual-page view. The single-page view button option isn't even there on the third book, but IS there on the first two books. I downloaded a fourth book and it's experiencing the same problem; stuck in dual-page view with no single-page option.
    If I try to re-size the DE window to force it into a single page view, the page numbers are all messed up appearing at random spots of each page rather than at the top right where they are suppose to be.
    I re-installed DE but the problem still persists. Is this a problem with the books in specific? Or something else?
    Thanks

    http://visguy.com/vgforum/index.php?topic=5849.15
    Paul Herber, Sandrila Ltd. Engineering and software shapes for Visio
    Sandrila Ltd

Maybe you are looking for

  • One or more post-processing actions failed - XML Publisher report

    Hi all, I'm working with the following envinronment: Unix platform: HP-UX rp1 B.11.11 U 9000/800 DB: Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production eBS: EBS 11.5.9 More in detail I have a problem when I run a request to see an XML P

  • Installation Failed

    I'm trying to install Photoshop CS2 onto a 24" iMac (Intel 2.4ghz) running Leopard. I've successfully installed on 4 other identical machines but this one is giving me a hard time. It proceeds through the installation process and gets to 'Installing

  • [Solved] cups was installed, but no cupsd until I reinstalled it

    Maybe I am completely missing something, I probably am. But I tried to start cupsd and there was no script for it on my system. pacman -Qis showed that the most recent cups package (1.5.3.5) was installed. I was scratching my head for a good while. I

  • Download trial error

    Hi! I'm trying to download a trial of InDesign and the Adobe page states that it is "downloading now", but there has been no change in this status nor any pop-up or block that I can see that needs actioning. I've restarted the process once (full comp

  • Can't use more than one computer

    It appears to be impossible to use more than one computer with the shuffle. Connecting to another computer results in choosing between erasing the library and linking to the second computer's library or not mounting the iPod. I did not expect this be