User Login problems

Last night I booted up my laptop and logged in as usual.  However, when logging in, it took some time to log in.  I noticed that everything was reset to something similar to a new user.  It acted like my user login profile did not exist.  It did allow me to log in, but non of my application specific data, side bar, my documents, etc existed.  Everything was wiped clean.  All programs were still there, so no factory reset or restore was done.
Since I did a backup on the 11th, I decided to restore from that backup.  However, after multiple attempts to do so, I still get the same result everytime I restore.  My username exist, but the user profile data is gone and never shows up.
Did a scan disk as well and nothing found to be wrong with the hard drive.  The only thing I can think of, is Saturday before I shut down, there were some Windows updates that were installed.  I have not used my laptop till Wednesday evening.  Since my backup was before the windows update, I figured this would solve the issue but with no luck.
Any help would be appreciated.
Thanks, John

John, welcome to the forum,
could you please post which Windows and service pack level you have installed on the system, might be important
Andy  ______________________________________
Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
  Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
PepperonI blog 

Similar Messages

  • EP Performance Tunning and concurrent user login problems

    Hi all.
    We have a EP , integrated with Windows AD and SAP R3.
    In real situation, there will be 1000 users login in EP in 0.5 hours. And their operation time will be 6-8 hours, connect to R3 or other applications.
    Is EP can support such concurrent user login scenario ?
    if EP fails, is there some performance monitor tool or performance tunning issue ?

    Hi
    EP supports this logon load, however it all depends on sizing and architecture!  Also the content of the STARTPAGE can be critical (make it "light").
    If the portal fails, then often it is only one J2EE server process, which fails - so by having more server-processes will be an easy/minimum form of high availability.  A "real" HA solution must be considered if your business will not work without the portal og SAPGUI connections can be used as workaround/fallback in such situations.
    BR
    Tom Bo

  • Multiple user login problem with ADF

    Hi All,
    I am using Jdev 11g. I have an ADF application which is running inside JDev enbedded WLS. I implemented "Authentication Only" security into the application and created a few users. If I try to login/logout/re-login with individual user, all of users work perfectly. However, when I have one user already logged in, I open another browser and try to login with another user (or the same user), I always get an "Error 403--Forbidden" error. Basically I have an application which can only work for one user at one time. Does anyone know how to fix this problem so that I can have multiple users logged in at the same time?
    Thank you very much in advance,
    John

    Chris,
    Thank you for your response.
    I am using Firefox version 2.0.0.20. When I add the security component into my ADF application, I just take whatever it has by default without any customization. That includes default login.html and error.html. Here is my experience,
    1) Execute my starting task flow activity inside the JDeveloper. This will invoke a new login page in my default browser Firefox.
    2) Login the application with user "abc" and do something. Keep this session open.
    3) Open another Firefox browser and enter login URL. and then Login the application with user "xyz" (or even "abc"). I got the error page.
    To me, it should be basic web application behavior. I can do things like this in other J2EE application. This one doesn't make sense at all. I am not sure if this is the behavior I would see when I deploy it to a standalone WLS.
    Any ideas?
    Thanks,
    John

  • Crash Minidump/Restart at Shutdown inside login, but Shutdown before any user logins is ok.

    Crash Minidump/Restart at Shutdown inside login, but Shutdown is ok  before any user logins.  Just Started.  Windows says error report says to update Video Driver, But HP 235558hc has current valid driver.  4 Year Old HP Pavillion Quad with Windows Vista.   Crash stop is "0x00000076"   Nuissance Problem at this point.

    Dear HP Passport Forum,
    I rechecked the MS suggestions and reset the Video  to Performance setting and the crash has stopped.
    I did clean 3 fans in the PC, but am still looking for the Video Card Fan.
    Please drop by crash question.
    Thanks
    Graybeard2013

  • Using Session Variables for User Login - sometimes they don't persist... what am I doing wrong?

    Hi all,
    I'm running a site that requires user login.  I approached the building of this site as almost a complete newb to CF (and dynamic coding in general), and it's been a great learing experience (with lots of help from you guys).
    However, I guess I never learned the correct way to handle a user login.  It seemed to me that I could just test the user-entered credentials against those stored in a database, then set a session variable containg that user's record number.  Then, not only would I have an easy way of knowing who this user was and therefore what info to serve him, but I could test for the existence of a valid login on every page in the protected folder, by adding this code to my application.cfc in that folder:
    <cfset This.Sessionmanagement=true>
    <cfset This.Sessiontimeout="#createtimespan(0,8,0,0)#">
       <cfif NOT isDefined ("session.username") or NOT isDefined ("session.password") or NOT isDefined ("session.storeID")>
         <cflocation url="../index.cfm" addtoken="no">
       </cfif>
    ...and it goes on to run a query and verify that the session.username and session.password match for the store defined by session.storeID.  If not, all session variables are cleared and it bounces you back to the login page.  When the user clicks Logout, all I do is delete all the session variables.
    This seemed to work great for like a year, but lately I've been getting reports that the login doesn't seem to persist for longer than approx. 20 minutes of inactivity.  You can see I specified session variables to remain active for 8 hours (I know that seems like a drastically long login, but it's what's necessary for this application).  I've only gotten this report from a few people, and I myself can't seem to duplicate it... I've tested an inactive login for 45 minutes now and it held.
    SO:  any reason you can think of why session variables would be spontaneously clearing for some people?  Would having your router reset its IP address invalidate the session or something?  Also, the problem seemed to begin appearing after my host upgraded all their servers to CF9... could there be any relation?
    And on a more general note... did I go about this completely the wrong way to begin with?  If so, what's the standard way to manage a login?
    Lots of questions, I know... thanks very much for any answers or suggestions!
    Joe

    Ian,
    Thanks very much - very helpful information.
    Sounds like passing the tokens in every request is probably the way to go for this.  I don't think it's likely that any users will be sharing links, unless they actually intend for the recipient to see their info anyway.
    Is that all I would have to do, is add the tokens to every path?  Would that guarantee that all the session variables would remain valid until timeout or being cleared?
    Again, thanks, you've been really helpful.
    Joe
    On Jun 23, 2010 4:37 PM, Ian Skinner &lt;[email protected]&gt; wrote:
    Unfortunately this is the nature of HTTP web applications.  There is NO state maintained from HTTP request to request.  This is by design in the HTTP protocol specifications.
    ColdFusion provides two methods to circumvent this limitation.  Each method has limitations and caveats.  They both rely on the passing of tokens between the client and the server with every request.  These tokens can be passed as cookies OR URL (GET) variables.  You are using the cookie method, which is the simpler and most common. You may be experiencing the limitation of this method.  If something happens to the cookies the session can be lost.
    You could pass the (CFID &amp; CFTOKEN) OR JESSIONID tokens through the URL query string with every request.  This requires one to add these values to every link, form action, cflocation or other request path in our application.  ColdFusion provides the session.urltoken variable to make this easier to do.  The tokens will be visible to the user.  Also if the links with an individual token is share with other users, via e-mail, chat, social networks, etc and one of these users utilize the link during the life of a session (8 hours apparently in your case).  Then that user will access the session of the original user.
    Cookie session management is by far the most common choice by CF developers.  If these methods do not meet your needs you would need to go beyond the HTTP limitations of web applications.  One might be able to accomplish this with a Flex|Air|Flash applications that can be configured to use a continuous connection to the server.  Thus not suffer the stateless nature of the normal HTTP request-response cycle.
    I do not know if a router resetting would cause cookies to be discarded or otherwise invalidated.  But I would not think it is beyond the relm of possibilities.

  • How can  I  restrain the user login portal once, in the same time ???

    Hi
    I need to restrain the user can't repeat to login portal ....
    to reduce portal loading
    How can I restrain the user login portal once, in the same time???
    Which attributs in Identity Manager or amconsole I can do it to restrain the user ??
    tks

    Does your portal support anonymous access? If so, make sure you are using the authlessanonymous mode. This mode only creates one session that is shared for all anonymous users. This is much more efficient than anonymous access, which creates a session for each anonymous user.
    I have no other recommendation for limiting users to a single login. In general, web applications do not behave like this. What if a user closes their browser without logging out? Does the user have to wait until the session times out in order to log back in again?
    The same thing is true for users that are mobile. If a user leaves their office without logging out and then attempts to log in with a laptop in the conference room, then access will be denied in your implementation. Users do not expect this type of limitation being built into the system.
    If you are having problems scaling, then you need to look at your architecture and perhaps add some more resources. Also, make sure you are making efficient use of the authlessanonymous access mode as stated above.
    - Jim

  • How to  restrain the user login portal once, in the same time??

    Hi
    I need to restrain the user can't repeat to login portal ....
    to reduce portal loading
    How can I restrain the user login portal once, in the same time???
    Which attributs in Identity Manager or amconsole I can do it to restrain the user ??
    tks

    Does your portal support anonymous access? If so, make sure you are using the authlessanonymous mode. This mode only creates one session that is shared for all anonymous users. This is much more efficient than anonymous access, which creates a session for each anonymous user.
    I have no other recommendation for limiting users to a single login. In general, web applications do not behave like this. What if a user closes their browser without logging out? Does the user have to wait until the session times out in order to log back in again?
    The same thing is true for users that are mobile. If a user leaves their office without logging out and then attempts to log in with a laptop in the conference room, then access will be denied in your implementation. Users do not expect this type of limitation being built into the system.
    If you are having problems scaling, then you need to look at your architecture and perhaps add some more resources. Also, make sure you are making efficient use of the authlessanonymous access mode as stated above.
    - Jim

  • Solution for all your login problems !

    Hi everyone,
    Due to the problem of designing a Login solution experienced in this forum...i have a solution that takes care of this problem i will like us all share this and pls give me a feed back as to how it works for you or its efficiency.
    This solution has three parts.
    (a) The Bean
    (b) The HTML Page
    (c) The JSP Page
    XXXXXXXXXXXXXXXXXXX The Bean XXXXXXXXXXXXXXXXXXXXX
    // dsn name is test_register
    // table name is registrationDetails
    // package bsoft;
    import java.sql.*;
    public class LoginExample {
    private String username = "";
    private String password = "";
    public LoginExample() {
    public void setUsername(String username) {
    this.username = username;
    public void setPassword(String password) {
    this.password = password;
    public boolean authenticate(String username2, String password2) {
         String query="select * from RegistrationDetails";
         String DbsUserName="";
         String DbsPassword="";
         String finalUser="";
         try {       
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection con=DriverManager.getConnection("jdbc:odbc:test_register", "dataDB_uname", "dataDB_pass");
                   Statement stat=con.createStatement();
                   ResultSet rst=stat.executeQuery(query);
                   while(rst.next())
                        DbsUserName=rst.getString("UserName");
                        DbsPassword=rst.getString("password");
                        if (username2.equals(DbUserName) && password2.equals(DbPassword)) {
                        break;               
                   return true;
              }catch(Exception e){
                   e.printStackTrace();
                   return false;
    XXXXXXXXXXXXXXXXXXX The HTML LOGIN PAGE XXXXXXXXXXXXXXXXXXX
    <html>
    <head>
         <title> Olumide Bolusoft </title>
    </head>
    <body>
    <br>
    <p> <h3><center>Please enter your user name and password to login to Bolusoft Inc </center></h3></p>
    <br>
    <br>
    <form action="processLogin.jsp " method = "post� >
    <center>username</center>
    <center><input type = "text" name= "username"></center>
    <center>password</center>
    <center><input type = "password" name = "password"></center>
    <center><input type="submit" name="Submit" value="Login"></center>
    </form>
    </body>
    </html>
    XXXXXXXXXXXXXXXXXX The JSP PAGE XXXXXXXXXXXXXXXXXX
    <%@ page import="java.util.*" %>
    <jsp:useBean id="bsoftLogin" class="bsoft.LoginExample"/>
    <%
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    if(bsoftLogin.authenticate(username, password) ) {
    %>
    <jsp:forward page="success.jsp"/>
         <%
    } else {
    %>
    <jsp:forward page="errorRetry.jsp"/>
    <%
    %>
    N.B name this file as processLogin.jsp
    XXXXXXXXXXXXXXX The End XXXXXXXXXXXXXXXXXXXXXXXXX
    I hope this helps majority of us who are having problems with implementing a login solution.
    Also note that u can connect to any db of ur choice..the query syntax and connection parameters now depends on that supported by your DB.
    Thanks All
    Olumide B

    Hello
    I think u have used Model 1 Architecture.
    It would be great if u follow the MVC Architecture.
    What about this??
    Login.html -> User login Page.
    Login Servlet -> Handles Request from Login.html
    LoginBean -> Uses to validate the user.
    Success.jsp/Retry.jsp -> The Final page that will be displayed.
    Am also new to Java Server Side programming.
    Suggestions are always welcome.
    Sathish

  • IM Login problem Error while doing the search

    Hi people,
    I'm facing some strange behaviour with login for a couple of users, I have users that don't have problems to login and I have user that can't login, I'm sure that all of them are valid because they're login to Portal Server, and then launch the IMClient using SSO, users that can achieved the login can't found users that can't login using the "add contact" button of the IMClient.
    In the javaws console I'm seeing this exceptions when a user can't login:
    30 Oct 2007 14:02:18,898] [xmpp] [javawsApplicationMain] org.netbeans.lib.collab.CollaborationException: Error while doing the search
    org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:330)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:262)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.getUserAttributes(XMPPPersonalStoreService.java:1211)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.getPrivateQuery(XMPPPersonalStoreService.java:1289)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.getProfile(XMPPPersonalStoreService.java:419)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.getProfile(XMPPPersonalStoreService.java:240)
         at com.iplanet.im.client.manager.CurrentUserManager.getCurrentProfile(CurrentUserManager.java:350)
         at com.iplanet.im.client.manager.Manager.login(Manager.java:1255)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog.login(DefaultLoginDialog.java:550)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog.connect(DefaultLoginDialog.java:540)
         at com.iplanet.im.client.iIM.startLogon(iIM.java:464)
         at com.iplanet.im.client.iIM.init(iIM.java:203)
         at com.iplanet.im.client.iIM.main(iIM.java:950)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.javaws.Launcher.executeApplication(Launcher.java:1171)
         at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1118)
         at com.sun.javaws.Launcher.continueLaunch(Launcher.java:961)
         at com.sun.javaws.Launcher.handleApplicationDesc(Launcher.java:515)
         at com.sun.javaws.Launcher.handleLaunchFile(Launcher.java:218)
         at com.sun.javaws.Launcher.run(Launcher.java:165)
         at java.lang.Thread.run(Thread.java:595)
    /home/lalo/.sunmsgr/mx_m53852_latam_int_bbvabancomer_com_mx/messages/scripts/scripts.txt
    [SafeResourceBundle] Missing resource key: iIMFrame_title
    [Fatal Error] :1:2908: The element type "body" must be terminated by the matching end-tag "</body>".
    com.sun.im.service.CollaborationException: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sun.im.service.util.ReflectUtil.getDelegatorObject(ReflectUtil.java:27)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:179)
         at com.iplanet.im.client.manager.UserCache.getPrincipal(UserCache.java:161)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:977)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:938)
         at com.iplanet.im.client.manager.BuddyListManager.loadBuddyListNow(BuddyListManager.java:430)
         at com.iplanet.im.client.manager.BuddyListManager.init(BuddyListManager.java:200)
         at com.iplanet.im.client.swing.communicator.Communicator.<init>(Communicator.java:316)
         at com.iplanet.im.client.swing.BuddyList.showBuddyList(BuddyList.java:187)
         at com.iplanet.im.client.iIM.showBuddyList(iIM.java:1105)
         at com.iplanet.im.client.swing.Client.openNetlertViews(Client.java:379)
         at com.iplanet.im.client.swing.Client.showViews(Client.java:150)
         at com.iplanet.im.client.iIM.loadNetLert(iIM.java:613)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog$1.run(DefaultLoginDialog.java:610)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:330)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:262)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:171)
         ... 19 more
    [Fatal Error] :1:2908: The element type "body" must be terminated by the matching end-tag "</body>".
    com.sun.im.service.CollaborationException: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sun.im.service.util.ReflectUtil.getDelegatorObject(ReflectUtil.java:27)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:179)
         at com.iplanet.im.client.manager.UserCache.getPrincipal(UserCache.java:161)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:977)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:938)
         at com.iplanet.im.client.manager.BuddyListManager.loadBuddyListNow(BuddyListManager.java:430)
         at com.iplanet.im.client.manager.BuddyListManager.init(BuddyListManager.java:200)
         at com.iplanet.im.client.swing.communicator.Communicator.<init>(Communicator.java:316)
         at com.iplanet.im.client.swing.BuddyList.showBuddyList(BuddyList.java:187)
         at com.iplanet.im.client.iIM.showBuddyList(iIM.java:1105)
         at com.iplanet.im.client.swing.Client.openNetlertViews(Client.java:379)
         at com.iplanet.im.client.swing.Client.showViews(Client.java:150)
         at com.iplanet.im.client.iIM.loadNetLert(iIM.java:613)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog$1.run(DefaultLoginDialog.java:610)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: org.netbeans.lib.collab.CollaborationException: Error while doing the search
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:330)
         at org.netbeans.lib.collab.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:262)
         at com.sun.im.service.xmpp.XMPPPersonalStoreService.searchPrincipals(XMPPPersonalStoreService.java:171)
         ... 19 more
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:977)
         at com.iplanet.im.client.manager.BuddyListManager.addBuddyListGroupMember(BuddyListManager.java:938)
         at com.iplanet.im.client.manager.BuddyListManager.loadBuddyListNow(BuddyListManager.java:430)
         at com.iplanet.im.client.manager.BuddyListManager.init(BuddyListManager.java:200)
         at com.iplanet.im.client.swing.communicator.Communicator.<init>(Communicator.java:316)
         at com.iplanet.im.client.swing.BuddyList.showBuddyList(BuddyList.java:187)
         at com.iplanet.im.client.iIM.showBuddyList(iIM.java:1105)
         at com.iplanet.im.client.swing.Client.openNetlertViews(Client.java:379)
         at com.iplanet.im.client.swing.Client.showViews(Client.java:150)
         at com.iplanet.im.client.iIM.loadNetLert(iIM.java:613)
         at com.iplanet.im.client.swing.login.DefaultLoginDialog$1.run(DefaultLoginDialog.java:610)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)All of the users are under the same ldap branch, and previously I ran the command: /opt/SUNWiim/sbin/imadmin assign_services, for that ldap branch.
    Any suggestion? Thanks in advance....

    Finally we found the cause of the problems, for an strange reason if the user has the character '�' in his 'cn' o 'sn' he can't login, for example:
    bash-3.00# ldapsearch -x -h ldap -p 389 -b "c=mx,o=isp" -D "cn=DirectoryManager" -w password "cn=mx.m524217" cn sn uid
    version: 1
    dn: cn=mx.m524217, ou=people, c=mx, o=isp
    uid: m524217
    sn: VERA TREVI�O
    cn: mx.m524217
    When a user login to IM made a search of users if he search a user that can't login that search doesn't found nothing and the exception I posted before appears in the javaws console.
    But this only happened while we are using the gateway, if we point to the IM multiplexor directly we don't have all of this problems.
    Regards..

  • Oracle 10g express edition browser login problem

    Hi
    I installed oracle 10g express edition and after installing successfully logged in browser , unlocked hr login and also created one form then I shutdown the database and rebooted my pc and since then when I try to login to "go to Database Home page" after starting database , I get a cookie 127.0.0.1 with username and password, First of all I am not sure what username/password it is expecting, I believe it requires my Windows XP username and password , I tried to enter couple of times my pc login username which has administrator privileges, I also checked it has ora_dba group but after entering pc username , password browser opens saying "unauthorized". I created another os user and tried with that still same. I tried entering oracle password "SYSTEM" and password for it but still could not login, I tried HR username password still nothing.
    I tried disabling firewall but still same issue. I tried to re-install two time but still same .
    Start database dos prompt does show all the process are started successfully .
    I also did ping for 127.0.0.1 and it does ping.
    I tried everything what I knew.
    Can anyone please help me ..to resolve this issue .

    Hi
    This is how I resolved the browser login problem .
    I checked the listener log
    C:\OracleXE\app\oracle\product\10.2.0\server\NETWORK\log
    And found the error
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
    TNS-00512: Address already in use
    I have another version for oracle installed on my pc .
    I ended both the oracle process (Oracle.exe) through the Task Manager
    Then manually started “OracleServiceXe” service through Component Services
    Control Panel – Performance & Maintenance – Administrative – Component Services
    Then did following
    Programs – Oracle Database10g ExpressEdition – Start Database
    Programs – Oracle Databse10g ExpressEdition – Go to Database Homepage –
    Enter username SYSTEM
    Enter password xxxxxx … whatever given at the time of installing.
    And I did successfully login to the browser .
    Hope this will help to those of you who have run into similar problem which I faced
    Good Luck .
    A. Patil

  • 802.1X wirelss restriction on User Login policies

    Hi all,
    Seeking some technical idea on Wireless 802.1x setup.
    Business requirement is:
    "User login policy: to limit the number of concurrent login by a single user only apply to one device at any given time. "
    There is no problem on PEAP/MSCHAPv2 login, only thing is the same user credential able to be use and login on multiple device, in the same time.
    On the NAD part, we configure these on WLC but still cannot achieve our objective
    - advanced eap max-login-ignore-identity-response disable
    - netuser maxuserLogin 1
    Seeking technical solution on this case, please advice. Is there anything need to tweak on the directory server or ACS part?
    The components using as below:
    Supplicant 1: Window 7, authentication method using PEAP/MSCHAPv2
    Supplicant 2: iPhone iOS version 6.x
    Authenticator: Cisco Wireless Controller 5800 Series on code version 7.2
    Authentication server: Cisco secure server ACS 5.3.0.40
    Identity Source : Microsoft server 2008 R2 ADDS, single forest single domain.
    attached the network diagram: topo1.png

    http://www.cisco.com/c/en/us/support/docs/wireless/5500-series-wireless-controllers/112175-acs51-peap-deployment-00.html

  • GRC AC 10.1 - End User Login - Request issue

    Hi experts!
    Im working in GRC AC 10.1 SP07. I have configured END USER LOGIN services; the idea is that end user from ECC system could submit request without having user in GRC box, this is working fine but i´m experimenting next problem.
    When i go to search request, those request submited by end user appears like created by Z_END_USER, this is the user in GRC that i have configured in services GRAC_UIBB_END_USER_LOGIN and GRAC_OIF_REQUEST_SUBMISSION_EU.
    ¿Is possible to configure that request appears "Created By" the requester and not the service´s user? I don´t think so, but if not, ¿is there any way to add the column User ID in Result screen? because it is avaible in parameters search but im not being able to add this in result screen (it´s not like hidden neither).
    Parameters "Created by user ID" would be service´s user and "User ID" would be the requester.
    Thanks!
    Emiliano

    Hi Emiliano,
    Your understanding is correct, request created by UserID will always show GUEST UserID configured in the End User Logon service.
    In search requests there is option to search requests by UserID but the same field has not been enabled to be available in Search Request result screen. This is as per standard functionality. You can check with SAP or can work with ABAPer to make the UserID column as display field in Search Request results.
    Regards,
    Madhu.

  • Unable to view user login in OS X Lion 10.7.3 startup

    unable to view user login in OS X Lion 10.7.3 startup.  I had made some changes in icloud settings & by mistake must have checked some option related to username & password. Also when i turn my macbook pro on, i can see the grey background with apple logo, however it does not show my image & login password space. thus i'm unable login to my system. please help

    hey ..was able to solve the problem,,had selected "name & password" in "display login window" option of "user & group" of system preference. That's why was unable to view my login username.
    How i resolved it - after turning my macbook pro on, i pressed "shift" key...that way it opened in safe mode...& then went to system prefernce & again selected the previous option of "list of users" in display login window option. nyways thanx for helping out

  • Anonymous User Login

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

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

  • Generate User Login in "Create User" Request

    Hi Guys,
    I have more a problem. To create user, I am using a Request (Create User Template), I managed add the attributes that would necessary normally, but I use a Event Handler (Post-Process) to generate user login. So I marked the User Login in Attributes Restrictions, fixing an user login default for example: autogenerate.
    Then I created a new request to create user, I filled out all the fields that I marked to appear. I approved this request, and the user is created with the User Login generate by my Event Handler normally. The issue is, when I create 2 create user requests, as I use a Default value in the User Login attribute, if the first request still isn't approved, the second request isn't created because the "autogenerate" user login already being used.
    Exists some otherwise to I resolve this issue?
    Thanks

    Hi Bikash,
    Use a prepopulate adapter an attribute with timestamp is nice idea, but I use the "Create User" template CreateUserDataSet.xml and not exists a form in Design Console to associate the prepopulate adapter.
    I had thought in eventhundler because I use a method that check on Active Directory if the user login generated by other method, already is being used. And I use this eventhandler in HR GTC recon too.
    About XL.LDAPReservationPluginImpl, I opened the oracle.iam.identity.usermgmt.impl.plugins.reservation.ReservationInOID but I not understood as use this option. If I needs add in this class my method of generate user login. If I needs implement an new class similar to this class, using my methods and associate the name of class in XL.LDAPReservationPluginImpl.
    Thanks a lot

Maybe you are looking for

  • Item user status at plant level

    Hi All I have configured certain User Status which are assigned to Item category. Item category is used in all the plants but user status is applicable for only few plants. So User status will also appear in those plants where it is not applicable. I

  • Two HDDs saying 'disk needs to be repaired' at same time / external drive.

    Hello there, I have had a strange problem within the last couple of days. Both my iMac which I use at the office and my MacBook Pro have had problems writing to an external FW800 drive which I work directly off [the error comes when I try and save fr

  • Help!! PROC  program

    Hello REDHAT 8 and Oracle 920 When I make sample proc program the message as follow cc -o tst sample1.o -L/oracle/product/8.1.7/lib/ -lclntsh `cat /oracle/productm sample1.o: In function `main': sample1.o(.text+0x67b): the `gets' function is dangerou

  • Jdbc statement in case of an unknown database operation

    hi, in an application in java, which makes connection to the database using JDBC, if for eg, i am not sure if the statement is going to be a select or update or insert, which method of Statement i should be using. ? Thanx.

  • Need to re-install CS4 student ed. No longer have serial number.

    Hi– I purchased CS4 Design Standard Student edition in 2010. The licensing is no longer functioning, and Acrobat Pro 9 is telling me it won't open unless I open a CS program. I still have the case and the coupon code for CS4, but I no longer have the