Logout does not work in OIM after enabling OAM SSO

We have installed a webgate to protect xlWebApp in OIM. Once the SSO is enabled, the logout does not work in the OIM user interface. How to solve this issue?
Metalink has a solution where we need to add document.location="http://host:port/access/oblix/lang/en-us/logout.html"; in xlWebApp\tiles\tjspLogoffTiles.jsp. This is the logout URL of OAM. Is there any other way so we can have a logout page in the OIM application/server itself?
Thanks.

Kevin,
I did what you suggested and initially it looked like it is working but there is slight issue. When I click Logout, it redirects to the logout screen. After logging out when I try to access xlWebApp it prompts for the login (i am using basic authentication). If I cancel it and again try to access xlWebApp, it lets me in without any prompt. This issue is in IE only but not in Firefox. Not sure what's the issue.
Btw, to make the logout screen work, I had to unprotect the following with None Authentication:
- /xlWebApp/pages/logout.html      (logout page)
- /xlWebApp/images
- /xlWebApp/css/Xellerate.css
- /xlWebApp/css/style.css
Thanks.
Edited by: user504421 on Mar 16, 2009 9:52 AM
Edited by: user504421 on Mar 16, 2009 10:00 AM
Edited by: user504421 on Mar 16, 2009 10:01 AM

Similar Messages

  • My Home Sharing does not work any more after latest iTunes update

    After iTunes update to 11.1.3 my Home Sharing does not work any more!
    It worked just fine for several years...
    I tryed to do everything I could find on Apple support... NOTHING works.
    Most of Apple so called updates turn out real crap...
    I am wondering whats happening to Apple?...

    Hello igor_rena,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Best of luck,
    Mario

  • External USB keyboard does not work with T60 after BIOS upgrade

    External USB keyboard does not work properly with T60 after 2.26-1.07 BIOS upgrade.
    It does the same with or without the docking station.
    Anyone else bumped into this problem yet? 
    Has someone found any fixes for this?
    t

    Hi and welcome the forum!
    Try uninstalling all USB hub devices from the device manager and reinstalling them again, particularly the keyboard's.
    v2.26 is supposed to fix the issue according to lenovo:- http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-63024
    Hope it helps.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • HT203167 My iTunes Match does not work, it stops after the first step and won't do anything else!!!

    Hello, I purchased iTunes Match for my new iPhone five and it is intended to move the music from my computer to my other computer, but it stopped working on my MacBook Pro, it stopped after the first step. So, my question is, can iTunes Match work if the iTunes in question has other accounts attached to it, of not, can I get a refund on a service that does not work?

    I am having a similar issue with iTunes Match. It keeps hanging up on the same number of files (11035 of 15455) during STEP 2. I've tried signing out, re-opening iTunes, re-booting, etc. Still comesup stuck for hours. What I also don't understand is why the "iCloud Status" option in "View/View Options" disappears intermittently. It was there when I first booted up this morning and I reviewed all my music files to see if there were any "errors" and there werne't any. But after Match gets stuck on the same file niumber (11035) I 've signed out and re-booted and now the "iCloud Status" check box is missing from "View Options" (only the "iCloud Download" option remains present all the time. Please help. (I've also checked to make sure all the music files are within the suggested bit rate parameters and file type - This is also a brand new iMac out of the box). Running out of troubleshooting ideas and beginning to think this service just doesn't work well.

  • IPhone does not work in car after upgrading to os5

    After upgrading to os5 my build in hands free device does not work properly anymore, lot of noise, disconnects, connects in general not usable anymore.
    How to fix this?

    Does your aftermarket solution connect to the Nano's headphone jack or to the dock connector?
    If it connects to the headphone jack I would suggest buying an iPhone headphone adapter. I'm expecting mine to arrive via FedEx tomorrow so that I can use my iPhone in the car with a cassette adapter.
    Hope this helps.

  • BINARY SEARCH does not work as before after upgrade

    We recently upgraded from HRSP 26 to HRSP 40 as well as similar upgrades in non-HR areas on our ECC 6.04 system.  We've been in SAP since 1998, and have a lot of old custom programs which were written when we were still new at ABAP.  In a few, we put records into an internal table sorted the table, maybe added a few more records to the table, and did a READ BINARY SEARCH.  Granted, this is not correct, adding records to a table after it is sorted.  But these programs have worked for more than 10 years and now, since our upgrade, the READ BINARY SEARCH does not always find a record where it did before the upgrade.
    So this is mostly just a heads-up.  If you are missing data in reports after upgrading, this might be the issue.  Also I am wondering if anyone has experienced this.
    Heads-up!
    Janice Ishee

    Hi Janice,
    you did not give any context. Please note that it is a popular error to think that a SELECT statement will fetch data in order of the primary key of the table - although it happens quite frequently. So always first sort, then binary search.
    Probably not related to upgrade.
    Regards,
    Clemens

  • BSP: Logout does not work

    Hello.
    At the moment i am re-developing a bsp-application, that i have written about 2 years ago.
    I have to add a logout-funtion to the new version, as the users desperately want it (Some of our users seem to get nervous, when login on to a page, that provides no logout button...).
    I have already tried navigation->exit() but this method only drops the application context - the session will not be terminated, so that the user will not be promted for login-data when e.g. pressing the back-button of the browser.
    I read the documentation on help.sap.com carefully and the problem seems to be, that the appliaction is using "Basic Authentication" at the moment. Using this kind of authentification generates a session-cookie, that will persist until the browser is closed.
    My first attempt was to get rid of the cookie using jscript, but this did not work. First i thought, there was a bug in my jscript-coding, and so i opened the corresponding menu of my browser and deleted any cookie by hand. Unfortunatelly, this had no effect - i was still able to use the page and my session was still existent.
    So i searched for further informations and found out, that it should be quite easy to implement a logout, if SSO-Login was used for athentification. Unfortunatelly i also found out, that SSO is not available on our system, so i will have to find another way.
    Finally i found out, that a logout can be done by simply setting the application into stateless mode, if fields authentication is used.
    I tested this for a simple test-application i had written a few days ago and everything worked fine: I had to enter my logon-data at the first call of the application, the login worked as expected and setting the application to stateless mode ended my session immediatelly. Reloading the page or using e.g. the back-button of the browser did not cause any trouble, so i wanted to use this technique, because the behaviour of the testpage exactly met the requirement.
    My next step was to enter transaction sicf and to delete every authentication-mechanism except of "Fields Authentication" to enforce the usage of this mechanism for my bsp-application. It worked somehow, but not in the way, i expected.
    When trying to open my bsp-application, i had to enter my logon-data in an html-form (as expected).
    But sending the data did not create a session. I have to log in between 2 and 5 times (it differs for every try) before i finally see the first page of my bsp-application.
    Once logged in, the session is quite "unstable" - a simple reload of the page throws me back to the logon page again.
    I have no clue, what causes this creepy behaviour - i copied the settings of my testappliaction 1:1 in sicf, both applications are stateful by default and the only place, where the switch to stateless mode is done is my logout-page. Yesterday i even deleted the service of my application in sicf, created a new one and customized it in the same way, i had customized the service of my test-application, so there should be no differences (i have checked for about 10 times).
    As i have already searched the forum and did not find anything, that seemed to match to my problem, i hope, that somebody can give me some advice, because i really do'nt know, what else to try.
    Below you can see the configuration of the service in SICF. Any option not listed here has its initial value:
    Procedure: Alternative Logon Procedure
    Logon Procedure (The Table-control at the bottom of the page) holds only one entry: "Fields Authentication"
    System Logon: True
    Settings Selection->Define Service Specific Settings: true
    System Logon Settings->Select Display->System Messages: true
    System Logon Settings->Actions During Logon->Protocol: "Do Not Switch"
    System Logon Settings->Default->Client: 101
    System Logon Settings->Default->Language: "German"
    System Logon Settings->Logon Layout And Procedure->SAP Implementation: true
    System Logon Settings->Logon Layout And Procedure->Tmpl.: "Normal"
    System Logon Settings->Logon Layout And Procedure->SAP Icon: "Chrome"
    And here is some information according to the bsp-application:
    Initial BSP: set
    Application Class: set (My test-page did not use an application-class - this seems to be the only difference)
    Theme: not set
    Stateful: yes
    Supports Portal Integration: no
    I do'nt know, if there is any other information, that could be useful for solving the problem - if anything is missing, just ask for it and i will provide the infomation needed.
    Thanks in advance.
    Regards, Jörg Neumann

    Hello,
    up to now we also faced a lot of issues with that logout-problem.
    Especially the logout for IE 5.5 and the XUL-runner gave us a hard time.
    We had to change our logout-page about 10 times now, because some weird browser did not work like all the others - AGAIN...
    Here is, what we got so far.
    As far as i know, this stuff should work cross-browser, but it's still client-side jscript.
    <%-- --------------------------------------------------------------
    This is the jscript, that will log you out                      
    -------------------------------------------------------------- --%>
    <span id="onloadscript"><!--
      function DelSso2Cookie(sName,sPath){
        var sso2Domain = location.hostname;
        if (location.hostname.indexOf(".")!=0) sso2Domain = location.hostname.substr(location.hostname.indexOf(".")+1);
        p="";
        if(sPath)p=" path="+sPath+";";
        document.cookie = sName+"=0; expires=Fri, 31 Dec 1999 23:59:59GMT;"+p + "domain="+sso2Domain+";";
      try{
        document.execCommand( 'ClearAuthenticationCache' );
      } catch (e) {}
      DelSso2Cookie("MYSAPSSO2","/");
    //--></span>
    <%
    CALL FUNCTION 'HTTP_DELETE_SSO2_COOKIE'
      EXPORTING
        server = runtime->server.
    %>
    <%-- --------------------------------------------------------------
    Calling the script directly did not work in all browsers        
    so we had to use a trick, that may seem kind of weird...        
    We use the onLoad-Event of a transparent 1x1-pixel-image.       
    The query-string is a dummy-value, that will be ignored by the   
    server but it forces the client to reload the picture from the   
    server instead of reading it from the browser cache.             
    This dirty hack was necessary, because some browsers will not   
    fire the onLoad-Event, if the image was read from the browsers  
    cache.                                                          
    -------------------------------------------------------------- --%>
    <%
        DATA: lv_img_url TYPE string.
        CONCATENATE '/sap/public/bc/ur/nw5/1x1.gif?'
                    'dummy=' sy-datum '_' sy-uzeit
               INTO lv_img_url.
    %>
    <img src="<%=lv_img_url%>" onload="eval( document.getElementById('onloadscript').childNodes[0].nodeValue );">
    Regards, Jörg

  • FN+F8 on my Satellite L505 does not work, I can't enable WLAN card

    I'm enjoying my notebook until yesteday, suddenly it can't conntect to wifi, when i check "manage wireless network" it says "currently not enabled.
    The only way i know to enable it is to press FN + F8 keys to turn my wireless on...but whenever i press FN the f8 key does not appear on the screen...please help!

    All Programs -> Toshiba -> Flashcards -> TfcConf -> and run TfcConf
    That program will have an option that will say something like "Enable Mouse" (I don't have it in English but you will find out) and depending on the time you put flashcards will appear if you put the mouse on them

  • HT201071 RAW does not work in Mavericks after disk utility repaired hard drive

    This worked until I had to repair a corrupted section of the hard drive, now Nikon Camera RAW files do not work for Aperture, Photoshop or even viewing in the finder.  Is there a way to download just the RAW file compatability?

    The latest download I could find is Digital Camera RAW Compatibility Update 5.04.  Others are linked from this Apple - Support - Search.  Or consider OS X Mavericks: Reinstall OS X to get all the latest software in one step.
    (If you haven't already done so, set your OS X Mavericks: App Store preferences to automatically check for updates so your Mac will advise you when future Apple updates like these become available.)

  • Flash does not work on youtube after update

    I use Firefox on Fedora 14 x86_64. I do not have the 32-bit applications or libraries installed. I have been having the problem for a while. I saw it with FF 3.6.14, FF 3.6.15, and FF 4 beta. I do not know if this is specifically a FF issue. Firefox operates the Adobe flash module with NS Wrapper and the problem seem to be with NS Wrapper. I do not know how the FF and the NS Wrapper projects are related.
    The problem is that 90% of the time FF fails to startup the video player plugin when I visit a page with video. It plays normally once it starts but usually it just doesn't start. When it happens, there are usually no graphics drawn for the video object (no black box, no thumbnail, no video player gadget, just a big empty space). When I run from a terminal then I get the error messages listed below.
    I am using the recent 64-bit flash release. flashplayer10_2_p3_64bit_linux_111710. This worked before and it works with the Konqueror browser.
    software:
    nspluginwrapper.x86_64 1.3.0-15.fc14
    firefox.x86_64 3.6.15-1.fc14
    firefox4.x86_64 4.0-0.13.b11.fc14
    glibc.x86_64 2.13-1
    kernel.x86_64 2.6.35.11-83.fc14
    errors:
    *** NSPlugin Wrapper *** ERROR: NPP_GetValue() wait for reply: Message timeout
    *** NSPlugin Wrapper *** WARNING:(../src/npw-wrapper.c:1927):invoke_NPP_SetWindow: assertion failed: (rpc_method_invoke_possible(plugin->connection))
    *** NSPlugin Wrapper *** WARNING:(../src/npw-wrapper.c:1858):invoke_NPP_Destroy: assertion failed: (rpc_method_invoke_possible(plugin->connection))
    *** NSPlugin Wrapper *** ERROR: NPObject 0x7f12e96c3920 is no longer valid!
    *** NSPlugin Wrapper *** WARNING:(../src/npw-wrapper.c:2167):invoke_NPP_NewStream: assertion failed: (rpc_method_invoke_possible(plugin->connection))
    *** NSPlugin Wrapper *** WARNING:(../src/npw-wrapper.c:1927):invoke_NPP_SetWindow: assertion failed: (rpc_method_invoke_possible(plugin->connection))

    Flash plugin crashes every time it loads.
    Flash works fine here on Firefox and Safari (actually 10.6 users shouldn't be using Safari as Apple doesn't support it anymore)
    You said you reinstalled OS X, but that only does OS X unless you first wiped the drive of all users (and their data!) and programs.
    So your issue is likely a corrupted Flash user cache file or user permissions issue in your user account.
    Since you uninstalled and reinstalled Flash and the problem continues, that would suggest it's the cause.
    It can likely be confirmed by logging into another user account.
    You can delete your Flash cache file in the Apple menu > System Preferences also use the OnyX routine in the Step by Step fixes should clear other cache issues.
    Also run through this list of fixes to eliminate other issues (like failed user account permissions) as you generally tune up your machine.
    ..Step by Step to fix your Mac
    How to install/uninstall Flash, fix problems
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents#/?p er_page=50
    Worst case scenario you could move your data to a new user account.
    Combine two+ Users Accounts on the same machine

  • I updated to windows 8.1. Now acrobat writer does not work anymore even after repair. I am getting an activation error when trying to make a pdf. What should I do?

    Can somebody help. A phone number to contact acrobat writer support? I paid for the program and it worked perfectly until I updated form windows 8 to windows 8.1.
    I am getting the error"not allowed to use the software, I think license issue or something like that even though I paid for it".

    Hi sergeguzy,
    Which Acrobat version are you using?
    By saying Acrobat writer, do you mean Adobe PDF printer in Acrobat or PDFMaker in Office products?
    Also, you might try repairing Acrobat from the Help menu.
    Hope to hear from you.
    Regards,
    Anubha

  • 3 finger swipe does not work in finder after mavericks upgrade

    I used to navigate in finder by swiping with 3 fingers left or right. This still works in Safari. It even works when navigation through system preferences but not in finder. I looked at the options in the track pad preferences and all the gesture options are the same as before. I loved the 3 finger gesture because it made navigation through folders a breeze.

    Go to System Prefernces and Trackpad or Mouse, depending on which you are using, and see that the gestures you want to use are all checked.

  • Forum registration question does not work if DST is enabled

    The forum software didn't accept my output of
    date -u +%V$(uname)|sha256sum|sed 's/\W//g'
    until I deselected "Daylight Savings Time is in effect (advance time by 1 hour).".
    I guess this is a bug, right? Or is it a way to keep users off this forum who don't find that out by themselves (which also means this thread will be deleted)?

    "Daylight Savings Time is in effect (advance time by 1 hour)" on https://bbs.archlinux.org/register.php.
    I don't have timedatectl on my OS, but it shouldn't have to do anything with my OS, since the sha256sum of "30Linux" didn't work with DST on the registration page enabled, but worked as soon as I deselected that checkbox.

  • New MBP Does not work with wifi after migration assistant.

    Old Mac book did'nt Play well with some wifi got new one and it worked fine.  Migrated preferences from old MBP to new now  we one has the same issues?

    This is what I've been telling people. When you migrate an older system to a newer one you never know what is going to be carried over.
    This has been a issue with Windows PCs for a long time.
    Best is to copy personal files from old to new. Install programs on the new one and make all changes manually to system preferences.
    Good luck hope you get it working.

  • TimedTrigger does not work after opening a popup on version 7.11

    Hi experts,
    In my application, there are 2 Windows (W_MAIN, W_POPUP) and 2 Views (V_MAIN, V_POPUP). I put TimedTrigger component to the first view, it is used for refreshing page automatically. W_POPUP and V_POPUP are used for opening popup.
    The TimedTrigger works well on V_MAIN, but it does NOT work any more after the popup is used (opened and closed). The TimedTrigger just works again when the browser is refreshed.
    The problem happens on Netweaver PI version 7.11 only, on version 7.1 is OK
    Please give me your advice on it.
    Thank you,
    Ken Nguyen.
    Edited by: ken nguyen on Jul 19, 2010 9:17 AM
    Edited by: ken nguyen on Jul 19, 2010 11:35 AM

    Hi,
    have you found a solution to his problem?

Maybe you are looking for