Database move during user login?

I am trying to find an answer which i am unable to.
As in exchange 2013, CAS is doing proxy so no rendering stuff, cookie based authentication so if one CAS server is rebooted, no need to re authenticate or pop-up screen for logon credentials as in Exchange 2010 when user were connected before reboot.
However if database moves from one server to other as part of DAG, does it require any relogin? for user who were connected to before move?
2nd. For Exchange 2010 : Do we have any solution where user don't need to re login in case where he was logged in to a CAS Server and CAS server reboots?
SMF

I am trying to find an answer which i am unable to.
As in exchange 2013, CAS is doing proxy so no rendering stuff, cookie based authentication so if one CAS server is rebooted, no need to re authenticate or pop-up screen for logon credentials as in Exchange 2010 when user were connected before reboot.
However if database moves from one server to other as part of DAG, does it require any relogin? for user who were connected to before move?
2nd. For Exchange 2010 : Do we have any solution where user don't need to re login in case where he was logged in to a CAS Server and CAS server reboots?
SMF
However if database moves from one server to other as part of DAG, does it require any relogin? for user who were connected to before move?
----------No
2nd. For Exchange 2010 : Do we have any solution where user don't need to re login in case where he was logged in to a CAS Server and CAS server reboots?
---------Use a load balancer other than Windows NLB. Ensure Outlook Anywhere auth is set to NTLM.
Twitter!:
Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

Similar Messages

  • Performance problems with abap report SAPLPRGN_STRUCTURE during users login

    Hello,
    after patchimport of SAP BASIS level 21 and SAPABAP level 21 our SAP Production System (ECC6-UNICODE KERNEL 240) denote a performance problems. A lot of ours users during logon phase must wait until 10-12 minutes before that the navigation menu is displayed. The problem is generated by the slow performance of the standard SAP REPORT SAPLPRGN_STRUCTURE that require a lot time.  Any idea?
    Thanks

    Hi Pat,
    I would stop SAP and use DLTR3PKG, If this doesn't help, you need to investigate, if it is a CPU or DB-Time issue in ST03. Then you have to handle accordingly ...
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • Loading swf files for anonymous user login

    Hi,
    We are having swf file retrieving from oracle database in home page. I can able to view swf file for normal users, but anonymous user login, not able to see swf file in the page. Other image format like jpg/gif files anonymous user login images are loading properly. Pls. kindly advise, where issue occurs.
    kumar. G

    Hi Ram
    Thanks for your response. Let me know, how to connect to oracle database for anonymous user login. Based on that i will work around that approach for fixing this issue.
    By
    kumar. g

  • Copy user login

    Dear All,
    I have a problem about user Login in SQL Server 2008.
    because I restore database from another server, user Login for that database already created but not in instance user login. So when user login into instance name they have failed login.
    what that i missed before restore database so when user login into instance they do not failed?
    or how that i can copy user login  from database to instance login? because when i add from add login wizard i have error user already created.
    please help.
    Best regards,
    Surbakti

    When a database is moved from one server to another server the login ids stored in the master database do not align with the login ids
    stored in each user database or there is no login id or password associated with the user and user in the database becomes ORPHAN.
    To fix this problem you need to transfer Logins & password refer below link to Transfer Logins & Passwords.
    How to transfer logins and passwords between instances of SQL Server
    once you transfer logins fix orphan users, refer below link to fix orphan users
    http://blog.sqlauthority.com/2007/02/15/sql-server-fix-error-15023-user-already-exists-in-current-database/
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    Praveen Dsa | MCITP - Database Administrator 2008 |
    My Blog | My Page

  • Data Refresh at User Login

    Is it possible to force a database refresh at user login? Currently database is updated each hour but I like to force a refresh at user login. Not sure if this is possible. Please advise if you know. Thank you. 

    User login to what?
    It's hard to suggest an applicable forum for you, based on the information you've provided.
    However, this forum supports setup of the .NET Framework itself, so you need to ask elsewhere. What type of application is involved (Windows desktop, web , Windows Store, etc.)? What DBMS are you using (SQL Server, Oracle, etc.)?
    With additional information we should be able to suggest a topical forum for you.

  • Script to find the list of Queries currently running in database with User Login Name and Host Name.

    Hai,
    How to find the list of queries currently running in the Database with User Login Information.
    Since my database application is running slow, to find the slow queries.

    Try the below query
    SELECT r.start_time [Start Time],r.session_id [SPID],
    DB_NAME(database_id) [Database],
    s.host_name,
    s.program_name,
    s.login_name,
    SUBSTRING(t.text,(r.statement_start_offset/2)+1,
    CASE WHEN statement_end_offset=-1 OR statement_end_offset=0
    THEN (DATALENGTH(t.Text)-r.statement_start_offset/2)+1
    ELSE (r.statement_end_offset-r.statement_start_offset)/2+1
    END) [Executing SQL],
    r.status,command,wait_type,wait_time,wait_resource,
    last_wait_type
    FROM sys.dm_exec_requests r
    OUTER APPLY sys.dm_exec_sql_text(sql_handle) t
    inner join sys.dm_exec_sessions s
    on s.session_id = r.session_id
    WHERE r.session_id !=@@SPID -- don't show this query
    AND r.session_id > 50 -- don't show system queries
    ORDER BY r.start_time
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Can anyone help me with a user login script on php for Oracle database?

    I have a script which somehow is not working well. Can anyone give a good script (for Oracle database) for user login and validation and change password? I will be grateful
    JJZ

    http://www.oracle.com/technology/pub/articles/deployphp/seliverstov_deployphp.html
    http://www.oracle.com/technology/tech/php/htdocs/php-oracle-tutorial.html

  • 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.

  • Best Practice in maintaining multiple apps and user logins

    Hi,
    My company is just starting to use APEX, and none of us (the developers) have worked on this before either. It is greatly appreciated if we can get some help here.
    We have developed quite a few applications in the same workspace. Now, we are going to setup UAT and PRD environments and also trying to understand what the best practice is to maintain multiple apps and user logins.
    Many of you have already worked on APEX environment for sometime, can you please provide some input?
    Should we create multiple apps(projects) for one department or should we create one app for one department?
    Currently we have created multiple apps for one department, but, we are not sure if a user can login once and be able to access to all the authenticated apps.
    Thank you,
    LC

    LC,
    I am not sure how much of this applies to your situation - but I will share what I have done.
    I built a single 700+ page application for my department - other areas create separate smaller applications.
    The approach I chose is flexible enough to accomdate both.
    I built a separate access control application(Control) in its own schema.
    We use database authenication fo this app - an oracle account is required.
    We prefer to use LDAP for authentication for the user applications.
    For users that LDAP is not option - an encrypted password is stored - reset via email.
    We use position based security - priviliges are based on job functions.
    We have applications, appilcations have roles , roles have access to components(tabs,buttons,unmasked card numbers,etc.)
    We have positions that are granted application roles - they inherit access to the role components.
    Users have a name, a login, a position, and a site.
    We have users on both the East Coast and the West Coast, we use the site in a sys_context
    and views to emulate VPD. We also use the role components,sys_contexts and views to mask/unmask
    card numbers without rewriting the dependent objects(querys,reports,views,etc.)
    The position based security has worked well, when someone moves,
    we change the position they are assigned to and they immediately have the privileges they need.
    If you are interested I can rpovide more detail.
    Bill

  • User Login in dreamweaver PHP

    Hi was wondering how to adapt or edit the Log in User
    behaviour in PHP to add session or url variables; I have done this
    with ASP but not PHP.
    I can call anything I want from the database or just text I
    type right there and then and use it with any page I call in my
    site.
    How do I do that in PHP login page?
    I can send you a copy of my script for ASP.

    Hello Bregent,
                            Thank you for your swift reply. wait. I send you screenshots so that you have an idea what i mean. For login i use account number and password instead of sort code...then my screen need to take me to the security code screen. On this screen i will be able to type or use drop down for single characters of a memorable name eg 'elephant' which is stored in the user details database. Therefore , the system will verify the username and password first. then will move to secondary login asking to verify the memorable name. only after that verification the user can log into his account.

  • Can MoveUser move a user's mailbox from an installation of Mail Server 2.X to Messaging Server 3.X?

    Can MoveUser move a user's mailbox from an installation of Mail
    Server 2.X to Messaging Server 3.X?
    <P>
    Yes.
    The 2.x server allows the postmaster to login to a user's account.
    Try running MoveUser as follows:
    MoveUser -u uid -s host -xPostmaster:uid -p password
    -d desthost -a proxyuser -v proxypassword -m mailboxpath
    Notes:
    Mail Server 2.x uses a local database and not an LDAP server
    for account information. The -l option
    specify ldap URL and the associated bindDN password,
    therefore, are not valid when moving from
    Mail Server 2.x to Messaging Server 3.x.
    "Postmaster:" is case sensitive.
    The -a and -v options are for Messaging Server 3.x
    ProxyAuthUser credentials.
    We do NOT allow this login to a 3.x server
    (use PROXYAUTH instead).

    Additionally
    When I type in fasn26p (machine name) the Oracle Application Server Welcome page displays.
    I can get to the Enterprise Manager via the link on the page.
    On the All Programs menu, under Oracle - OraDb10g_home1 I can access the Datbase Control page and login. The line for Database Instance: Orcl is -
    http://fasn26p:1158/em/consol/database/instance/sitemap?event=doloa&....
    One last thought. I installed this with this on my network at home and I now have it disconnected from the network. So no IP address for the adapter and I wonder if that can cause a problem with Apache?
    Sam

  • How to put database in single user mode?

    hi
    how to put database in single user mode?and what could be the impact of this to EBS R12 RUP 6.DB 10.2.0.0
    rgrds

    hsawwan wrote:
    Hi,
    Are you referring to restricted mode? If yes, please see these links/docs.
    Restricting Access to an Open Database
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10595/start002.htm#ADMIN11155
    Note: 1059291.6 - How to Put a Database into Restricted Mode and Verify Restricted Mode
    The impact is none of the users will be able to connect to the database/application (except for the sys user which can connect to the database). Usually, you would need to put the database in restricted mode when doing upgrade/migrate (i.e. you do not want to have active user sessions in the database during that time).
    Thanks,
    HusseinHi
    i want to mean:
    ALTER SYSTEM QUIESCE RESTRICTEDThe ALTER SYSTEM QUIESCE RESTRICTED statement may wait a long time for active sessions to become inactive. You can determine the sessions that are blocking the quiesce operation by querying the V$BLOCKING_QUIESCE view. This view returns only a single column: SID (Session ID). You can join it with V$SESSION to get more information about the session, as shown in the following example:
    select bl.sid, user, osuser, type, program
    from v$blocking_quiesce bl, v$session se
    where bl.sid = se.sid;I suspect all apps user can.t login to db?
    Edited by: new2appsdba on Aug 19, 2010 1:54 AM

  • How to use your own database with your users to authenticate in a Web app?

    Hello, everybody!
    I'm starting to write my first web application and I'm going to use JSF, JPA and EJB3 in this application. One of the first things that I have to do on it is the authentication part where I'll have a page with a user name and a password for the user to login. So, as I'm new to all this in Java (I've already implemented this on .NET in the past), I was studying the Java EE 5 Tutorial, especifically the section "Example: Using Form-Based Authentication with a JSP Page". But I saw that the users that the sample application uses come from the file realm on the Application Server. The users are created there and assigned a name, a password and a group. After the users are in the Application Server we can simply uses forms authentication declaratively in the deployment descriptor (web.xml).
    But the problem is that this doesn't work to me as I already have my own database with my users, so I want to use it instead of having to create the users on the Application Server.
    So, I'm asking you how to do that. Of course I'm not expecting that you place the code here to me as I know that such a thing could be complicated. Instead, I'm asking if you know about some tutorial, article, book or something that teaches how to do what I want. But I would like to see theses examples using JSF and/or EJB3 because these are the technologies that I'm using to develop. It's a pity that the Java EE 5 Tutorial doesn't have an example using a custom database as I know that this situation is very common in the majority of web sites.
    Thank you very much.
    Marcos

    From memory, it goes like this... You just create a
    raw jdbc connection on your user database using a
    special "login" DB user account, which has
    permissions only to an "authenticate" stored query,
    which accepts two arguments: username & password, and
    returns a boolean 0 or 1 rows found.When I implemented this in .NET's ASP.NET I had the same solution. I had an special user created in the database that I used to log in. When the real user entered his username and password I was already logged in and I had just to check his username and password agains the right table in my database.
    But that was only possible bacause when I connected to the database using my hidden user, I used the rights APIs in ASP.NET that coordinate the authentication process. This means that before login in, no one could access any resources (pages, atc...). So what I'm saying is that I can't manager this manually in Java. Java has to have some API or whatever to allow me to control the login process programmatically, while letting the Application Server control the access to the resources.

  • User login report for given period

    Hi All,
    We have one query relate to user monitoring. We want to get the detail log or report of users login date,time, logout date time and system ip or system name like for the given period.
    Our application environment as
    SAP application : R/3 4.7
    Database : oracle 9.2.0.8
    Thanx in advance
    Regards,
    Vishnu.

    Hi Vishnu,
    kindly consider to use the forum search before posting. similar questions like yours have been posted several times already. In oyur search results you may find for instance [this thread|Re: Last three user logon date and time;
    b.rgds,
    Bernhard

  • See my code that i use for user login but my code not give me result

    sir i use oracle with vwp in netbeans 6.1
    i want creat a user login form
    i drop three textfield and one button
    in button i use this code for finding the user in database but this code not me result that go to catch (Exception e) all field in database is string
    public String button1_action() {
    try {
    RowKey userRowKey = luserDataProvider.findFirst
    (new String[] { "luser.username", "luser.pwd" },
    new Object[] { textField1.getText(), textField2.getText() });
    if (userRowKey == null) {
    textField3.setText("fahim");
    error("Invalid user id or password");
    return "case1";
    } else {
    textField3.setText("aamir");
    return "cust";
    catch (Exception e) {
    log("Cannot perform login for userid " + textField3.getText(), e);
    error("Cannot perform login for userid " + textField3.getText() + ": " + e);
    textField3.setText("NOOOO");
    return null;
    please give me idea how i find record from database
    thank you
    aamir

    These are user-to-user forums, you are not talking to Apple here - so I've asked the hosts to remove your email address from your post.
    The security code is the 3 or 4 digit code on your credit card, it's quite often on the back of the card on the signature strip, though on some cards it's on the front : credit card security code.

Maybe you are looking for

  • Hard disk out, can I transfer from Ipod?

    My external hard drive where I kept my music went out. All my music is on my ipod. Is there any way I can download it down to my internal hard drive?

  • Network question

    I'm writing a small app that reads in web pages and indexes the words. I can read in web pages such as yahoo.com and bbc.co.uk but any time I want to access a page involving scripting I get an error. I am using URL class, connecting to a page and dow

  • Calling function from PHP fails..!

    Hi everybody. I'm developing a web application using oracle Portal and have made a 'dynamic' page from the Portal. In this page I have a form which execute a php script. In the php script I want to get the logged in userid. So I try to execute the fo

  • SharePoint2010 WSP Licensing.

    Dear Friends, We are working on Product for SharePoint. We stuck in Licensing of WSP(Farm Solution) in SharePoint. In our scenario we have to create licence copy of WSP restricted for WFE and year validity. This is request please help us how we can m

  • How can i order new tm2t tablet pc to Russia?

    Good day. Ive just checked out all our  shops(both local and online) and couldnt find  these new models that available in the US. Is there  any way i could possibly order it and have it shipped to Russia? As far as i know HP's online shop where one c