ORA-31202: DBMS_LDAP: LDAP client/server error: Invalid credentials

Hey Guys,
I have an application with LDAP authentication and a custom login page (pg 101). When I run this app, the login page displays first, logs me in and logs out fine. However, when I branch to this application from another application, the login page shows up with the following error:
ORA-31202: DBMS_LDAP: LDAP client/server error: Invalid credentials
Error ERR-1082 Error in executing authorization scheme code.
I looked at debug and this is happening because when this page is loaded, it goes to my authentication scheme and tries to authenticate me even though I havnt logged in and because no user exists at this point the error happens.
I have set the login page to 'Page is Public' and have also used the following code in the authentication scheme's Page Sentry Function:
IF APEX_CUSTOM_AUTH.CURRENT_PAGE_IS_PUBLIC = TRUE THEN;
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
Any ideas of how I can stop my login page from being authenticated? Or where I am going wrong
Thanks
-Mark

Jes,
I could get it work !!!! my complete code
DECLARE
l_attributes wwv_flow_global.vc_arr2;
l_attribute_values wwv_flow_global.vc_arr2;
l_msg dbms_ldap.message;
l_entry DBMS_LDAP.message;
l_session DBMS_LDAP.session;
l_ber_element DBMS_LDAP.ber_element;
l_attr dbms_ldap.string_collection;
l_attr_name VARCHAR2(256);
l_vals DBMS_LDAP.string_collection;
retval PLS_INTEGER;
BEGIN
l_session := DBMS_LDAP.init('server', '389');
retval := DBMS_LDAP.simple_bind_s(l_session,'cn=myid,cn=na', 'mypwd');
dbms_output.put_line('Retval -> ' || retval);
l_attr(1) := '*'; -- retrieve all attributes
retval := DBMS_LDAP.search_s(
ld => l_session,
base => 'ou=xx,o=xx',
scope => DBMS_LDAP.SCOPE_SUBTREE,
filter => 'uid=myid',
attrs => l_attr,
attronly => 0,
res => l_msg);
dbms_output.put_line('Retval 2 -> ' || retval);
dbms_output.put_line('msg : ' || l_msg);
IF DBMS_LDAP.count_entries(ld => l_session, msg => l_msg) > 0 THEN
-- Get all the entries returned by our search.
l_entry := DBMS_LDAP.first_entry(ld => l_session,
msg => l_msg);
<< entry_loop >>
WHILE l_entry IS NOT NULL LOOP
-- Get all the attributes for this entry.
DBMS_OUTPUT.PUT_LINE('---------------------------------------');
l_attr_name := DBMS_LDAP.first_attribute(ld => l_session,
ldapentry => l_entry,
ber_elem => l_ber_element);
<< attributes_loop >>
WHILE l_attr_name IS NOT NULL LOOP
-- Get all the values for this attribute.
l_vals := DBMS_LDAP.get_values (ld => l_session,
ldapentry => l_entry,
attr => l_attr_name);
<< values_loop >>
FOR i IN l_vals.FIRST .. l_vals.LAST LOOP
DBMS_OUTPUT.PUT_LINE('ATTIBUTE_NAME: ' || l_attr_name || ' = ' || SUBSTR(l_vals(i),1,200));
END LOOP values_loop;
l_attr_name := DBMS_LDAP.next_attribute(ld => l_session,
ldapentry => l_entry,
ber_elem => l_ber_element);
END LOOP attibutes_loop;
l_entry := DBMS_LDAP.next_entry(ld => l_session,
msg => l_entry);
END LOOP entry_loop;
END IF;
retval := DBMS_LDAP.unbind_s(l_session);
END;
thank you :D

Similar Messages

  • Auth against trsuted domain - 500 Internal Server Error Invalid index.(1413

    Hi all,
            we are publishing a SAP portal via ISA 2006. <br /><br />
    I have eventually managed to get single sign on working all the way through for company.local users, however we also have a domain where all our customer accounts sit - extcustomers.local, which has a two way trust with company.local. <br /><br />
    When logging on with a company.local account, via an ISA form, and we are getting an error below.<br /><br />
    <strong>"500 Internal Server Error. Invalid index. (1413) " </strong><br />
    I'm struggling to find why this error is occuring - and was hoping you guys may be able to point me in the right direction. <br />
    Also in Portal Logs  i can see the fallowing.<br />
    LOGIN.FAILED<br />
    User: N/A<br />
    Authentication Stack: ticket<br /><br />
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details<br />
    1. com.sap.security.core.server.jaas.EvaluateTicketLoginModule             SUFFICIENT  ok          false                 true       <br />
    2. com.sap.security.core.server.jaas.SPNegoLoginModule                     OPTIONAL    ok          exception             true       Failure unspecified at GSS-API level (Mechanism level: Integrity check on decrypted field failed (31))<br />
    3. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   REQUISITE   ok          false                 false   <br />  
    4. com.sap.security.core.server.jaas.CreateTicketLoginModule               OPTIONAL    ok          false                 true       <br />
    And Fallowed by .<br />
    <strong>CreateContext failed: GSSException: Failure unspecified at GSS-API level (Mechanism level: Integrity check on decrypted field failed (31)) </strong><br />
    [EXCEPTION]<br />
    GSSException: Failure unspecified at GSS-API level (Mechanism level: Integrity check on decrypted field failed (31)) <br />
    at sun.security.jgss.krb5.Krb5Context.acceptSecContext(Krb5Context.java:734) <br />
    at sun.security.jgss.GSSContextImpl.acceptSecContext(GSSContextImpl.java:300) <br />
    at sun.security.jgss.GSSContextImpl.acceptSecContext(GSSContextImpl.java:246) <br />
    at com.sap.security.core.server.jaas.SPNegoLoginModule.doHandshake(SPNegoLoginModule.java:749) <br />
    at com.sap.security.core.server.jaas.SPNegoLoginModule.login(SPNegoLoginModule.java:365) <br />
    at com.sap.engine.services.security.login.LoginModuleLoggingWrapperImpl.login(LoginModuleLoggingWrapperImpl.java:185) <br />
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:70) <br />
    at java.security.AccessController.doPrivileged(Native Method) <br /><br />
    at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:181) <br />
    at com.sap.engine.system.SystemLoginModule.login(SystemLoginModule.java:90) <br />
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) <br />
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) <br />
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) <br />
    at java.lang.reflect.Method.invoke(Method.java:324) <br />
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675) <br />
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129) <br />
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610) <br />
    at java.security.AccessController.doPrivileged(Native Method) <br />
    at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607) <br />
    at javax.security.auth.login.LoginContext.login(LoginContext.java:534) <br />
    at com.sap.security.core.logon.imp.SAPJ2EEAuthenticator.getLoggedInUser(SAPJ2EEAuthenticator.java:149) <br />
    at com.sapportals.portal.prt.service.authenticationservice.AuthenticationService.getLoggedInUser(AuthenticationService.java:303) <br />
    at com.sapportals.portal.prt.connection.UMHandler.handleUM(UMHandler.java:96) <br />
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:186) <br />
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524) <br />
    at java.security.AccessController.doPrivileged(Native Method) <br />
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407) <br />
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) <br />
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156) <br />
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) <br />
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321) <br />
    at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377) <br />
    at com.sap.portal.navigation.Gateway.service(Gateway.java:126) <br />
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) <br />
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) <br />
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) <br />
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) <br />
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) <br />
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) <br />
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) <br />
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) <br />
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) <br />
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process<br />(ApplicationSessionMessageListener.java:33) <br />
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) <br />
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) <br />
    at java.security.AccessController.doPrivileged(Native Method) <br /><br />
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) <br />
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    <br /><br />
    Any Ideas regarding would be greately appritiated.<br /><br />
    Kind Regards,<br />
    vamsi<br />
    Edited by: Vamsi Krishna Koganti on Jun 30, 2009 8:01 AM
    Edited by: Vamsi Krishna Koganti on Jun 30, 2009 9:27 AM
    Edited by: Vamsi Krishna Koganti on Jun 30, 2009 5:41 PM

    Hi All,
    Thanks for having a look at this.
    The Problem is that at ISA wron g server is maintained and wrong service principal name is maintained adn after changing this the problem is solved.
    From the research i can say that there are 2 things  we need to look at  when we have this issue.
    1. Password
    2. Serviceprincipalname
    Kind Regards
    Vamsi

  • ADRMS Install on Server 2012 - Invalid credentials presented error when supplying service account.

    Adding AD RMS to a 2012 Standard server.  At the point where it wants a service account.  I tried numerous accounts and it would give me the same error on all of them "Invalid credentials were presented.  Verify the correctness of the provided
    password."
    I tried more and less complex passwords with no change.  If I used a non-existant user name it would throw a different error so I know it's not that.
    I was able to get it to take the Domain Administrator account name and password.  Obviously I don't want to use that so I set the same password on a service account with no change in error.
    Attepted to logon with SA on the server.  Logon was successful.  Attempted install logged on as service account and got message "The service account cannot be the same account used to install AD RMS.  Please specify a different account".
    Am I missing something?
    There's no place like 127.0.0.1

    But to be clear, installing RMS on a Domain Controller is NOT recommended. Precisely for the reasons you found.
    Enrique Saggese - Sr. Program Manager - Information Protection - Microsoft Corporation

  • MDT user credentials error: Invalid credentials: The network path was not found

    I have DELL E5400 and DELL Optiplex 760 pc. In the before, DELL630 is working with my MDT service, but now, DELL E5400 and DELL Optiplex 760 not working with my MDT.
    When PE loaded and go to User Credentials interface, I input the user name and password(I confirm the user name and password is correct), it will display error message "Invalid credentials: The network path was not found". I checked that the network driver is correct.
    After search some information in the website, someone said that maybe the network initializing timeout issue, so I according to Tim Quan guide to add following to startnet.cmd
    wpeutil InitializeNetwork
    ping localhost
    wpeinit
    Then I update the deploy location in MDT and then re-loaded it again, but unlucky, I still meet the same issue. I tried to use ipconfig /all command to check the network status, I couldn't find out local network connection. I click "Cancel" to check the error message, it will display"A connection to the deployment share could not be made. The deployment will not proceed. DHCP lease was not obtained for any networking device!Possible cause: check physical connection".
    It seems that PE not loaded network driver successfully, but it is very strange that the network driver is correct.
    Have someone can help me?
    Thanks a lot

    Hi,
    Are you deploying Windows Vista 32bit or 64bit? Please obtain he latest network card drivers from the following sites:
    Dell Latitude E5400:
    http://support.dell.com/support/downloads/driverslist.aspx?c=us&cs=19&l=en&s=dhs&ServiceTag=&SystemID=LAT_E5400&os=WLH&osl=en&catid=&impid=
    Dell OptiPlex 760:
    http://support.dell.com/support/downloads/driverslist.aspx?c=us&cs=19&l=en&s=dhs&ServiceTag=&SystemID=PLX_760&os=WLH&osl=en&catid=&impid=
    Please make sure you add the correct network driver to deployment point.
    Additional Information:
    http://www.techtalkz.com/windows-deployment/501217-deployment-share-connection-issue-since-mdt-2008-waik-1-1-a.html
    http://www.deploymentforum.com/Community/Forums/tabid/124/forumid/16/postid/737/view/topic/Default.aspx
    Hope it helps.
    Tim Quan - MSFT

  • Table View : Sort='server' : Error=Invalid sort field type in "SORT ... AS

    Hi ,
    The Sort button does not work for GUID and it shows the error,
    <b>Invalid sort field type in "SORT ... AS TEXT"</b>
    How do I solve this problem?
    Thanks and Best Regards,
    Bindiya

    Hi ,
    Below is the code :
    IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS
    ==================================================
            ls_coldef-columnname              = 'PBI_C_VALUE_ID1'.
            ls_coldef-width                         = '150'.
            ls_coldef-title                           = 'Category I '.
            ls_coldef-tooltipheader              = 'Category I '.
            ls_coldef-wrapping                   = zcl_zsc_co=>sc_true.
            ls_coldef-edit                          = zcl_zsc_co=>sc_true.
            ls_coldef-sort                          = zcl_zsc_co=>sc_true.
            APPEND ls_coldef TO p_column_definitions.
            CLEAR ls_coldef.
    ==================================================
    IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START
    ==================================================
        WHEN 'PBI_C_VALUE_ID1'.
          CREATE OBJECT lr_dropdown.
          lr_dropdown->id                 =  p_cell_id.
          lr_dropdown->nameofkeycolumn    = 'PBI_C_VALUE_ID'.
          lr_dropdown->nameofvaluecolumn  = 'SHORT_NAME'.
          lr_dropdown->selection          = <fs_row>-pbi_c_value_id1.
          lr_dropdown->disabled           = lv_disable.
          lr_dropdown->width              = '170'.
          GET REFERENCE OF mr_model_assign_sb_list->mr_model_pb_item_list->mr_model_def_category->mt_dropdown_cat_1_val INTO lr_dropdown->table.
          p_replacement_bee = lr_dropdown.
    ==================================================
    NOTE: the data element of 'PBI_C_VALUE_ID' is RAW 16.
    Thanks and Best Regards,
    Bindiya

  • Sgd login error - "Invalid credentials"

    Hi folks,
    I have been trying to build a new sgd box from scratch, i joined it to an old sgd server (both sgd 4.4) then detached the array and now i cant log into the new system with anything except root. When i tail the login log file i get the following...
    2008/07/01 13:13:30.533 (pid 2693) server/login/moreinfo #1214914410533
    Attempted login for auser
    using disambiguation attributes {}.
    2008/07/01 13:13:30.535 (pid 2693) server/login/moreinfo #1214914410535
    The login authority com.sco.tta.server.login.ens.SearchENSLoginAuthority
    has found a potential login candidate
    .../_ens/o=company/ou=Depts/ou=depts/cn=a user.
    2008/07/01 13:13:30.537 (pid 2693) server/login/moreinfo #1214914410537
    The login authority ntauthloginauthority
    has found a potential login candidate
    .../_ens/o=company/ou=Depts/ou=depts/cn=a user.
    2008/07/01 13:13:30.553 (pid 2693) server/login/moreinfo #1214914410553
    The login filter com.sco.tta.server.login.IpLoginFilter
    disallowed login for .../_ens/o=company/ou=Depts/ou=depts/cn=a user
    because the connection type specification unknown
    matched the address 172.16.X.X.
    2008/07/01 13:13:30.553 (pid 2693) server/login/auditinfo #1214914410554
    Login attempt for auser.
    Login failed: vetoed by a login filter.
    i'm pulling my hair out with this as i cant seem to find a fix, please help.
    regards

    UPDATE
    Hi folks, I have solved the issue.... well sort off.... it seemed a few users could actually get access, when i dug into that i found that it was users who didnt have secure access defined ( * * standard). Once i removed this the user could then log in. This is very confusing because this is the way our existing live sgd server is set up and it works fine...
    any ideas??
    regards

  • DSEE 6.3: how to show detailed error messages to ldap clients?

    Is there any possibilty in DSEE 6.3 to send to ldap clients detailed error messages about - for example - missing required attributes in ldap add operation?
    I don't have access to ldap server's logs, so I loose a lot of time trying to figure out "which of 40 attributes I sent to server is bad?"...

    Thank you for reply.
    I know that I can view schema, but I need the functionality which is available in relational databases. When I try to store bad field value in database table, I get descriptive error message: "field XYZ has bad value". In DSEE I get "schema violation" or other cryptic message.
    It's very hard to track the problem if you operate on 30 or more attributes. Which one causes error?
    I see that this functionality is available in DSEE backend (error logs are descriptive). How to turn on this for clients?
    If it is not possible, I will try to write special software module which will double DSEE functionality and check attributes before storing them in DSEE.

  • Scan to Email not working - Invalid Credentials error (using gmail and 2-factor authentication)

    I configured the HP OfficeJet 8600 printer for scan to email using the Embedded Web Server interface. In the Web interface, I added/entered an email address for my gmail account, and set the correct SMTP server details, and entered 465 for the port number. I checked the "Always use secure connection" box, as well as the "SMTP requires authentication for outgoing email messages" box. I entered correct SMTP user ID and password. Yet when I did a test, I got an error "Invalid credentials" After a lot of frustration, and trying all sorts of things, I eventually got the idea to try another email account. This time I tried a different email account, a netzero email account, configured the smtp server details for it etc. And this time when I tested the netzero email address it worked. I tried the scan to email on the printer, and it worked for the Netzero email account. it just didnt work for the gmail account. I had a while back turned on 2-factor authentication. I went to gmail settings and requested an "App password" for my HP printer. Google/gmail displayed a 16 character password, which I then entered into the password box in the HP OfficeJet printer Embedded Web Server interface (instead of my usual password), for the gmail account. And this time when I tested the email account - it worked! Problem solved! .. I share this just in case anyone else is having the same problem I had, and is going through the same frustrating experience I endured!  

    Thank you. This helped TREMENDOUSLY! 

  • Gmail Error on EDGE (Invalid Credentials)

    For the past few days I have been getting an error "Invalid Credentials (Failure)" whenever checking my Gmail account.
    After multiple reboots, restoring, and re-setting the account, I have isolated the problem and realized that it only occurs over the EDGE network.
    There was a fix on the Gmail website that asked you to re-login through Captcha, that however didn't fix the problem.
    Any one else having this problem? Is it widespread? Anyone knows a fix?

    Hey siriussphinx,
    Can you login to the GMail website using Safari?
    Are you syncing the account information to the iPhone using iTunes?
    Is your Gmail account setup as POP or IMAP? It might be getting POP Locked if your using multiple email clients. http://mail.google.com/support/bin/answer.py?answer=77695
    Try restoring the iPhone and setting it up as a new phone.
    http://docs.info.apple.com/article.html?artnum=305744
    Jason

  • Invalid Credentials: The Network location cannot be reached

    I am working with MDT 2010, and I am getting the error, "Invalid Credentials:  The Network location cannot be reached." When I run the LiteTouch 64 bit, I don't think the network is working.  It's like there is not driver for the network card in
    the LiteTouch 64 bit to make the network connection.  When I hit F8 key, it brings a DOS box up for testing, and I found out these things.
     - I can ping the loop back address 127.0.0.1.
     - Cannot use the net use command to connect to the server share \\server01\DeploymentSahre$.
     - I can not ping by name or IP address the server that is holding my Deployment Share.
    This is the first time I am working with this technology, and I was following a guide off the Technet library.  It almost like I am missing the driver for the network card.  I have Windows Deployment installed on server01, the server will answer,
    and I am able to put in my user name and password,  it accepts and starts loading. 
    I did figure out how to inject the network drivers into Windows Deployment for the Motherboard I was using, do I have to do the same thing here again? MDT is using the Windows Deployment Images on the server01; MDT is setup on server01.   I would have
    thought that since the driver was already injected into the Image MDT would use that as well.  So, do I need to put a driver into the LiteTouch 64bit image and if I do how do I do that?
    thanks very much for your help,
    Rick Arnold
    ArnoldConsult
    Rick Arnold Arnoldconsult, MCP

    If you haven't updated the deployment share after adding the proper drivers to OOBD then your LiteTouch boot images will not have them included.  Just right click the deployment share and click on Update Deployment Share, it will take a while but it
    will rebuild the boot images with the drivers you've included in OOBD.  Then it's just a matter of either recreating the flash drives or loading the updated image into WDS.  
    Another thought:
    We had an issue with some HP's that had Main Boards replaced.  the BIOS time was WAY off and the UUID wasn't setting itself because the network was denying it access to our servers (because of the horribly wrong time).  Once we corrected the time
    in the BIOS everything ran fine.  The error we got while trying to do the deployment was the same as what you describe and we could still ping various machines on the network too.  

  • Netweaver CE 7.1 gives Invalid credentials

    Hi,
    I am new to SAP NetWeaver Composition Environment 7.1. I tried to install the CE 7.1. when I try to start, it asks me for OS user id and password. The OS user by default is my laptop user id which has admin rights and I don't have a password set. Every time it throws error "invalid credentials" and I am stuck up having no clue.
    Appreciate your help.

    Hi Naveen,
    The systemrequirements.htm page in the download package says:
    "Note: If you use a Windows XP account without a password , SAP Management Console can not start/stop your instance via Web Service - use system services instead"
    I believe the "Start Application Server" shortcut in the Start Menu should also work in this case.
    HTH!
    -- Vladimir

  • FIOS Mobile iPad App "Invalid Credentials"

    Has anyone had problems setting up the FIOS Mobile app on the iPad?  I have a number of the iphone applications running on my phone and am able to successfully login to those both on my phone and on my computer.   However, when I try to use the same credentials on my iPad in the FIOS Mobile app I get the error Invalid Credentials.
    I've installed the FIOS Mobile app on (2) different iPads, and have used both the primary and sub accounts with the same error.  I contacted Verizon Support for assistance and they told me I had to sync my iPad first, but had no other solutions to my problem.  Any assistance or confirmation I'm not the only one having this problem would be useful in hopefully fixing this problem.
    Cheers 
    Solved!
    Go to Solution.

    stellar7 wrote:
    Has anyone had problems setting up the FIOS Mobile app on the iPad?  I have a number of the iphone applications running on my phone and am able to successfully login to those both on my phone and on my computer.   However, when I try to use the same credentials on my iPad in the FIOS Mobile app I get the error Invalid Credentials.
    I've installed the FIOS Mobile app on (2) different iPads, and have used both the primary and sub accounts with the same error.  I contacted Verizon Support for assistance and they told me I had to sync my iPad first, but had no other solutions to my problem.  Any assistance or confirmation I'm not the only one having this problem would be useful in hopefully fixing this problem.
    Cheers 
    Hello,
    Recheck your network settings on the iPad to ensure that you are trying to connect to your home wireless FiOS network and not another one.
    Try deleting all Verizon apps you currently have on the iPad.  Afterwards, reinstall them again. Start with the 'Verizon FiOS Mobile' app for the iPad.
    We've been using the Verizon FiOS Mobile app on an iPad and iPad mini and have not had any issues, and I've deleted/reinstalled it just to see if I get any messages like yours and it always seems to work fine.
    Good luck!

  • LDAP configuration - invalid credentials : error 49

    Hi
    Hope someone can shed some light on my problem. I'm trying to setup LDAP on a 2504 but keep on getting invalid credentials. What this tells me is that when I try to connect the WLC sees the AD but somewhere there is a credential issue. 
    *webauthRedirect: Nov 20 13:06:25.858: #LOG-3-Q_IND: ldap_db.c:1063 Could not connect to LDAP server 1, reason: 49 (Invalid credentials).[...It occurred 2 times.!]
    *LDAP DB Task 1: Nov 20 13:06:18.732: #AAA-3-LDAP_CONNECT_SERVER_FAILED: ldap_db.c:1063 Could not connect to LDAP server 1, reason: 49 (Invalid credentials).
    *Dot1x_NW_MsgTask_2: Nov 20 13:04:21.135: #LOG-3-Q_IND: ldap_db.c:1063 Could not connect to LDAP server 1, reason: 49 (Invalid credentials).[...It occurred 2 times.!]
    Server Index..................................... 1
    Address.......................................... *.*.*.*
    Port............................................. 389
    Server State..................................... Enabled
    User DN.......................................... DC=corp,DC=samint,DC=co,DC=za
    User Attribute................................... sAMAccountName
    User Type........................................ Person
    Retransmit Timeout............................... 2 seconds
    Secure (via TLS)................................. Enabled
    Bind Method ..................................... Authenticated
    Bind Username.................................... CN=PragasenK,OU=Admins,OU=IT,DC=corp,DC=samint,DC=co,DC=za
    (Cisco Controller) >show ldap statistics
    Server Index..................................... 1
    Server statistics:
      Initialized OK................................. 0
      Initialization failed.......................... 15
      Initialization retries......................... 15
      Closed OK...................................... 20
    Request statistics:
      Received....................................... 5
      Sent........................................... 0
      OK............................................. 0
      Success........................................ 0
      Authentication failed.......................... 0
      Server not found............................... 0
      No received attributes......................... 0
      No passed username............................. 0
      Not connected to server........................ 0
      Internal error................................. 5
      Retries........................................ 0
    (Cisco Controller) >show local-auth config
    User credentials database search order:
        Primary ..................................... LDAP
        Secondary ................................... Local DB
    Timer:
        Active timeout .............................. 300
    Configured EAP profiles:
    Name ........................................ SA_Mint-WiFi
    Certificate issuer ........................ cisco
    Peer verification options:
    Check against CA certificates ........... Enabled
    Verify certificate CN identity .......... Disabled
    Check certificate date validity ......... Enabled
    EAP-FAST configuration:
    Local certificate required .............. No
    Client certificate required ............. No
    Enabled methods ........................... tls fast 
    Configured on WLANs ....................... 1 
    EAP Method configuration:
    EAP-FAST:
          Server key ................................ <hidden>
          TTL for the PAC ........................... 10
          Anonymous provision allowed ............... Yes
          Authority ID .............................. 436973636f0000000000000000000000
          Authority Information ..................... Cisco A-ID

    Error Message    %AAA-3-LDAP_CONNECT_SERVER_FAILED: LDAP DB Task : Connect to
    server failed (retry [dec]), rc= [dec] ([chars])
    Explanation    LDAP DB Task connect to server failed.
    Recommended Action    Copy the message exactly as it appears on the console or in the system log. Research and attempt to resolve the issue using the tools and utilities provided at http://www.cisco.com/tac. With some messages, these tools and utilities will supply clarifying information. Search for resolved software issues using the Bug Toolkit at http://tools.cisco.com/Support/BugToolKit/. If you still require assistance, open a case with the Technical Assistance Center via the Internet at http://tools.cisco.com/ServiceRequestTool/create/launch.do, or contact your Cisco technical support representative and provide the representative with the information you have gathered.

  • Native ldap client doesn't work with an openldap Server : No root DSE data

    Hello!
    My configuration :
    - an openldap 2.2.23 server (linux debian) (server name = serv_annu)
    - a ldap client (solaris 10) (server name = client_annu)
    I want to configure my client by using Solaris Native ldap and I follow the excellent doc of gary tay (http://web.singnet.com.sg/~garyttt)
    I use TLS and I had generated a certificate by using Mozilla . TLS works because ldapsearch from my solaris client works:
    FROM CLIENT_ANNU:
    +# ldapsearch -h server_annu -p 636 -b"dc=mydomain,dc=fr" -s base -Z -P /var/ldap/cert8.db "objectclass=*"+
    version: 1
    dn: dc=mydomain,dc=fr
    dc: mydomain
    objectClass: top
    objectClass: dcObject
    objectClass: organization
    objectClass: nisDomainObject
    nisDomain: mydomain.fr
    o: mydomain
    LOG FROM SERVER_ANNU:
    Apr 2 09:52:40 server_annu slapd[17068]: conn=267 fd=10 ACCEPT from IP=172.30.69.216:36020 (IP=0.0.0.0:636)
    Apr 2 09:52:40 server_annu slapd[17068]: conn=267 op=0 SRCH base="dc=mydomain,dc=fr" scope=0 deref=0 filter="(objectClass=*)"
    Apr 2 09:52:40 server_annu slapd[17068]: conn=267 op=0 SEARCH RESULT tag=101 err=0 nentries=1 text=
    Apr 2 09:52:40 server_annu slapd[17068]: conn=267 op=1 UNBIND
    Apr 2 09:52:40 server_annu slapd[17068]: conn=267 fd=10 closed
    1) I add DUAConfigProfile.schema and solaris.schema on my openldap server.
    2) I add a nisDomainObject at the root DN (see the result of the ldapsearch above)
    3) I Add ACL in slapd.conf to allow reading of rootDSE.
    access to dn.base="" by ssf=128 * read
    4) I launch on my solaris client
    crle -u -s /usr/lib/mps
    crle -64 -u -s /usr/lib/mps/64
    5) I can't apply result.c patch on my openldap server (production server!) then I can't create /var/ldap/ldap_client_file and /var/ldap/ldap_client_cred by using ldapclient command. Then I create manually /var/ldap/ldap_client_file and /var/ldap/ldap_client_cred : the syntax is correct because the "ldapclient list" command works :
    +# ldapclient list+
    NS_LDAP_FILE_VERSION= 2.0
    NS_LDAP_BINDDN= uid=toto,ou=People,dc=people1,dc=mydomain,dc=fr
    +NS_LDAP_BINDPASSWD= {NS1}ecfa88f3a945c411+
    NS_LDAP_SERVERS= server_annu
    NS_LDAP_SEARCH_BASEDN= dc=mydomain,dc=fr
    NS_LDAP_AUTH= tls:simple
    NS_LDAP_CREDENTIAL_LEVEL= anonymous
    NOTE : I've had to add NS_LDAP_BINDDN and NS_LDAP_BINDPASSWD even if I use anonymous credential level because I get an error when I launch ldap client process.
    Then here, everything is apparently OK but when I enable ldap client process the cachemgr process is running about 30s then it crashes:
    FROM CLIENT_ANNU:
    svcadm disable /network/ldap/client;svcadm enable /network/ldap/client
    +/etc/init.d/nscd stop;/etc/init.d/nscd start+
    LOG FROM SERVER_ANNU:
    Apr 2 09:54:59 server_annu slapd[17068]: conn=268 fd=10 ACCEPT from IP=172.30.69.216:36021 (IP=0.0.0.0:389)
    Apr 2 09:54:59 server_annu slapd[17068]: conn=268 op=0 SRCH base="" scope=0 deref=0 filter="(objectClass=*)"
    Apr 2 09:54:59 server_annu slapd[17068]: conn=268 op=0 SRCH attr=supportedControl supportedsaslmechanisms
    Apr 2 09:54:59 server_annu slapd[17068]: conn=268 op=0 SEARCH RESULT tag=101 err=0 nentries=0 text=
    Apr 2 09:54:59 server_annu slapd[17068]: conn=268 op=1 UNBIND
    Apr 2 09:54:59 server_annu slapd[17068]: conn=268 fd=10 closed
    Apr 2 09:54:59 server_annu slapd[17068]: conn=269 fd=10 ACCEPT from IP=172.30.69.216:36022 (IP=0.0.0.0:389)
    Apr 2 09:54:59 server_annu slapd[17068]: conn=269 op=0 SRCH base="" scope=0 deref=0 filter="(objectClass=*)"
    Apr 2 09:54:59 server_annu slapd[17068]: conn=269 op=0 SRCH attr=supportedControl supportedsaslmechanisms
    Apr 2 09:54:59 server_annu slapd[17068]: conn=269 op=0 SEARCH RESULT tag=101 err=0 nentries=0 text=
    Apr 2 09:54:59 server_annu slapd[17068]: conn=269 op=1 UNBIND
    Apr 2 09:54:59 server_annu slapd[17068]: conn=269 fd=10 closed...
    FROM CLIENT ANNU :
    +# /usr/lib/ldap/ldap_cachemgr -g+
    cachemgr configuration:
    server debug level 0
    server log file "/var/ldap/cachemgr.log"
    number of calls to ldapcachemgr 2
    cachemgr cache data statistics:
    Configuration refresh information:
    Previous refresh time: 2008/04/02 09:58:12
    Next refresh time: 2008/04/02 21:58:12
    Server information:
    Previous refresh time: 2008/04/02 09:58:32
    Next refresh time: 2008/04/02 09:58:33
    server: server_annu, status: ERROR
    error message: No root DSE data returned.*
    Cache data information:
    Maximum cache entries: 256
    Number of cache entries: 0
    My problem is why I get the following error message : No root DSE data returned.
    Thanks in advance for your help!

    Hi
    Is your OpenLDAP server configured to allow anonymous read of the rootDSE attributes ?
    Regards,
    Ludovic.

  • FRM-40735 on the Web, in client/server without error

    We have 2 types of Form modules.
    Type 1 are simple multirecord modules,
    which uses PL/SQL library module PL1.plx.
    Type 2 are complex (master-detail) modules,
    which uses PL/SQL library module PL2.plx.
    In client/server, both types of Form modules work fine.
    On the Web (Intranet), type 1 modules works fine, but loading of type 2 modules finishes with error: FRM-40735 PRE-FORM trigger raised unhandled exception ORA-06508.
    In both cases database schema and fmx/plx modules are the same.
    Implementation of WebForms is noncartridge
    (without Oracle Application Server).
    Clients use Jinitiator and IE4.
    Forms version is 5 + patch 7.
    DBMS version is 7.3.4.0.
    Thanks and regards.

    Two questions:
    Are you running your application against one DB, while it was compiled against another?
    If any of your forms or libraries is calling DB stored package that are passing parameters in between database and modules?
    If the answer to both questions is yes, then you're dealing with Oracle bug. Oracle support points to interaction between forms
    PL/SQL 8.0.5.1.0 and database PL/SQL 2.3.4.
    This problem should be fixed in the forms
    PL/SQL 8.1.6 which is not available at present time. The only work around is to maintain forms executable and/or compiled libraries for each of your DB.
    Good luck.
    null

Maybe you are looking for

  • My HP Pavillion w/Windows XP will not recognize my new External HDD

     HP Pavillion w/Windows XP Media Center   m7267c Desktop PC Is it necessary to pay a outside Driver manager to restor the ability of my PC to instal Driver Software for devices that the specific Mfg states should already have present on my OS? I purc

  • How do i get out of full-screen view in Safari?

    When i am in full-screen view, the dock below disappears and so does the menu-bar above. Then I don't know how to get out of full-screen view. What should i do?

  • How to replace missing Keynote Font

    I just switched from MS powerpoint to Keynote. I could not be happier, well I could but I am happy The problem I have is that I ahve a good number of older presentations that I am working on that having missing fonts. I know how to add fonts to font

  • How to save a CWGraph into a bitmap (.bmp) file in Visual C++?

    I plot (chart) data into a graph control on a MFC dialog in Visual C++ and I need to save the image into a bmp file. I found the ControlImage method, but did not find any way to use it in Visual C++. I would also like to retrieve the chart data (the

  • Chapter markers created in DVD Studio Pro pause for a second on playback.

    I have been using the FCP suite for quite some time and we author a lot of DVD's in DVD Studio Pro. We produce many DVD's which require chapter breaks. My problem is that, when the DVD's we produce are played back, on most players the DVD will pause