Gnome screen lock does not prompt for password

Whenever I lock my screen under gnome, I am never prompted for password when unlocking.
Does anyone know how to solve this issue?

Do you have fprintd installed? I ask because I found the following openSUSE bug report: http://lists.opensuse.org/opensuse-bugs … 01518.html

Similar Messages

  • SSH - Failure to connect, does not prompt for password,

    I have been using SSH on this iMac with 10.5.4 for over a year, upgraded to Leopard when it came out, never a problem with SSH, but now for no apparent reason, SSH fails when trying to connect through VPN into work.
    I can still connect to other systems on the internet that are not through the VPN.
    I don't suspect this to be a VPN issue because no other employees are having this problem with the VPN, using Mac, Windows or Linux. I can connect vi putty on my windows from the same network... below is my config.
    Here is what I'm getting:
    I connect as- ssh me@hostname and it returns "Permission denied (publickey)." It makes to attempt to prompt me for a password. I do not use a key on this system so it should prompt me for a password. I changed nothing on the system to cause ssh to break, But it's possible that a apple security update caused something to break.
    I have added the following to my ~/.ssh/config file
    PasswordAuthentication yes
    My /etc/ssh_config file is as follows:
    cat /etc/ssh_config
    # $OpenBSD: ssh_config,v 1.22 2006/05/29 12:56:33 dtucker Exp $
    # This is the ssh client system-wide configuration file. See
    # ssh_config(5) for more information. This file provides defaults for
    # users, and the values can be changed in per-user configuration files
    # or on the command line.
    # Configuration data is parsed as follows:
    # 1. command line options
    # 2. user-specific file
    # 3. system-wide file
    # Any configuration value is only changed the first time it is set.
    # Thus, host-specific definitions should be at the beginning of the
    # configuration file, and defaults at the end.
    # Site-wide defaults for some commonly used options. For a comprehensive
    # list of available options, their meanings and defaults, please see the
    # ssh_config(5) man page.
    # Host *
    # ForwardAgent no
    # ForwardX11 no
    # RhostsRSAAuthentication no
    # RSAAuthentication yes
    PasswordAuthentication yes
    # HostbasedAuthentication no
    # GSSAPIAuthentication no
    # GSSAPIDelegateCredentials no
    # GSSAPIKeyExchange no
    # GSSAPITrustDNS no
    # BatchMode no
    # CheckHostIP yes
    # AddressFamily any
    # ConnectTimeout 0
    # StrictHostKeyChecking ask
    # IdentityFile ~/.ssh/identity
    # IdentityFile ~/.ssh/id_rsa
    # IdentityFile ~/.ssh/id_dsa
    # Port 22
    # Protocol 2,1
    # Cipher 3des
    # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
    # EscapeChar ~
    # Tunnel no
    # TunnelDevice any:any
    PermitLocalCommand yes
    My /etc/sshd_config is:
    cat /etc/sshd_config
    # $OpenBSD: sshd_config,v 1.72 2005/07/25 11:59:40 markus Exp $
    # This is the sshd server system-wide configuration file. See
    # sshd_config(5) for more information.
    # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
    # The strategy used for options in the default sshd_config shipped with
    # OpenSSH is to specify options with their default value where
    # possible, but leave them commented. Uncommented options change a
    # default value.
    #Port 22
    #Protocol 2,1
    Protocol 2
    #AddressFamily any
    #ListenAddress 0.0.0.0
    #ListenAddress ::
    # HostKey for protocol version 1
    #HostKey /etc/sshhostkey
    # HostKeys for protocol version 2
    #HostKey /etc/sshhost_rsakey
    #HostKey /etc/sshhost_dsakey
    # Lifetime and size of ephemeral version 1 server key
    #KeyRegenerationInterval 1h
    #ServerKeyBits 768
    # Logging
    # obsoletes QuietMode and FascistLogging
    SyslogFacility AUTHPRIV
    #LogLevel INFO
    # Authentication:
    #LoginGraceTime 2m
    #PermitRootLogin yes
    PermitRootLogin no
    #StrictModes yes
    #MaxAuthTries 6
    #RSAAuthentication yes
    #PubkeyAuthentication yes
    #AuthorizedKeysFile .ssh/authorized_keys
    # For this to work you will also need host keys in /etc/sshknownhosts
    #RhostsRSAAuthentication no
    # similar for protocol version 2
    #HostbasedAuthentication no
    # Change to yes if you don't trust ~/.ssh/known_hosts for
    # RhostsRSAAuthentication and HostbasedAuthentication
    #IgnoreUserKnownHosts no
    # Don't read the user's ~/.rhosts and ~/.shosts files
    #IgnoreRhosts yes
    # To disable tunneled clear text passwords, change to no here!
    #PasswordAuthentication yes
    #PermitEmptyPasswords no
    # SACL options
    #SACLSupport yes
    # Change to no to disable s/key passwords
    #ChallengeResponseAuthentication yes
    # Kerberos options
    #KerberosAuthentication no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes
    #KerberosGetAFSToken no
    # GSSAPI options
    #GSSAPIStrictAcceptorCheck yes
    #GSSAPIKeyExchange yes
    # GSSAPI options
    #GSSAPIAuthentication yes
    #GSSAPICleanupCredentials yes
    # Set this to 'yes' to enable PAM authentication, account processing,
    # and session processing. If this is enabled, PAM authentication will
    # be allowed through the ChallengeResponseAuthentication mechanism.
    # Depending on your PAM configuration, this may bypass the setting of
    # PasswordAuthentication, PermitEmptyPasswords, and
    # "PermitRootLogin without-password". If you just want the PAM account and
    # session checks to run without PAM authentication, then enable this but set
    # ChallengeResponseAuthentication=no
    #UsePAM yes
    #AllowTcpForwarding yes
    #GatewayPorts no
    #X11Forwarding no
    #X11DisplayOffset 10
    #X11UseLocalhost yes
    #PrintMotd yes
    #PrintLastLog yes
    #TCPKeepAlive yes
    #UseLogin no
    #UsePrivilegeSeparation yes
    #PermitUserEnvironment no
    #Compression delayed
    #ClientAliveInterval 0
    #ClientAliveCountMax 3
    #UseDNS yes
    #PidFile /var/run/sshd.pid
    #MaxStartups 10
    #PermitTunnel no
    # no default banner path
    #Banner /some/path
    # override default of no subsystems
    Subsystem sftp /usr/libexec/sftp-server
    # Example of overriding settings on a per-user basis
    #Match User anoncvs
    # X11Forwarding no
    # AllowTcpForwarding no
    # ForceCommand cvs server

    Also I forgot to mention, I have nulled out the known_hosts file to eliminate any conflicts there, I have verified .ssh is 700 and files config and known_hosts are 600
    output using ssh -v
    debug1: Reading configuration data /Users/<me>/.ssh/config
    debug1: Reading configuration data /etc/ssh_config
    debug1: Connecting to pshx4105a [216.255.177.213] port 22.
    debug1: Connection established.
    debug1: identity file /Users/<me>/.ssh/identity type -1
    debug1: identity file /Users/<me>/.ssh/id_rsa type -1
    debug1: identity file /Users/<me>/.ssh/id_dsa type -1
    debug1: Remote protocol version 2.0, remote software version OpenSSH_4.5p1 FreeBSD-20061110
    debug1: match: OpenSSH_4.5p1 FreeBSD-20061110 pat OpenSSH*
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-OpenSSH_4.7
    debug1: SSH2MSGKEXINIT sent
    debug1: SSH2MSGKEXINIT received
    debug1: kex: server->client aes128-cbc hmac-md5 none
    debug1: kex: client->server aes128-cbc hmac-md5 none
    debug1: SSH2MSG_KEX_DH_GEXREQUEST(1024<1024<8192) sent
    debug1: expecting SSH2MSG_KEX_DH_GEXGROUP
    debug1: SSH2MSG_KEX_DH_GEXINIT sent
    debug1: expecting SSH2MSG_KEX_DH_GEXREPLY
    debug1: Host 'pshx4105a' is known and matches the DSA host key.
    debug1: Found key in /Users/<me>/.ssh/known_hosts:3
    debug1: sshdssverify: signature correct
    debug1: SSH2MSGNEWKEYS sent
    debug1: expecting SSH2MSGNEWKEYS
    debug1: SSH2MSGNEWKEYS received
    debug1: SSH2MSG_SERVICEREQUEST sent
    debug1: SSH2MSG_SERVICEACCEPT received
    debug1: Authentications that can continue: publickey
    debug1: Next authentication method: publickey
    debug1: Trying private key: /Users/<me>/.ssh/identity
    debug1: Trying private key: /Users/<me>/.ssh/id_rsa
    debug1: Trying private key: /Users/<me>/.ssh/id_dsa
    debug1: No more authentication methods to try.

  • OVM Server 2.1.2 does not prompt for Networking

    OVM Server 2.1.2 does not prompt for a network setup (ie DHCP or static IPs).
    - I tried re-installing this several times
    This same machine works with native Enterprise Linux 5.2 x86-64 networking.
    The motherboard has two onboard Realtek 8111C chips (10/100/1000 Mbit)
    http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2842
    Will setting up networking by hand work with OVM Server 2.1.2?

    OK I finaly made my Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller to work.
    First install an Ethernet card in your box that OVM supports. This to make the OVM installation run smoothly.
    When OVM is up and running follow the steps in [Mini-HOWTO] RPMs needed to compile a kernel-module on / for VM Server to get a working environment to compile modules.
    Now get the driver for the unsupported card from ftp://61.56.86.122/cn/nic/r8168-8.008.00.tar.bz2 .
    Unpack the file by running;:
    tar -jxvf r8168-8.008.00.tar.bz2
    Now follow the steps in the included readme file to compile and install the driver.
    After this I edited the file /etc/modules.conf and changed the line
    alias eth0 xxx
    to
    alias eth0 r8168
    I then turned of the machine and removed my temporary network card.
    When booted I ran system-config-network to configure the network once more to the original values I entered when I installed.

  • Send to OneNote from Outlook does not prompt for location

    Hello
    Since the most recent update, the Send To OneNote feature in Outlook does not prompt for a location but seems to be defaulting to the same notebook each time - even if it is not the active notebook. I've tried repairing Office 365 but it did not work. Is
    this a known issue?
    Thank you
    Simon

    Hi,
    Just checking in to see if the information was helpful. Please let us know if you would like further assistance. 
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Login screen does not ask for password when logging into user account

    This is an issue that did not immediately manifest itself after I have upgraded to Snow Leopard. I am not sure what exactly triggered it.
    Anyway, now at the login screen if I choose to login with my own user account, i.e. clicking on the icon associated to my user account, I am not prompted for the password and the system seems to start trying to login, as there is a discernible pause. Obviously that will fail, and I am returned to the login screen again.
    If I choose the other user option, as before I will be allowed to manually type in an user id and password, and using this way I am able to login into my own account (previously I only use this for logging in to the root account).
    Any idea on how I can make the field for typing in the password appear again? Thanks.

    Just to report that deleting /Library/Preferences/com.apple.loginwindow.plist did not help.
    Anyway I installed Snow Leopard again and the problem went away. Hope I will not do something that will trigger it again.

  • ADF panel does not prompt for variable defined in ADF view object.

    I have created an ADF Panel, which allows the user to run a few simple queries against an Oracle database done using ADF view objects and ADF view links and ADF application module.
    One of these queries lookup detail information about a given database object (Table, view or whatever) from dba_objects. The SQL uses a parameter (:P_OBJ_NAME) that has a default value of “Departments”. If I run the ADF application module by itself outside of the ADF panel, all works fine, it prompts me to provide a value for the parameter :P_OBJ_NAME.
    As I said the panel contains the different ADF view links including the one that should prompt the user to provide a value for :P_OBJ_NAME. When I run the panel it does not prompt me for :P_OBJ_NAME, it just uses the default defined value “departments”.
    I hope I described my problem for every one to understand. The question obviously is how do I get the ADF panel to prompt the user to provide a value for parameter :P_OBJ_NAME, my expectation was that since the sql in the view object and the application module both are designed to prompt for a value for this parameter then the panel should do just that but it does not.
    You expert input would be most appreciated.
    Thanks.
    Bobby A.
    Edited by: Babak Akbari on Aug 13, 2009 8:34 AM
    Edited by: Babak Akbari on Aug 13, 2009 11:12 AM

    The prompting for a parameter is a feature we built into the ADF Tester - it is not a default behavior you get in your application when you just place a VO on your page.
    To get something like this expend the operations node under the VO in the data control palette, and drag the "Execute with parameters" operation to your page to drop it as a parameter form.
    This will provide your user a place to fill out the parameter and press a button to execute the query.

  • My iphone does not ask for password for itunes

    Ever since I installed ios 6 to my 2 iphone 4's. It does not ask for a password to download games or make purchases. I have a 5 year old son who can now purchase at will, how do I reset or fix that? Where is my security?

    Thanks for letting me know. I never even checked to see if it was configurable.
    Edit: I don't see where you can turn enable or disable the requirement for a passcode for udates? Can you tell me where to find it? The path you referred to only seems to relate to purchases.

  • Application Server Control does not ask for password

    Hi all-
    I just installed App Server (as part of Collaboration Suite) and am working on security. For some reason, the App Server Control for the apps tier does not ask for a username/password. Anyone know how to fix that glaring hole? Infrastructure does ask for user/pass, just not apps.
    Thanks!
    Rob

    I had to clear authenticated sessions AND cookies (in Firefox). Clearing only one or the other isn't enough.
    Rob

  • Windows 8 setup does not prompt for license key, then fails, on hp envy notebook

    Hi,
    I am trying to install Windows 8 pro on an hp envy dv7 notebook, that came with a Windows 8 home pre-installed.
    I tried by running the setup from the CD inserted while Windows was running, but setup complained that no license key matched the CD and faled. Strange enough,
    setup did not prompt for any license key!
    I tried the setup on another, older PC, there it did prompt for license key and setup ended well. At least it was not the CD.
    Then I retried booting from setup CD, it loaded files, then started the setup without promptiing for any license key, and failed again.
    Then I tried with a Windows 7 CD, same behavior, not prompting for license key and fail to setup.
    Then I "repaired" Windows by booting from CD and reformatting the hard drive, dropping all Windows partitions, then restart setup from CD, but it still behaved the same way: not prompting for license key, and failing to setup.
    I called the HP support, and they answered that it was a problem for Microsoft (what a good support, the only place where the problem occurs is the hp computer, but let the Customer call Microsoft instead).
    So here I am, did any of you use an hp computer, and succeeded in installing Windows 8 PRO NFR from Technet plus on it?
    Regards
    Pierre

    Hi,
    I am trying to install Windows 8 pro on an hp envy dv7 notebook, that came with a Windows 8 home pre-installed.
    I tried by running the setup from the CD inserted while Windows was running, but setup complained that no license key matched the CD and faled. Strange enough,
    setup did not prompt for any license key!
    I tried the setup on another, older PC, there it did prompt for license key and setup ended well. At least it was not the CD.
    Then I retried booting from setup CD, it loaded files, then started the setup without promptiing for any license key, and failed again.
    Then I tried with a Windows 7 CD, same behavior, not prompting for license key and fail to setup.
    Then I "repaired" Windows by booting from CD and reformatting the hard drive, dropping all Windows partitions, then restart setup from CD, but it still behaved the same way: not prompting for license key, and failing to setup.
    I called the HP support, and they answered that it was a problem for Microsoft (what a good support, the only place where the problem occurs is the hp computer, but let the Customer call Microsoft instead).
    So here I am, did any of you use an hp computer, and succeeded in installing Windows 8 PRO NFR from Technet plus on it?
    Regards
    Pierre
    Is it a Chinese Editon preinstalled in HP notebook?
    Windows 8 preinstall machine includes a license key in system firmware. So Windows 8 setup will use this key rather than pop up product key input text pop. It is a Microsoft by design issue. So no good mathod to workaround this problem.
    http://whqlcn.wordpress.com

  • Ipad not prompting for password when trying to access a wireless router

    bought new ipad cannot access internet thru wireless router have 2 iphones that work.  try to access a protected wireless network but is not asked for password just told cannot access.

    This link may be helpful.
    http://support.apple.com/kb/TS1398

  • Gnome-keyring + networkmanager: Not prompting for password

    I recently shifted from wicd to networkmanager & I want it to be that way. There is one problem that's troubling me. As a non-root user, if I connect to a new network, the nm-applet doesn't ask for passwords.
    The logs say:
    2014-07-19T08:29:45.217385+05:30 archlinux NetworkManager[20784]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
    2014-07-19T08:29:45.217385+05:30 archlinux NetworkManager[20784]: <info> Activation (wlan0/wireless): access point 'my access point name' has security, but secrets are required.
    I run "awesome wm" and I've configured gnome-keyring via the "pam" method & I believe that it works.
    ➜ 0 /home/shadyabhi [ 9:09AM] % echo $SSH_AUTH_SOCK
    /run/user/1000/keyring/ssh
    ➜ 0 /home/shadyabhi [ 9:09AM] % echo $GPG_AGENT_INFO
    /run/user/1000/keyring/gpg:0:1
    ➜ 0 /home/shadyabhi [ 9:09AM] % ss -xl | grep -o '/run/user/1000/keyring/ssh'
    /run/user/1000/keyring/ssh
    ➜ 0 /home/shadyabhi [ 9:09AM] %
    Running "sudo nm-applet" from terminal recognizes gnome-keyring.
    ➜ 2 /home/shadyabhi [ 8:38AM] % sudo nm-applet
    (nm-applet:21840): libnotify-WARNING **: Failed to connect to proxy
    (nm-applet:21840): nm-applet-WARNING **: Failed to show notification: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .servi
    ce files
    nm-applet-Message: No keyring secrets found for "my access point name"/802-11-wireless-security; asking user.
    Can anyone help me in finding out what might be wrong? Thanks.

    I had the same issue. Turns out I was using SLiM with auto_login enabled, which doesn't unlock the GNOME keyring on login (see this post). Changing auto_login to false solved the issue.

  • New Mac Book Pro does not ask for password when waking from sleep

    I've noticed that several others are having this problem. I have tried all of the suggestions on the other posts and have had no luck getting it to work.
    I have it set to "require password to wake this computer from sleep or screensaver".
    When I wake the computer in the morning it requires a password but if I wake it after and hour or two it does not. I have my screensaver set to turn on after 4 minutes but it never asks for a password when when I come back to my computer.
    I think this is a bug and Apple should deal with it in a security update.
    I'm open to any more suggestion though.
    Thanks,
    Tevadar

    FYI, you can also lock your screen manually if you like. Launch Applications > Utilities > Keychain Access, select Keychain Access menu > Preferences > General tab, and check the box to "Show Status in Menu Bar." That places a padlock icon in your menu bar, and clicking on that will give you the option to Lock Screen.

  • Adobe Creative Cloud Window Blank and Does not Prompt for Login?

    I have three computers right now. One 2010 iMac, one 2012 Macbook Pro and a new 2014 Macbook pro. I have logged out and uninstalled creative cloud from the iMac. After buying the new MacBook Pro (2014) I have used the 2012 laptop to copy my entire user profile onto the newer laptop (including Adobe applications and creative cloud). However, when I try to open a Premiere project from the external drive I have been working off of, I get this message:
    Adobe Application Manager is needed to resolve this problem. However, it is missing or damaged. Please download and install a new copy of the Application manager from 'http://www.adobe.com/go/applicationmanager'.
    When I go to that link, I get a prompt to download creative cloud (not application manager). I of course download Creative Cloud again and am given the steps to install but once the Creative Cloud installation progress bar finishes up and CC opens up, the window is blank and I am not asked to login or do anything. I cannot access any projects or login to my CC account on this new computer whatsoever.
    I have deleted the opm.db file in the "OOBE" folder and I have restarted the application. I have uninstalled and reinstalled. I have restarted my computer. I have tried everything for the past few hours and have made absolutely no progress.
    I am pretty stressed about this as the projects I have to work on are time sensitive. Any help would be greatly appreciated as customer chat support just left me on hold for close to an hour and I have not found a solution in the forums.
    Thanks in advance.

    Thanks John,
    I actually found a post after another hour or so looking that pointed out the same potential problem that you did, but thank you for your help anyways.
    I actually found some steps that someone had posted from their conversation with customer service. I've pasted it below. Hopefully it will help another lost and weary traveler as much as it did me.
    8. Re: No Apps in Apps Tab
    StarJockey Apr 7, 2014 6:40 PM (in response to StarJockey)
    This worked for me. Thank you, Adobe!
    Step 1:
    Open Finder application.Click on Go>Go to Folder.
    Type /library and press return key.
    Then navigate to Application support/Adobe folder.
    Right click on Adobe folder and select 'Get info'.
    Under Sharing and permissions, click on Lock icon and enter
    Administrator user name and password.Click on symbol, select Admini
    strators and click on Add, then give 'Read and Write' permissions to Administrators.
    Click on symbol again, select current logged in user name and click
    on Add, then give 'Read and Write' permissions to Administrators.
    Give 'Read and Write' permissions to Everyone, System, Admin, users.
    Then click on Gear icon and select the option 'Apply to Enclosed items'.
    Step 2:
    Open Finder application.Click on Go>Go to Folder.
    Type ~/library and press return key.
    Then navigate to Application support/Adobe folder.
    Please give full permission as mentioned above.
    Step 3:
    Open Finder application.Click on Go>Go to Folder>>Type /library and
    press return key>>navigate to Application support/Adobe folder folder.
    Locate the folder named AAMupdater and rename it to AAMupdaterold and
    OOBE to OOBEold.
    Step 4:
    Open Finder application.Click on Go>Go to Folder>>Type ~/library and
    press return key>>navigate to Application support/Adobe folder folder.
    Locate the folder named AAMupdater and rename it to AAMupdaterold and
    OOBE to OOBEold.
    Once you are done with the above steps, you can try launching the
    Creative Cloud desktop application.
    If you still face the same issue, please try the next steps.
    (These steps were not necessary for me.)
    Step 5:
    Click on the below link to download the cleaner tool.
    http://download.macromedia.com/pub/creativecloud/cleanertool/mac/AdobeCr
    eativeCloudCleanerTool.dmg
    Select the product as Creative Cloud and CS6, then select Creative Cloud
    desktop/Adobe application manager and select clean.
    Step 6:
    Once you are done with the above steps, login to
    https://creative.adobe.com/products/creative-cloud and try downloading
    the Creative Cloud desktop application.

  • Report does not prompt for parameters when SeparatePages=False

    Hi all. We are using CR2008 Basic w/SP1 along with VS2008. Within our application, reports pull up fine and prompt for parameters using the CrystalReportViewer against the web service. SeparatePages is set to True. We want to change SeparatePages to False, but when I do that any report that should prompt for parameters is not.
    The reports were created in CR 8.5. We have upgraded them to CR2008 (open, refresh, save) which has greatly increased performance. With some further testing, I've discovered that if I take a report that doesn't currently have any parameters and add one via VS2008 report designer, it WILL prompt for the parameter when I run it in our application with SeparatePages=False.
    So I'm leaning that the problem has to do with the reports originally being created in 8.5. I've tried modifying an existing report with parameters, deleting parameters and re-adding, but I still can't get these to prompt for parameters with SeparatePages=False.
    Again, these same reports prompt for parms and work fine as long as SeparatePages=True.  I'm hoping someone might be able to shed some light on this. There are over 400 reports so re-creating them from scratch under CR2008 will be a painful option
    If I need to provide any additional information just let me know. Thank you!
    Sheila

    We are still working to resolve this issue. Testing has shown that for reports that don't return a lot of data, the prompt for parameters will display. But for larger reports, we just see the hour glass and the parameter prompt never displays. It's almost like the reports are trying to return the full dataset without any paramters being passed BEFORE it will prompt for parameters. This would explain why smaller reports will prompt and larger reports never will (?). Not sure that is what is happening.  Again, with SeparatePages=True we are immediately given the parameter prompt. With SeparatePages=False we run into the issue of no prompts.
    Here's the code behind if it help:
    ReportDocument report = new ReportDocument();
    try
        String rptFileName = @"App_Data\Reports\" + Request.QueryString.GetValues(0).GetValue(0).ToString();
        log.writeLog("Loading Report: " + rptFileName);
        String rptFile = Server.MapPath(rptFileName);
        report.Load(rptFile);
        report.Refresh();
        ConnectionInfo crConnectionInfo = new ConnectionInfo();
        log.writeDebugLog("ServerName : " + rProperties.ODBCSource);
        crConnectionInfo.ServerName = rProperties.ODBCSource;
        log.writeDebugLog("DatabaseName : " + rProperties.ODBCSource);
        crConnectionInfo.DatabaseName = rProperties.ODBCSource;
        log.writeDebugLog("UserID : " + rProperties.ODBCUser);
        crConnectionInfo.UserID = rProperties.ODBCUser;
        log.writeDebugLog("Password : " + rProperties.ODBCPassword);
        crConnectionInfo.Password = rProperties.ODBCPassword;
        foreach (CrystalDecisions.CrystalReports.Engine.Table table in report.Database.Tables)
            TableLogOnInfo crTableLogOnInfo = new TableLogOnInfo();
            crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
            table.ApplyLogOnInfo(crTableLogOnInfo);
    catch (Exception err)
        log.writeLog("Error Loading Report: " + err.ToString());
        this.lblError.Text = err.ToString();
        this.ErrorTable.Visible = true;
        this.ReportTable.Visible = false;
        return;
    CrystalReportViewer1.HasCrystalLogo = false;
    CrystalReportViewer1.ReportSource = report; // _serverFileReport;

  • Resume from standby does NOT ask for password--how to fix?

    On my X240, when I resume from standby, I am NOT being asked for my password. But I want to.
    In Power Manager, in Events, I keep setting Require password on standby resume to yes, but the computer comes out of standby when I touch the keyboard, without asking for my password.
    NB I work with the laptop closed, and docked in a Targus dock. Under AC settings, for the lid closed event, I have set it to Do Nothing

    Hi,
    Pardon a silly question, but is it actually resuming from standby or just re-activating the display?  By that I mean that the screen is blank but the laptop isn't yet in standby mode.
    How do you have the screen blank and standby timers set and how do they compare to the times that you observe the problem?
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

Maybe you are looking for