41439 Login Error  / Invalidation User password

Portal Login Error 41439:
I have Infrastructure and App Server (BI installation) on the same Win2K server. While trying to Login to Oracle10gAS Portal, I get following error.
WWV-41439 - You cannot login because there is no configuration information stored in the enabler configuration table.
Cause:
The default domain is not set in the Apache configuration. When this occurs, only the hostname is shown in the login link and the domain is not included.
Action:
Include the domain in the ServerName paramenter.
Where should this ServerName be modified? (Which file? in which OracleHome?)
Invalidation User Password:
On a different note, what should be the password of 'Invalidator' in 'Web Cache Settingst'? (I tried invalidator). For any change in config, currently it gives ORA-00017 error.
"Error in getting the Portal version INSTALL_ERROR : Could not obtain Portal version : ORA-01017: invalid username/password; logon denied"
Any suggestion will be appreciated.
Thanks,
Jay

Regarding Invalidator password, it might be worth trying you OEM middle tier password (for ias_admin)

Similar Messages

  • IPhone deploy gets Login Error (Invalid username/password).  Android works

    Hi, we're developing an ADF Mobile app on JDeveloper 11.1.2.3 which does initial authentication against Weblogic.
    The login & app works fine on Android, but fails when we deploy the same app to iPhone (iOS 5.0.1, but also 5.1, 6.0 & 6.1 in the Simulator).
    Specific message is :
    Login Error
    Invalid username/password. If the problem persists, please contact your system administrator.
    It's definitely on the network and reaching the login server, because when we shut down the server or make the network unavailable, the message reports "The login server is not reachable"
    All I can think is it's possibly encrypting the password differently within iOS.
    Not having much luck on Google or other searches, so any thoughts are appreciated.
    Thanks
    Peter

    I found a bit more information in the Weblogic Managed Server logs proving the login request reaches the server, but gives this error. Not much luck on google so, if this rings any bells for anyone thoughts are appreciated.
    FROM : /oracle/product/admin/domains/cdlmobile_domain/servers/cdlmobile_server1/logs/cdlmobile_server1-diagnostic.log
    [2013-04-04T17:04:58.426+01:00] [cdlmobile_server1] [WARNING] [] [org.apache.myfaces.trinidadinternal.agent.AgentFactoryImpl] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: tatmfy] [ecid: 53bd9d60b35a3019:-327732ec:13dcfd76fee:-8000-00000000000029b3,0] [APP: BC040113_Project1_BC040113] The User-Agent "cdlivemobile/1.0 CFNetwork/609.1.4 Darwin/12.3.0" is unknown; creating an agent with "unknown" agent attributes.

  • Capturing the Message on the Login Page (Invalid user/password expired etc.

    Hi, I have a requirment for capturing the error message on the Login page if the User's Account is expired or Account is Disabled or Invalid credentials, Password Lockout etc.
    I am using the attached login page. Can any one please help me out on this.
    <html><head><title>AARPLogin Page</title>
    <script type="text/javascript" language="JavaScript" xml:space="preserve">
    // This function automatically gets called for broswer detection
    var isNav4 = false;
    var isIE4 = false;
    var isNS6 = false;
    function obDetectBrowser()
    if ( navigator.appVersion.charAt( 0 ) == "4" )
    if ( navigator.appName == "Netscape" )
    isNav4 = true;
    } else {
    isIE4 = true;
    else
    if ( navigator.appVersion.charAt( 0 ) >= 5 )
    if ( navigator.appName == "Netscape" )
    isNS6 = true;
    obDetectBrowser ();
    var HOSTNAME =
    var COOKIE_OBREQUESTEDURL = "OBREQUESTEDURL";
    var COOKIE_OBFORMLOGINCOOKIE = "ObFormLoginCookie";
    var NCID_LANDING_PAGE_URL = "/landing/";
    var QS_REDIR = "ReDir";
    var keyChooser;
    function checkPasswordEnterKey( event )
    var form = document.forms[0];
    if (isNav4 || isNS6) {
    keyChooser = event.which ;
    } else if (isIE4) {
    keyChooser = window.event.keyCode;
    if (keyChooser == 13) {
    if (
    form.userid.value
    && form.userid.value != ""
    && form.password
    && form.password.value != ""
    form.submit();
    return true;
    else
    alert('Please enter a UserId and Password');
    return false;
    function showHidePanel( panelID, displayValue )
    var panelElement = document.getElementById( panelID );
    if ( displayValue == 'show' )
    panelElement.style.display = 'block';
    else
    panelElement.style.display = 'none';
    function getQueryVariable( variable )
    var query = window.location.search.substring( 1 );
    var vars = query.split( "&" );
    for ( var i=0; i < vars.length; i++)
    var pair = vars[ i ].split( "=" );
    if ( pair[ 0 ] == variable )
    return unescape( pair[ 1 ] );
    return "";
    function Get_Cookie( name )
    var nameEQ = name + "=";
    var ca = document.cookie.split( ';' );
    for( var i=0; i < ca.length; i++ )
    var c = ca[ i ];
    while ( c.charAt( 0 )==' ' )
    c = c.substring( 1, c.length );
    if ( c.indexOf( nameEQ ) == 0 )
    return c.substring( nameEQ.length, c.length );
    return null;
    function Set_Cookie( name, value, expires, path, domain, secure)
    document.cookie = name + "=" + escape( value ) +
    ( ( expires ) ? ";expires=" + expires.toGMTString() : "" ) +
    ( ( path ) ? ";path=" + path : "" ) +
    ( ( domain ) ? ";domain=" + domain : "" ) +
    ( ( secure ) ? ";secure" : "" );
    function Delete_Cookie( name, path, domain )
    if ( Get_Cookie( name ) )
    document.cookie = name + "=" +
    ( (path) ? ";path=" + path : "" ) +
    ( (domain) ? ";domain=" + domain : "" ) +
    ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
    function lostPassword()
    var CurrentLogin = document.forms[0].userid.value;
    if ( CurrentLogin == "" ) {
    alert ( "Please enter your eMail Address." );
    document.forms[0].userid.focus();
    else {
    Set_Cookie( COOKIE_OBFORMLOGINCOOKIE, "done", 0, "/" );
    var LOST_PWD_PAGE = "/identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?program=passwordChallengeResponse&login="+CurrentLogin+"&backUrl=http://oradev2.na.aarp.int/login/login.html&target=top";
    window.location = LOST_PWD_PAGE;
    function emailPassword()
    document.passform.submit();
    function onLoad()
    if (getQueryVariable( "MSG" ) == 'LOGIN_FAILED' )
    alert ("Login Failed, Please try again");
    else if (getQueryVariable( "MSG" ) == 'PWD_EXP' )
    alert ("Your Password Is About to Expire. Please Change it at your earliest convenience.");
    var pwdExpUID = getQueryVariable( "login" );
    var hostTarget = getQueryVariable( "hostTarget" );
    var resURL = getQueryVariable( "resURL" );
    var PWD_EXP_PAGE = "/identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?program=redirectforchangepwd&login="+pwdExpUID+"&backURL="+hostTarget+resURL+"&target=top";
    window.location = PWD_EXP_PAGE;
    else if (getQueryVariable( "MSG" ) == 'CHGPWD' )
    alert ("You are required to change your password.");
    var chgPwdUID = getQueryVariable( "login" );
    var hostTarget = getQueryVariable( "hostTarget" );
    var resURL = getQueryVariable( "resURL" );
    var CHG_PWD_PAGE = "http://"+HOSTNAME+"/identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?program=redirectforchangepwd&login="+chgPwdUID+"&backURL="+hostTarget+resURL+"&target=top";
    window.location = CHG_PWD_PAGE;
    </script></head><body onload="onLoad();document.login.userid.focus();" alink="blue" bgcolor="#ffffff" link="blue" vlink="blue">
    <p align="center">
    <img alt="AARP Header Logo" src="login_files/aarpLogo.gif" border="0" height="91" width="219">
    <br>
    </p><form name="login" method="post" action="/access/oblix/apps/webgate/bin/webgate.so">
    <div class="boldText" align="center">
    <h2>Login</h2>
    <div class="boldText" align="left">
    <div id="LoginFailed" style="display: none;">
    <table align="center" bgcolor="#ff0000" border="0" cellpadding="2" cellspacing="0" width="500">
    <tbody><tr>
    <td>
    <table bgcolor="#e5e5e5" border="0" cellpadding="5" cellspacing="0" width="100%">
    <tbody><tr bgcolor="#ffffff">
    <td rowspan="3" height="40" nowrap="nowrap" valign="top">
    <img src="login_files/error.gif" name="error" height="20" width="20">
    </td>
    <td rowspan="3" align="center">
    <p>
    <font color="#ff0000" size="-1">
    <b>
    <div id="TryAgain" style="display: none;">Login Failed! Invalid UserID and/or Password, Please try again.<br></div>
    <div id="AccountLocked" style="display: none;">Your Account has been Locked!</div>
    </b>
    </font>
    </p>
    <p>
    <font color="#ff0000">
    <b>For
    assistance call E-Services Help Line at (XXX) XXX-XXXX Monday through
    Friday between the hours of 8:00 am and 5:00 pm eastern standard time.</b>
    </font>
    </p>
    </td>
    </tr>
    <tr bgcolor="#ffffff">
    </tr><tr bgcolor="#e5e5e5">
    </tr></tbody></table>
    </td>
    </tr>
    </tbody></table>
    </div>
    <br>
    </div>
    <table border="0" cellpadding="0" cellspacing="0" width="500">
    <tbody><tr>
    <td background="login_files/border_upper_left.gif" height="20" nowrap="nowrap" width="20"> </td>
    <td background="login_files/border_top.gif" height="20" nowrap="nowrap"> </td>
    <td background="login_files/border_upper_right.gif" height="20" nowrap="nowrap" width="20"> </td>
    </tr>
    <tr>
    <td background="login_files/border_left.gif" nowrap="nowrap" width="20"> </td>
    <td>
    <table bgcolor="#ebebce" border="0" cellpadding="2" cellspacing="0" height="100%" width="100%">
    <tbody><tr>
    <td colspan="3" align="center">
    <font color="darkred" face="Arial" size="3">
    <b>
    </b></font>
    <b> </b></td>
    </tr>
    <tr valign="bottom">
    <td colspan="3" width="100%">
    <table bgcolor="#ebebce" border="0" cellpadding="5" cellspacing="0" width="100%">
    <tbody><tr bgcolor="#e5e5e5">
    <td rowspan="2" bgcolor="#ebebce" height="20" nowrap="nowrap" valign="top" width="4%">
    <font color="#000000">
    <span class="text">
    <img src="login_files/arrow.gif" align="top" height="20" width="20">
    </span>
    </font>
    <font color="#000000"> </font>
    </td>
    <td rowspan="2" bgcolor="#ebebce" width="96%">
    <font color="#000000" size="-1">
    <span class="text">Please enter your Email and Password. If you are a new user to AARP, please select First Time AARP User.
    </span>
    </font>
    </td>
    </tr>
    <tr bgcolor="#e5e5e5">
    </tr></tbody></table>
    </td>
    </tr>
    <tr valign="bottom">
    <td colspan="3">
    <table align="center" border="0" width="349">
    <tbody><tr>
    <td nowrap="nowrap" width="74">
    <font color="#000000" size="-1">
    <div align="left">eMail:</div>
    </font>
    </td>
    <td width="265">
    <input name="userid" value="" size="32" maxlength="32" tabindex="2" type="text">
    </td>
    </tr>
    <tr>
    <td>
    <font color="#000000" size="-1">
    <div align="left">Password:</div>
    </font>
    </td>
    <td>
    <p>
    <font color="#000000" size="-1">
    <input name="password" size="32" maxlength="32" length="30" tabindex="3" type="password">
    </font>
    </p>
    </td>
    </tr>
    </tbody></table>
    </td>
    </tr>
    <tr>
    <td>
    <font color="#000000" size="-1">
    <p align="center"><b>Forgot Your Password?</b></p>
    </font>
    </td></tr>
    <tr>
    <td align="center"> <font color="#000000" size="-1"><!--
    Reset Password      
    -->
    Email New Password
    </font>
    </td></tr>
    <tr>
    <td colspan="4">
    <div class="boldText" align="center">
    <br>
    <input src="login_files/button_login.gif" name="Submit" value="" alt="login" type="image">
    <!--
    <b class="boldText"><img src="../images/button_login.gif" width="68" height="25" name="img_login" border="0" alt="login"/></b>
    --> <b class="boldText"><img src="login_files/button_clear.gif" name="img_clear" alt="clear" border="0" height="25" width="68"></b>
    <b class="boldText"><img src="login_files/button_help.gif" name="img_help" alt="help" border="0" height="25" width="68"></b>
    <b class="boldText"><img src="login_files/button_cancel.gif" name="img_cancel" alt="cancel" border="0" height="25" width="68"></b>
    </div>
    </td>
    </tr>
    </tbody></table>
    </td>
    <td background="login_files/border_right.gif" nowrap="nowrap" width="20"> </td>
    </tr>
    <tr>
    <td background="login_files/border_lower_left.gif" height="20" nowrap="nowrap" width="20"> </td>
    <td background="login_files/border_bottom.gif" height="20" nowrap="nowrap"> </td>
    <td background="login_files/border_lower_right.gif" height="20" nowrap="nowrap" width="20"> </td>
    </tr>
    </tbody></table>
    <p></p>
    <span class="text"><br><br><b>NOTICE:
    This system is the property of AARP and is for authorized use only.
    Unauthorized access is a violation of federal and state law. All
    software, data transactions, and electronic communications are subject
    to monitoring.</b></span>
    <div id="hr" style="position: absolute; width: 100%; height: 10px; z-index: 90; top: 657px; left: 10px;">
    <hr>
    </div>
    <div id="footer" style="position: absolute; width: 700px; height: 55px; z-index: 115; top: 678px; left: 50px;">
    <span class="subhead">
    Privacy Policy
    Disclaimer
    Contact Us
    </span>
    <span class="bodytext">
    </span></div>
    <form name="passform" action="http://oradev2.na.aarp.int/wampassword/passwordReset.html" method="post">
    <input name="login" value="" type="hidden">
    <input name="backUrl" value="http://oradev2.na.aarp.int/login/login.html" type="hidden">
    </form>
    <script type="text/javascript" language="JavaScript" xml:space="preserve">
    var undefined;
    if (
    document.login
    && document.login.password
    function clearForm()
    document.login.reset();
    function navigate( linkName )
    if ( 'login' == linkName )
    if ( document.accountLogin.userID.value != '' && document.login.password.value != '' )
    alert('Please click the Account Registration Setup link for now');
    //document.location = 'userDataPersonal.htm';
    else
    alert('Please enter a UserId and Password');
    function openHelp()
    helpDoc = window.open( "http://www.aarp.org", "", "scrollbars=yes,resizable=yes,width=500,height=300" );
    function cancel()
    // open dialog
    var initX = parseInt( window.screenX ) + parseInt( window.outerWidth ) / 2 - 100;
    var initY = parseInt( window.screenY ) + parseInt( window.outerHeight ) / 2 - 50;
    cancelDialog = window.open( "./cancelDialog.html", " cancelDialog", "resizable=yes,toolbar=no,menubar=no,width=200,height=150,screenX=" + initX +",screenY=" + initY );
    </script>
    </div></form></body>
    <script type="text/javascript">
    <!--
    function __RP_Callback_Helper(str, strCallbackEvent, splitSize, func){var event = null;if (strCallbackEvent){event = document.createEvent('Events');event.initEvent(strCallbackEvent, true, true);}if (str && str.length > 0){var splitList = str.split('|');var strCompare = str;if (splitList.length == splitSize)strCompare = splitList[splitSize-1];var pluginList = document.plugins;for (var count = 0; count < pluginList.length; count++){var sSrc = '';if (pluginList[count] && pluginList[count].src)sSrc = pluginList[count].src;if (strCompare.length >= sSrc.length){if (strCompare.indexOf(sSrc) != -1){func(str, count, pluginList, splitList);break;}}}}if (strCallbackEvent)document.body.dispatchEvent(event);}function __RP_Coord_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_Coord_Callback = str;pluginList[index].__RP_Coord_Callback_Left = splitList[0];pluginList[index].__RP_Coord_Callback_Top = splitList[1];pluginList[index].__RP_Coord_Callback_Right = splitList[2];pluginList[index].__RP_Coord_Callback_Bottom = splitList[3];};__RP_Callback_Helper(str, 'rp-js-coord-callback', 5, func);}function __RP_Url_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_Url_Callback = str;pluginList[index].__RP_Url_Callback_Vid = splitList[0];pluginList[index].__RP_Url_Callback_Parent = splitList[1];};__RP_Callback_Helper(str, 'rp-js-url-callback', 3, func);}function __RP_TotalBytes_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_TotalBytes_Callback = str;pluginList[index].__RP_TotalBytes_Callback_Bytes = splitList[0];};__RP_Callback_Helper(str, null, 2, func);}function __RP_Connection_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_Connection_Callback = str;pluginList[index].__RP_Connection_Callback_Url = splitList[0];};__RP_Callback_Helper(str, null, 2, func);}
    //--></script></html>

    Is it not possible that someone fired the password expiration cmd ?
    SQL> select limit
      2  from   dba_profiles
      3  where  profile='DEFAULT'
      4  and resource_name='PASSWORD_LIFE_TIME';
    LIMIT
    UNLIMITED
    SQL> select profile from dba_users where username='MYUSER';
    PROFILE
    DEFAULT
    SQL> conn myuser/myuser
    Connected.
    SQL> conn / as sysdba
    Connected.
    SQL> alter user myuser password expire;
    User altered.
    SQL> conn myuser/myuser
    ERROR:
    ORA-28001: the password has expired
    Changing password for myuser
    New password:
    Password unchanged
    Warning: You are no longer connected to ORACLE.
    SQL> conn / as sysdba
    Connected.
    SQL> select name, astatus, TO_CHAR(ctime,'DD-MM-YYYY HH:MI') CTIME, TO_CHAR(ptime,'DD-MM-YYYY HH:MI') PTIME, TO_CHAR(EXPTIME,'DD-MM-YYYY HH:MI') EXPIRE
      2  from sys.user$ where name ='MYUSER';
    NAME
       ASTATUS CTIME
    PTIME
    EXPIRE
    MYUSER
             1 23-11-2011 11:15
    23-11-2011 11:15
    23-11-2011 11:17
    SQL>Nicolas.

  • SSO + OBIEE + Impersonation :: Invalid user/password

    I am running the following setup:
    OBIEE
    Oracle Business Intelligence Product Version 10.1.3.3.2 (Build 071217.1900)
    Physical Presentation Catalog Path /apps/installs/OracleBIData/web/catalog/paint/root
    Oracle BI Server Data Source AnalyticsWeb
    Analytics WebApp
    Turned off OC4J, and deployed Analytics.war file on its own Apache-Tomcat instance
    The Tomcat instance listens on port 9090
    Siteminder (SSO) / Proxy Tier
    I am running an Apache Web Server instance protected by CA Siteminder's SSO policy
    AWS is listening on port 80, and acting as a proxy to redirect requests for Analytics.
    Example:
    Tomcat Analytics: http://localhost:9090/analytics/
    AWS: http://localhost:80/obiee/ ==> http://localhost:9090/analytics/
    I am doing testing with the out of the box PAIN repository & set of dashboards. My goal is to:
    1. Protect OBIEE behind SSO
    2. Allow ANY SSO authenticated user to gain access to OBIEE Analytics
    3. Remove OBIEE's own authentication / login screen
    Effectively:
    1. Browse to http://localhost/obiee/
    2. Get redirected to SSO login landing page
    3. Authenticate via SSO
    4. Upon successful SSO authentication, get redirected to the default OBIEE dashboard
    So far, so good. I followed the guide for SSO integration found here: http://download.oracle.com/docs/cd/E12096_01/books/AnyDeploy/AnyDeploySSO.html
    I've added the necessary entries on my instanceconfig.xml ($ORACLEBIDATA_HOME/web/config/instanceconfig.xml) as follows
    <Auth>
    <SSO enabled="true">
    <ParamList>
    <Param name="IMPERSONATE" source="httpHeader" nameInSource="eid"/>
    </ParamList>
    </SSO>
    </Auth>
    <CredentialStore>
    <CredentialStorage type="file" path="/apps/installs/OracleBIData/web/config/credentialstore.xml" passphrase="***********"/>
    </CredentialStore>
    I've created an Impersonator user and impersonation alias on my credentialstore.xml file using:
    cryptotools credstore -add -infile $ORACLEBIDATA_HOME/web/config/credentialstore.xml
    Credential Alias: impersonation
    Username: Impersonator
    Password: ***********
    Do you want to encrypt the password? y/n (y):
    Passphrase for encryption: ***********
    Do you want to write the passphrase to the xml? y/n (n):
    File "<OracleBIData>/web/config/credentialstore.xml" exists. Do you want tooverwrite it? y/n (y):
    I've also added the Impersonator user to the repository using BI Administrator. I opened the respository online and added Impersonator as a user, with the same password I defined when I user cryptotools. I included the Impersonator user on the same groups as the default Administrator (Administrators & XMLP_ADMIN) and subsequently checked my changes back into the server. After everything was done, I bounced presentation and BI servers through:
    $run-sa.sh stop
    $run-saw.sh stop
    $run-sa.sh start
    $run-saw.sh start
    Presentation services starts up fine, BI server starts up fine as well. When I browse to the Apache Web Server site, I get redirected to SSO, I pass my credentials, and the wind up on the /saw.dll?Dashboard URI but I get the following message:
    You are not currently logged in to the Oracle BI Server.
    If you have already logged in, your connection might have timed out, or a communications or server error may have occurred.
    Here are the relevant log entries from $ORACLEBIDATA_HOME/web/log
    sawlog0.log -I replaced the actual username with <SSOUID>. <SSOUID> is the actual SSO header I need.
    Oracle BI Presentation Services have started successfully.
    Type: Error
    Severity: 40
    Time: Fri Jul 23 12:02:57 2010
    File: project/webodbcaccess/odbcconnectionimpl.cpp Line: 371
    Properties: ConnId-1,1;ThreadID-4096981904
    Location:
    saw.odbc.connection.open
    saw.connectionPool.getConnection
    saw.threadPool
    saw.threads
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43001] Authentication failed for <SSOUID> in repository Star: invalid user/password. (08004)
    Type: Error
    Severity: 42
    Time: Fri Jul 23 12:02:57 2010
    File: project/webconnect/connection.cpp Line: 276
    Properties: ThreadID-4096981904
    Location:
    saw.connectionPool.getConnection
    saw.threadPool
    saw.threads
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    I am at a total loss with this. If I am understanding the OBIEE stack correctly, this would seem to indicate:
    a. The impersonation credentials on the credentialstore.xml file are not being decrypted correctly, or the password actually doesn't match. But I've triple checked this.
    b. The impersonation alias is not being recognized by presentation services.
    I would really appreciate any input here. If I've left out any relevant items, please ask questions and I'll try to be as thorough as possible.
    Thanks in advance!
    Miguel.-
    Edited by: user11343977 on Jul 23, 2010 11:49 AM

    Changes made. Here are the log entries:
    sawlog0.log
    Type: Error
    Severity: 40
    Time: Mon Jul 26 12:27:59 2010
    File: project/webodbcaccess/odbcconnectionimpl.cpp Line: 371
    Properties: ConnId-13,13;ThreadID-4091849616
    Location:
    saw.odbc.connection.open
    saw.connectionPool.getConnection
    saw.threadPool
    saw.threads
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43001] Authentication failed for 7880429329 in repository Star: invalid user/password. (08004)
    Type: Error
    Severity: 42
    Time: Mon Jul 26 12:27:59 2010
    File: project/webconnect/connection.cpp Line: 276
    Properties: ThreadID-4091849616
    Location:
    saw.connectionPool.getConnection
    saw.threadPool
    saw.threads
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    And here is the relevant entry from the NQQuery.log -which is enlightening if I should say:
    --------- Oracle BI Version: 10.1.3.3.2.071217.1900 : New Session Timestamp: 2010/07/26 12:34:33
    +++Impersonator:fffe0000:fffe0004:----2010/07/26 12:34:59
    -------------------- An initialization block named 'Authorization', on behalf of a Session Variable, issued the following SQL query:
    SELECT ':USERID','Administrators','GuestAccount' from dual
    Returned 0 rows. Query status: Failure

  • ORA- 01017 Error ( Invalid Username Password) Logon Denied

    Gurus,
    I am running into the above error ( ORA- 01017) ( Invalid Username Password) Logon Denied on the Oracle Application Server 10g.
    Note:
    On windows 2003 server
    The DB is 11g and I am using the Oracle applicaton Server 10g - Forms Services
    Also have Installed Oracle Dev_suite ( Oracle forms)
    Instances used - PROD and TEST
    Have developed a simple form and using Forms services ( the below url) is used
    http://<<Hostname>>/forms/frmservlet?form=meds_trans_menu.fmx&userid=&otherparams=useSDI=yes&lookAndFeel=oracle&colorScheme=blue
    the Login screen comes ,
    entering the username and details , says the password expired as the user is trying to enter for the first time,
    shows the change password screen
    old password
    new password
    re-enter new password
    When I try to enter the new password and hit ok button, it shows error message again and again.
    ORA- 01017 Error ( Invalid Username Password) Logon Denied
    Not sure why i get this error , even after entering the correct credentials.
    Please advice.
    Thanks
    Sheik

    Gurus - Any ideas , suggestions how this can be resolved?
    Is this issues because of version mismatch ( 11g DB and Oracle Forms 10g)??
    Please advice when time permits.
    Thanks
    Sheik

  • Authentication failed: invalid user/password.

    After uploading a new RPD in obiee( 11.1.1.5), my obiee has started failing with following error in nqserver.log. I have verified that BISystemUser password is the same in console and EM. I have also verified that I am entering correct RPD password while uploading it through EM. What else may be wrong ?
    [2011-08-23T03:52:39.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b38396d0] [36007] Loading repository /product/obiee_11.1.1.5/instances/instance1/bifoundation/OracleBIServerComponent/coreapplication_obis1/repository/iipreports_BI0038.rpd.
    [2011-08-23T03:52:40.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b0923b90] [14055] Loading subject area: AIP ...
    [2011-08-23T03:52:40.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b0923b90] [14056] Finished loading subject area: AIP.
    [2011-08-23T03:52:40.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b38396d0] [85003] MDX Member Name Cache subsystem started successfully.
    [2011-08-23T03:52:40.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b38396d0] [85004] MDX Member Name Cache subsystem recovered entries: 0, size: 0 bytes.
    [2011-08-23T03:52:40.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b38396d0] [13026] Error in getting roles from BI Security Service: 'Error Message From BI Security Service: [nQSError: 46164] HTTP Server returned 404 (Not Found) for URL .'
    [2011-08-23T03:52:40.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b38396d0] nqsserver:     Clustered Oracle BI Server started. Version: 11.1.1.5.0.110427.0846.000.
    [2011-08-23T03:52:44.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 004emGWVmAQAtHd5Tf^Ayc0000K2000000] [tid: b0923b90] [43071] A connection with Cluster Controller xxx.us.oracle.com:9706 was established.
    [2011-08-23T03:52:46.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 004emGWtbaWAtHd5Tf^Ayc0000K3000001] [tid: b00beb90] Error Message From BI Security Service: [nQSError: 46164] HTTP Server returned 404 (Not Found) for URL .
    [2011-08-23T03:52:46.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 004emGWtbaWAtHd5Tf^Ayc0000K3000001] [tid: b00beb90] [nQSError: 43126] Authentication failed: invalid user/password.
    If I run opmnctl status then BIServer is up but the presentation services is down.
    Following error is observed in sawlog0.log
    [2011-08-22T22:52:46.000-05:00] [OBIPS] [ERROR:10] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:292
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2011-08-22T22:52:46.000-05:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
         saw.sawserver
    ecid:

    Hi,
    I have upgraded a existing OBIEE 10G file EBSAnalyticMaster.rpd to 11G using ua (upgrade assistant) and getting the same error while upgrading the catalog.
    Presentation service is not starting. Do you have a solution yet.

  • [nQSError: 43126]Authentication failed:invalid user/password, how to avoid?

    Hi,
    I encountered following error: [nQSError: 43126] Authentication failed: invalid user/password.
    when I was starting weblogic server, and server used to shutdown.
    After snooping around on net, came across this blog: http://obiee11gqna.blogspot.com/2011/09/obiee-11g-errors-nqserror-43113.html
    Found that password for MDS & BIPLATFORM was 'expired', was able to solve my problem and my Presentation Services were up & running.
    My question is, how to avoid password of MDS & BIPLATFORM from getting expired in future??
    Regards,
    Jitendra

    Dpka,
    Thanx for the link, it shows the way to avoid expiry of password.
    I also found another link, in comment section which is equally useful: http://www.artofbi.com/index.php/2011/03/mds-or-biplatform-schema-password-change-considerations/
    PS: Thanx to Deva as well for replying to my query.
    Regards,
    Jitendra

  • UDO creation error- invalid user

    i am trying to craeate UDO using coding .
    but error is coming like that
    lRetCode= -1120
    msg " invalid user & password"
    Any solution

    AVIJIT,
    Check if user has a Professional License assigned.
    Have you managed to register other objects with problem before?
    Have you tried to register the object in the B1 GUI?
    Also I include code samples in how to register Master Data and Document Objects.
    Master Data with child table
    Private Function RegisterTRAD(ByRef oCompany As SAPbobsCOM.Company, ByRef oApplication As SAPbouiCOM.Application) As Boolean
            RegisterTRAD = False
            Dim oUserObjectMD As UserObjectsMD = oCompany.GetBusinessObject(BoObjectTypes.oUserObjectsMD)
            Dim lRetCode As Long
            Try
                If Not oUserObjectMD.GetByKey("ADAT_TRAD") Then
                    oUserObjectMD.Code = "ADAT_TRAD"
                    oUserObjectMD.Name = "Traduções"
                    oUserObjectMD.ObjectType = BoUDOObjType.boud_MasterData
                    oUserObjectMD.TableName = "ADAT_TRAD"
                    oUserObjectMD.CanCancel = BoYesNoEnum.tYES
                    oUserObjectMD.CanClose = BoYesNoEnum.tYES
                    oUserObjectMD.CanCreateDefaultForm = BoYesNoEnum.tNO
                    oUserObjectMD.CanDelete = BoYesNoEnum.tYES
                    oUserObjectMD.CanFind = BoYesNoEnum.tYES
                    oUserObjectMD.CanLog = BoYesNoEnum.tYES
                    oUserObjectMD.CanYearTransfer = BoYesNoEnum.tYES
                    oUserObjectMD.LogTableName = "AADAT_TRAD"
                    oUserObjectMD.ExtensionName = ""
                    oUserObjectMD.FindColumns.ColumnAlias = "Code"
                    oUserObjectMD.FindColumns.ColumnDescription = "Código"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.SetCurrentLine(1)
                    oUserObjectMD.FindColumns.ColumnAlias = "U_TableNam"
                    oUserObjectMD.FindColumns.ColumnDescription = "Nome da Tabela"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_TableDsc"
                    oUserObjectMD.FindColumns.ColumnDescription = "Descrição da Tabela"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_FieldNam"
                    oUserObjectMD.FindColumns.ColumnDescription = "Nome do Campo"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_FieldDsc"
                    oUserObjectMD.FindColumns.ColumnDescription = "Descrição do Campo"
                    oUserObjectMD.FindColumns.Add()
                    lRetCode = oUserObjectMD.Add()
                    '// Verificar existência de erros ao adicionar o UDO
                    If lRetCode <> 0 Then
                        oApplication.MessageBox("RegisterTRAD(Add): " & lRetCode.ToString)
                    Else
                        RegisterTRAD = True
                    End If
                End If
            Catch ex As Exception
                oApplication.MessageBox("RegisterTRAD(): " & oCompany.GetLastErrorCode & ", " & ex.Message)
            Finally
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserObjectMD)
                oUserObjectMD = Nothing
                lRetCode = Nothing
                GC.Collect()
            End Try
        End Function
    Document with child table
    Private Function RegisterNR(ByRef oCompany As SAPbobsCOM.Company, ByRef oApplication As SAPbouiCOM.Application) As Boolean
            RegisterNR = False
            Dim oUserObjectMD As UserObjectsMD = oCompany.GetBusinessObject(BoObjectTypes.oUserObjectsMD)
            Dim lRetCode As Long
            Try
                If Not oUserObjectMD.GetByKey("ADAT_NR") Then
                    oUserObjectMD.Code = "ADAT_NR"
                    oUserObjectMD.Name = "Nota de Recepção"
                    oUserObjectMD.ObjectType = BoUDOObjType.boud_Document
                    oUserObjectMD.TableName = "ADAT_ONR"
                    oUserObjectMD.CanCancel = BoYesNoEnum.tYES
                    oUserObjectMD.CanClose = BoYesNoEnum.tYES
                    oUserObjectMD.CanCreateDefaultForm = BoYesNoEnum.tNO
                    oUserObjectMD.CanDelete = BoYesNoEnum.tYES
                    oUserObjectMD.CanFind = BoYesNoEnum.tYES
                    oUserObjectMD.CanLog = BoYesNoEnum.tYES
                    oUserObjectMD.LogTableName = "AADAT_NR"
                    oUserObjectMD.CanYearTransfer = BoYesNoEnum.tYES
                    oUserObjectMD.ManageSeries = BoYesNoEnum.tYES
                    oUserObjectMD.ChildTables.TableName = "ADAT_NR1"
                    oUserObjectMD.ChildTables.LogTableName = "AADAT_NR1"
                    oUserObjectMD.ExtensionName = ""
                    oUserObjectMD.FindColumns.ColumnAlias = "DocNum"
                    oUserObjectMD.FindColumns.ColumnDescription = "Nº do Documento"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.SetCurrentLine(1)
                    oUserObjectMD.FindColumns.ColumnAlias = "Series"
                    oUserObjectMD.FindColumns.ColumnDescription = "Série"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_CardCode"
                    oUserObjectMD.FindColumns.ColumnDescription = "Código do PN"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_CardName"
                    oUserObjectMD.FindColumns.ColumnDescription = "Nome do PN"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_RefNum"
                    oUserObjectMD.FindColumns.ColumnDescription = "Nº de Ref. do Fornecedor"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_DataRcp"
                    oUserObjectMD.FindColumns.ColumnDescription = "Data de Recepção"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_HoraRcp"
                    oUserObjectMD.FindColumns.ColumnDescription = "Hora de Recepção"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_ItemName"
                    oUserObjectMD.FindColumns.ColumnDescription = "Nome do Artigo"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_PrcName"
                    oUserObjectMD.FindColumns.ColumnDescription = "Nome do Parcelário"
                    oUserObjectMD.FindColumns.Add()
                    oUserObjectMD.FindColumns.ColumnAlias = "U_FolhaNam"
                    oUserObjectMD.FindColumns.ColumnDescription = "Folha"
                    oUserObjectMD.FindColumns.Add()
                    lRetCode = oUserObjectMD.Add()
                    '// Verificar existência de erros ao adicionar o UDO
                    If lRetCode <> 0 Then
                        oApplication.MessageBox("RegisterNR(Add): " & lRetCode.ToString)
                    Else
                        RegisterNR = True
                    End If
                End If
            Catch ex As Exception
                oApplication.MessageBox("RegisterNR(): " & oCompany.GetLastErrorCode & ", " & ex.Message)
            Finally
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserObjectMD)
                oUserObjectMD = Nothing
                lRetCode = Nothing
                GC.Collect()
            End Try
        End Function
    Regards,
    Vítor

  • SQLLDR Error Invalid Username/Password

    I am trying to load some data using SQL*Loader. I used this statement: sqlldr RPTDBA/rptdba control=C:\myfile
    I get the ORA-01017 error invalid username/password but I can log into SQL*Plus using that same username and password. I created the username using the Enterprise Manager Control. Is there something that I need to do so that SQL*Loader recognizes the username?
    Thanks,
    Veronica

    I had not provided the service name before. Somehow, it must have assumed it. I tried using your syntax,
    sqlldr RPTDBA/rptdba@RPTDB control=C:\myfile and it works!
    Thanks.
    V.
    Try
    sqlldr RPTDBA/rptdba@service_name control=C:\myfile
    Don't you provide a service name when connecting to SqlPlus?
    Mbo

  • 700p suddenly gives invalid user/password message when trying to get new mail

    My Yahoo Mail Plus account is working fine. When I use versamail on the Palm Treo 700p to retrieve emails from my active Yahoo account, I get "-ERR(Auth)invalid user/password" message. I can access my Yahoo Mail account from the "Web" app on my treo.
    So it is definitely a VersaMail issue. This happened after it had been getting new mail (and sending) successfully.
    Can anyone help? 
    Post relates to: Treo 700p (Verizon)

    unfortunately Yahoo and their Branded contracts just don't work as advertised and neither the ISPs Nor Yahoo appear in the slightest bit interested.
    If you delete the popstate.dat file in the profile folder in the yahoo server directory, it will restart the download again from the top (Everything)
    You might also find that disabling email scanning in your anti virus program may be beneficial. (Could it be McAfee?)
    The majority of RETR complaints here are from ATT and BT users, both of whom get McAfee given in by their ISP.

  • Oracle9i AS (invalid user/password,During creating of database)

    Hello!
    I have installed oracle 9i in Advance server 2000 (domain controller) and when i try to create a database (any type) via Database Configration Assistent then during creating of database it give me the message invalid username/password. The point to be noted is that during creating of database it doesnot ask any username or password, so probably this is a some sort of post creating script with a difault password like SYS, SYSMAN, SYSTEM etc accounts. Please guide me what is the problem in my steping of database creation. (Remmeber i am loging into the server with Administrator's account.
    Please reply me as soon as possible at following email address.
    [email protected] (above email address is invalid)
    Thanks.

    User => Default password
    =========================
    sys => change_on_install
    system => manager
    scott => tiger
    hope this helps.

  • Businee logic Engine error:Invalid user name or password.Pl help

    Hi,
    I have installed Demantra 7.3.0.1 on windows and I am getting this error only when opening Business logic engine.All other components work with the same user name and password dm/password but only this one throws an error.
    Can some one help me pl.I have installed Oracle AS as well on the same server to act as a webserver.
    Can you pl tell me where this BLE picks up the user name and passowrd or if some setting has to be changed ??
    This is fesh installation and only I changed te application URL in the BM

    Have you tried dm/dm ?
    Thank you.

  • UCCX login failed invalid user name and password

    Dear all,
    Recently I removed the Ldap sync and re-established it back but after this I am unable to login into the
    uccx appadmin page but am able to login into os admin page, when i checked in uccx service list
    uxl and axl service is not running
    can any one guide me?

    Hi Abdul,
    When you are able to see the UXL and the AXL service on the UCCX Serviceability, then I think you are running 8.5.1.10000-37 which is the UCCX 8.5.1 base version.
    The UCCX AXL web Service and UXL web service has no impact on the Services and was imported from the VOS platform during the initial development of UCCX 8.x. This has no relation to the AXL integration with the CUCM.
    To re-establish the AXL connectivity the only workaround is to use the CET tool or modify a file in root to trick the Appadmin to go to the Fresh install stage. Once done, the re-association of the administrators can be done.
    Note: This can be done only by TAC as it involves remote account access.
    Secondly, from UCCX 9.x, we have the Super User which is independent of AXL/CUCM and hence will be able to login to UCCX at all times.
    Regards,
    Arundeep

  • Cisco Prime Infrastructure 1.3 Web Log Invalid user password

    Hi,
    I recently installed Cisco Prime Infrastructure 1.3 per the set up guide. I was able to login into the webinterface.
    Then I insert the radius server and reload ncs. Since then I'm not able to login to the web interface. I get the following error message "Invalid Username or Password. Please try again". Even when I set the ncs root user with a new password. One issue could be that i forgot the enable fallback to local.
    Is there a way to change the radius config back via cli?
    Thanks a lot
    Hansruedi

    Hi Hansruedi,
    Thanks you for your help and your time.
    I followed your recomandation until the fourth step.
    But after this step,  I lost the web page connection.
    I check nsc status but all is running :
    NMS still stopped. NMS must be running to have an access by web page ?
    I restart Prime (by reload command) but nothing changed.
    Thanks

  • ActiveSync 401 Access Denied, invalid user/password?

    Hi everyone,
    Just getting started on trying out Exchange Activesync and I'm having a few problems.
    First, a little background:
    Windows 2000 Server
    Exchange 2003 with SP2
    Global Settings , Mobile Service Properties:
    * User Initiated synchronization
    * up to date notifications via smtp and text messaging
    * notifications to user specified smtp address
    * direct push over https
    * outlook mobile access
    * unsupported devices
    * all enabled *
    All Exchange Features tab options enabled in 'nick' user account mobile services
    Outlook Web Access works properly for everyone with a proper root CA SSL cert (thawte).
    Treo 650 Sprint with Palm EAS upgrade and VersaMail 3.5.
    Versamail set to Exchange ActiveSync, pointing to the external Exchange host, SSL checked.
    I go to sync messages and it begins "receiving" a few times before erroring out telling me that my username/password isnt correct (which it is.. unless it's a formatting issue).
    VersaMail responds with: There was a problem with syncing. The server did not recognize your username and/or password. Please check and try again.
    Details include: AirSAMStateMachine.c 2214 5 HTTP/1.1 401 Access Denied Server: Microsoft-IIS/5.0 Date: Thu, 22 Mar 2007 21:44:16 GMT WWW-Authenticate:
    It obviously does not appear to be an SSL problem (which is just about all I can find information online over), but rather an authentication issue.. but I know definitively that the username and password are correct.
    I have tried entering the Username as follows based on random posts ive come across:
    nick
    domain\nick
    domain/nick
    /domain/nick
    DOMAIN/nick
    all of which fail with the same error.. I turn around and login to the OWA over SSL with a username of domain\nick and the same password, and it works fine.
    Anyone have any idea what I'm missing here?
    Post relates to: Treo 650 (Sprint)

    I'm also having this exact issue, did you find a resolution? Thanks in advance

Maybe you are looking for

  • After installing brand new Macbook hard drive, boot to disk shows a flashing folder with a question mark

    I had to install a new hard drive for my macbook after my last one had obviously crashed and was making clicking noises. The problem is I can't install OSX on my new one and I'm getting extremely frustrated. What could be going wrong? I've reset PRAM

  • Second Kernal Panic in 2 days: Snow Leopard 10.6.8-Macbook Pro

    Hi, I have just had my second kernal panic in 2 days. Both times I was just surfing the web using firefox with a few tabs open. The panics happened after a day or so of the Huawei dongle I use to connect to the internet falling into a glass of water

  • Screen enhancement in PO

    Hi all, I got a requirement to add a button on the standard screen in the service line part in ME21N, ME22N. Is it feasible to do so by modifying user exit? I just can't find the user exit to use and wonder if it is feasible... Please advise. Thanks

  • How can i tell if my iMac has a virus

    My 8 year old son was told he could watch a film for free i he visited a site called put locker. when he did this, safari opened lots of pop ups to say Contact Apple Support malicious activity.  How do i check if my iMac now has a virus?

  • Want to create sequence at class level  row_number , DENSE_RANK() , rank(),

    Dear All, I want to create serial no at class level please check my query , i have already try , row_number , DENSE_RANK() , rank(), it shows 1 Please guie . Regards SELECT distinct cla.R_Description, cla.N_Description, period.period_name, cla.BRANCH