Redirect to Homepage upon logout

Please tell me how to redirect to homepage(example: my homepage is www.oracle.com) when I logged out from my application.

Hello
You could try the following
Set the Logout URL as
wwv_flow_custom_auth_std.logout?p_this_flow=&APP_ID.&p_next_flow_page_sess=&APP_ID.:999
Create page 999 with no regions
In the Security section set Authentication to 'Page is Public'
In the HTML Header section of this page add the following javascript<script>
if (window.home) {
window.home();
} else {
location = "about:home";
</script>varad

Similar Messages

  • Firefox always opens to the pages I was on in the previous session, even though Google is my homepage and it is set to load to my homepage upon opening.

    Every time I open a new session of Firefox, instead of it going to the homepage that I have selected, it simply loads all tabs from the previous session I closed. This even happens after I've turned off and back on my computer. I have the settings so that my homepage is Google, and it is set to always go to my homepage upon startup. Addons is not the problem, I have not installed any new addons, and this is only a recent problem. I think it is a problem with Firefox itself, but of course there is no Mozilla customer service to speak to. I can see on the forums that many people are having this same problem right now. Please Mozilla, if you actually look at the forums, FIX THIS!!! Any anyone providing replies, please do not tell me to check my settings, because they are all correct, and the problem is NOT third party software. There is also NO file in my profile folder called user.js, so that is not the problem, either!

    jennifer, if you just see a file titled "user", this is because your windows operating system is set to hide some file extensions: http://windows.microsoft.com/en-us/windows/show-hide-file-name-extensions#show-hide-file-name-extensions=windows-7
    most probably this is exactly the user.js file to delete in order to address your problem...
    though i can't say why it appeared in your case, you're right that many times this file is created by malicious software. therefore i'd recommend to run a scan with two security tools specialised on adware and browser hijackers: the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] and [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner].
    [[Troubleshoot Firefox issues caused by malware]]

  • Script to update account pic upon logout?

    Is there a way to update the account picture upon a logout?
    There is a security bug in 10.6.4 that allows a guest to update the guest account picture with a photobooth pic (it does it even though it looks like it's not allowed).
    To work around the bug, I thought updating the pic upon guest logout (by script) might do the trick.
    Anyone doing something with scripts upon logout?

    Hi Martin;
    I have a OID 9.0.0.4.1 synchronizing with an Microsoft AD. The attribute uniquemember is member attribute on the group object in OID and This contain the DN for the AD user object.
    The administration AD users (addition to groups, users delete, users create) is perfomed through the ad administration console.
    This OID has a bug that prevents that DN for the users may not be updated in the attribute group uniquemember when a user is moved in the AD. This makes the user appear without groups in the OID.
    Each time a user account moves in the AD, the user account OID is affected by the bug and loses the groups. I turn to solve the problem by adding the groups in the OID again.
    Thanks;
    Hernán

  • User redirected to homepage after re-login to new authscheme

    We define a new authentication scheme and assigned to a iView
    displaying sensitive data. The new scheme has higher priority than the
    default one, so users are required to re-login before accessing the
    iView. Problem is after user re-login, he/she is redirected to portal
    homepage, user has to navigate back to where he/she was to see the
    iView. This creates a big usability problem.
    We would like user to be able to see the iView after re-login, is this
    possible?

    Hi Mike, definitely seems to be an IE security-related options setting on his computer. Have you tried adding the site in his trusted sites list? You may also have to uncheck the "require server verification" box. Also, might need to uncheck
    the "enable protected mode." Last thing to try: check the "automatic logon with user and password."
    cameron rautmann

  • NPE upon logout (ADF Faces / ADF BC) 10.1.3.0 SU 5

    Hi all,
    I have some code that I use to log out from an ADF Faces appliction. The way that it works is that the "logout" link uses a dialog to ask the user if they really want to log out. If they do, the return listener handles the logout like this:
        if (rv.equals("Logout:Y"))
          ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
          HttpServletResponse response = null;
          HttpSession session;
          if (ectx != null)
            response = (HttpServletResponse)ectx.getResponse();
            if (response != null)
              session = (HttpSession)ectx.getSession(false);
              if (session != null)
                try
                  session.invalidate();
                catch (Exception e)
                  e.printStackTrace();
                  // Ignore this exception - always happens
          try
            response.sendRedirect(ectx.getRequestContextPath() + "/index.jspx");
          catch (IOException e)
            System.out.println("ignoring error");
        }When the code hits the session.invalidate() call, the following exception occurs (note that my code explicitly ignores it - if I put an e.printStackTrace(system.out), I get this:)
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=null
         at oracle.jbo.JboException.<init>(JboException.java:346)
         at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:76)
         at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:43)
         at oracle.adf.model.BindingContext.get(BindingContext.java:491)
         at oracle.adf.model.binding.DCBindingContainer.release(DCBindingContainer.java:1910)
         at oracle.adf.model.binding.DCDataControl.release(DCDataControl.java:1551)
         at oracle.adf.model.bc4j.DCJboDataControl.release(DCJboDataControl.java:471)
         at oracle.adf.model.binding.DCDataControl.release(DCDataControl.java:1482)
         at oracle.adf.model.BindingContext.release(BindingContext.java:284)
         at oracle.adf.model.servlet.HttpBindingContext.valueUnbound(HttpBindingContext.java:36)
         at com.evermind.server.http.EvermindHttpSession.destroy(EvermindHttpSession.java:458)
         at com.evermind.server.http.EvermindHttpSession.invalidate(EvermindHttpSession.java:400)
    etc..etc...etc... snippedIs this normal and expected? Do I need to clean something else up before logging out? When I ignore this exception, everything works just fine and dandy, so it may not be something to worry about, but I tend to wonder any time an exception is thrown, especially an NPE.
    Any ideas appreciated.
    Regards,
    John

    John,
    seems to be related to teh dialog use. Can you try the same logic from a logout button on a page to see if it also throws the exception ? I tried without dialog and it works fine.
    Btw, I changed
    String ctxpath = ectx.getRequestContextPath();
    try
    response.sendRedirect(ctxpath + "/indx.jsp");
    Also I redirected to a plain JSP file and not another JSF page (just in case you do this)
    Frank

  • Firefox 16 CTRL+E redirect to homepage not working

    After reinstalling my windows and also Firefox, CTRL+E no longer redirects me to my homepage like it used to. How can I enable this hotkey again?

    The KeyConfig extension allows keyboard commands to be modified. <br />
    http://mozilla.dorando.at/readme.html
    There is a KeyConfig support thread here to help with setting it up. <br />
    http://forums.mozillazine.org/viewtopic.php?t=72994

  • IWeb '09 "redirects" my homepage to another "named page"

    because it redirects to another named page instead of www.mydomain.org/
    it redirects to....
    http://www.thechurchofgodalaska.org/TheChurch_of_God_inAlaska/HomePage.html
    this causes ALL the search engines to NOT find it anywhere! It was coming up on the FIRST page of Google when I was using iWeb '08. Now that I have updated to iWeb '09 none of the search engines can find my page at all.
    Can you help?

    Firstly, where are you publishing your site to? MobileMe or an External server?
    If MobileMe, then how are you re-directing your domain name to your site? Are you using CNAME forwarding or ordinary masked web forwarding?
    iWeb 08 was the same as 09 in this way.
    What you need to do is go back to your domain name registrar and check your domain forwarding settings there to see where it is pointing to. For CNAME it should be just web.me.com and if using web forwarding, then it should be pointing to web.me.com/username/sitename.
    It looks to me as if you have used CNAME forwarding? If this is so, then go and check that your domain is forwarded just to web.me.com and nothing else.
    The forwarding however will always be forwarded to www.domain.org/sitename/pagename, you can't get away from this and if you want anything different then change to masked web forwarding instead - if you do this, then your url will just be www.domain.org for every single page of your site.

  • Redirecting old Homepage to iWeb

    For many years I've had an online library of images made with Homepage. I have now completely remade the site using iWeb and deleted the Homepage. Google however still has a cache of the old pages and Apple returns a 'Page not Found' message if the link is followed.
    So- can I put a page on my iDisk called homepage.mac.com/username/CATCH-ALL to redirect any of those links to my new iWeb site? There were hundreds of photoalbum pages by the way.
    old site- homepage.mac.com/cjbphotography
    new site- web.mac.com/cjbphotography
    G4 Dual, 17" Powerbook, iMac, iPod, and more   Mac OS X (10.4.4)  

    the index.html file is basically i a file that can be used to redirect people.
    dan,
    you can download the file - but you will need to edit the file because i have made it specifically for him above. open the index.html file up with textedit. be sure you have the preferences set to "ignore html commands." otherwise you will see a blank file.
    then search for: http://web.mac.com/cjbphotography
    and replace it with your site: http://web.mac.com/username
    and yes, you would have to overwrite the existing file to make the old site be redirected to the new one!
    max

  • MDT Redirection to homepage

    Hi,
    We have migrated from 4.7 to ECC 6.0. In integrated ITS in an MDT report when there is no data for the selection parameters entered in the selection screen, the screen just disappears. While in standalone  ITS when data is not there it is redirecting to home page.
    What should I do to redirect to an url (say for eg: sdn.sap.com) when there is no data in integrated ITS. Is it controlled by any settings in the IAC service HRWPC_FC_EXEC?
    Any valuable suggestions will be rewarded.
    Thanks & Regards,
    Soumya.

    Hi Soumya,
    I am not sure whether you will find help here. This is a more
    application specific question.
    I would suggest to ask the OSS component 'EP-PCT-MGR-HR'
    it seems to be responsible for this package.
    Anyway, I saw - using the TA SE80, Internet Service 'HRWPC_FC_EXEC'
    a mime type entry called CLOSEWINDOW.HTM, may comparing that to
    the 620 installation might be helpful.
    Just an idea....
    best regards
    Tobias

  • Bash script to terminated upon logout,

    Hi all,
    I have created a bash script - which start recording a camera device for security purpose, but I need the script to finish when the security user is logging out.
    Any idea on how to do that?

    sweetthdevil wrote:
    Hi again,
    sorry it took some time but I haven't had the time to look yet,
    Back to the topic, I added the "pkill mencoder" at the begining of the file but it doesn't seem to work (because when shutting down the pc, the avi file created is broken - the index)
    Any suggestion?
    Difficult to say like this. If you kill mencoder by hand (not with the logout script); does this work properly? Maybe you have to wait that men,coder actualy exit before continuing:
    PID=$(grep mencoder)
    kill $PID
    wait $PID
    (work only if there is a single mencoder process).
    But how did you start mencoder? (o processes receive a HUP signal if the terminal from which it has been opened is closed).
    Last edited by olive (2011-03-04 00:58:30)

  • MOTD displays upon logout, not login

    Hi all
    I need the MOTD to display upon login to the CDE or Java Desktop in Solaris 10 - everything is set in /etc/profile, /etc/motd, /etc/issue - yet you only see the MOTD when logging off and before the login screen comes back up waiting for a new user. When you login the screen blinks several times and goes straight to the CDE desktop. Is it possible that the MOTD is displaying so quickly that it cannot be viewed - if so, how to make it pause so that the user must be forced to hit a key to continue after its displayed? This is for security reasons and the banner must be displayed. There is no .hushlogin file in the users directory. There are no errors in the users .dt/startlog to indicate that the /etc/motd did not display, however I did notice that in the /root/.dt/startlog, the MOTD is in the startlog, while in the users it is not. Is this significant?
    thanks
    Mark C.
    AZ

    I've checked a number of other things, including adding a file to the /usr/dt/config/Xsession.d directory and adding the file 0050.dthello with the statement dtstart_hello[0]="/usr/dt/bin/dthello -file /etc/motd &" - the startlog at $HOME/.dt/ indicates that the file was read and processed with no errors. The file also exists at /etc/dt/config/Xsession.d but the startlog indicates that it is sourcing the one at /usr/dt/config/Xsession.d. I've tried editing the Xconfig file to add INFO_PATH=/etc/motd to the Dtlogin*environment but to no avail.
    After all this, you still only see the MOTD when logging out of CDE/Java desktop, not when logging in. Any ideas?

  • Site redirecting to homepage with no CSS

    Hello,
    I am having a major problem and I don't know where to start to fix it. I have just installed wordpress onto my site under /blog/  and it seems every page I click on leads to the homepage without a css file.
    I have looked at the source code for this page and it seems it is because of a mixtur of reletive and non-reletive linking. But I can't figure out why it is going to said page in the first place and how I can fix it. The Wordpress install should be fine as far as I can tell to it leads me to believe it something in the main section of the site. i.e. the part created on Dreamwever.
    http://bit.ly/11NuBoC   - This is the link for the /blog/ page. You will notice that when you click on any link it goes to the page mentioned above.
    And here is the homepage http://bit.ly/18hr4BP
    Any help is much appreciated. Thanks

    Make any broken links into absolute links, for example change your base.css
    <link media="all" type="text/css" rel="stylesheet" href="http://gummet.com/css/base.css">

  • HT201184 Network Preferences Lock Unlocks upon Logout/Login restart etc

    On my macbookpro OSX 10.6.8 even though I always set network preferences as locked, every time I shutdown the computer and log back in the NETWORK PREFERENCES are unlocked. If I make a change to the network prefs while shown as "unlocked" I am still prompted to enter my computer's main password? If the network prefs are unlocked, why do I have to enter a password? If I open network prefs and immediately click Lock then if I decide to change from wifi to ethernet I am prompted to enter my computers password? 

    Well my connection didn't hold..... the IP (numbers) address keeps changing, which I don't know is my isp carriers fault, or my modems, or hopefully not the computer, I get a computer pop-up that says, can't find ppoe address. In the network preferences panel, when I retype my isp password and (apply now), I get a connection that will hold for a while. I'm a bit reluctant to buy a new modem, because I think this is my isp carriers fault, I suggested to them, maybe it's the modem, and they want me to buy a new modem from them. If you've been with an isp for years, the least they could do is provide a new modem, every once in a while. So I think I should just get a new carrier, paying too much for the one I have now anyway
    Best Regards, etc3rock

  • KDE 4.1 kills/forgets my Konsole/Okular windows upon logout

    Howdy. First, I just want to say that Arch is fantastic, and I haven't had a problem for the ~6 months I've been using it, until today, and it's more of a KDE (or X, or QT?) problem anyway . This all started a few days ago, after an update; previously, KDE4.1 had been running flawlessly.
    Here is the log of a typical X/KDE session. Everything works great until I log out, and the 5 PDFs, and my Konsole sessions disappear, and aren't restored next login. I managed to fix a bunch of unrelated errors, but these ones are a bit beyond me; any help would be appreciated. My only solution right now is to not log out, but that's unavoidable sometimes...
    (WW) fglrx: No matching Device section for instance (BusID PCI:3:0:1) found
    (WW) fglrx: No matching Device section for instance (BusID PCI:3:0:1) found
    (II) Module "ddc" already built-in
    (II) Module "ramdac" already built-in
    Agent pid 30999
    xset:  bad font path element (#135), possible causes are:
        Directory does not exist or has wrong permissions
        Directory missing fonts.dir
        Incorrect font server address or syntax
    startkde: Starting up...
    kdeinit4: preparing to launch /usr/lib/kde4/libexec/klauncher
    kdeinit4: preparing to launch /usr/bin/kded4
    kdeinit4: preparing to launch /usr/bin/kbuildsycoca4
    kbuildsycoca4 running...
    kdeinit4: preparing to launch /usr/lib/kde4/libexec/kconf_update
    kdeinit4: preparing to launch /usr/bin/kcminit_startup
    kdeinit4: preparing to launch /usr/bin/ksmserver
    kwin(31034): ""fsrestore1" - conversion of "0,0,0,0" to QRect failed"
    kwin(31034): ""fsrestore2" - conversion of "0,0,0,0" to QRect failed"
    kdeinit4: preparing to launch /usr/bin/krunner
    kdeinit4: preparing to launch /usr/bin/knotify4
    kwin(31034): Couldn't start knotify from knotify4.desktop:  "KDEInit could not launch '/usr/bin/knotify4'."
    QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const Solid::DeviceInterface::Type&)  error:  "org.freedesktop.DBus.Error.ServiceUnknown"
    kdeinit4: preparing to launch /usr/bin/plasma
    virtual QStringList Solid::Backends::Hal::HalManager::allDevices()  error:  "org.freedesktop.DBus.Error.ServiceUnknown"
    QLayout: Attempting to add QLayout "" to Plasma::Dialog "", which already has a layout
    X Error: BadWindow (invalid Window parameter) 3
      Major opcode: 18 (X_ChangeProperty)
      Resource id:  0x1a00033
    virtual QStringList Solid::Backends::Hal::HalManager::allDevices()  error:  "org.freedesktop.DBus.Error.ServiceUnknown"
    QPainter::begin: Cannot paint on a null pixmap
    kdeinit4: preparing to launch /usr/bin/nepomukserver
    kdeinit4: preparing to launch /usr/bin/kaccess
    Nepomuk server already running.
    QObject: Do not delete object, 'unnamed', during its event handler!
    QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const Solid::DeviceInterface::Type&)  error:  "org.freedesktop.DBus.Error.ServiceUnknown"
    kdeinit4: preparing to launch /usr/bin/xchat
    kdeinit4: preparing to launch /usr/bin/konsole
    kdeinit4: preparing to launch /usr/bin/thunderbird
    kdeinit4: preparing to launch /usr/bin/thunderbird
    X Error: BadMatch (invalid parameter attributes) 8
      Major opcode: 56 (X_ChangeGC)
      Resource id:  0x0
    QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const Solid::DeviceInterface::Type&)  error:  "org.freedesktop.DBus.Error.ServiceUnknown"
    QObject: Do not delete object, 'unnamed', during its event handler!
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
      Major opcode: 55 (X_CreateGC)
      Resource id:  0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
      Major opcode: 55 (X_CreateGC)
      Resource id:  0x0
    X Error: BadGC (invalid GC parameter) 13
      Major opcode: 56 (X_ChangeGC)
      Resource id:  0x1000115
    X Error: BadGC (invalid GC parameter) 13
      Major opcode: 56 (X_ChangeGC)
      Resource id:  0x1000116
    X Error: BadGC (invalid GC parameter) 13
      Major opcode: 56 (X_ChangeGC)
      Resource id:  0x1000115
    X Error: BadGC (invalid GC parameter) 13
      Major opcode: 56 (X_ChangeGC)
      Resource id:  0x1000116
    X Error: BadGC (invalid GC parameter) 13
      Major opcode: 60 (X_FreeGC)
      Resource id:  0x1000116
    X Error: BadGC (invalid GC parameter) 13
      Major opcode: 60 (X_FreeGC)
      Resource id:  0x1000115
    QObject: Do not delete object, 'unnamed', during its event handler!
    QObject: Do not delete object, 'unnamed', during its event handler!
    QObject: Do not delete object, 'unnamed', during its event handler!
    QObject: Do not delete object, 'unnamed', during its event handler!
    QObject: Do not delete object, 'unnamed', during its event handler!
    QObject: Do not delete object, 'unnamed', during its event handler!
    QObject: Do not delete object, 'unnamed', during its event handler!
    QObject: Do not delete object, 'unnamed', during its event handler!
    X Error of failed request:  BadWindow (invalid Window parameter)
      Major opcode of failed request:  128 (SHAPE)
      Minor opcode of failed request:  6 (X_ShapeSelectInput)
      Resource id in failed request:  0x1000104
      Serial number of failed request:  122621
      Current serial number in output stream:  122688
    Locking assertion failure.  Backtrace:
    #0 /usr/lib/libxcb-xlib.so.0 [0xb6921767]
    #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_lock+0x2e) [0xb692181e]
    #2 /usr/lib/libX11.so.6 [0xb7a87ba9]
    #3 /usr/lib/libXrender.so.1(XRenderFreePicture+0x41) [0xb70aace1]
    #4 /usr/lib/libQtGui.so.4 [0xb7490aaf]
    #5 /usr/lib/libQtGui.so.4 [0xb749151a]
    #6 /usr/lib/libQtGui.so.4(_ZN7QPixmap5derefEv+0x5d) [0xb748701d]
    #7 /usr/lib/libQtGui.so.4(_ZN7QPixmapD1Ev+0x2d) [0xb748815d]
    #8 /lib/libc.so.6(exit+0x89) [0xb6af56c9]
    #9 /usr/lib/libX11.so.6 [0xb7a8054e]
    #10 /usr/lib/libX11.so.6(_XError+0xd9) [0xb7a80629]
    #11 /usr/lib/libX11.so.6 [0xb7a88548]
    #12 /usr/lib/libX11.so.6(_XReply+0x152) [0xb7a888f2]
    #13 /usr/lib/libX11.so.6(XSync+0x67) [0xb7a7c007]
    #14 /usr/lib/libX11.so.6(XCloseDisplay+0x8e) [0xb7a5c16e]
    #15 /usr/lib/libQtGui.so.4 [0xb7431df0]
    #16 /usr/lib/libQtGui.so.4(_ZN12QApplicationD2Ev+0x585) [0xb73da265]
    #17 /usr/lib/libkdeui.so.5(_ZN12KApplicationD2Ev+0xbe) [0xb6f243ae]
    #18 /usr/lib/libkdeinit4_kwin.so [0xb7fed72e]
    #19 /usr/lib/libkdeinit4_kwin.so(kdemain+0xa77) [0xb7ff0137]
    QObject: Do not delete object, 'unnamed', during its event handler!
    startkde: Shutting down...
    klauncher: Exiting on signal 1
    KWrited - Listening on Device /dev/pts/0
    startkde: Running shutdown scripts...
    unset SSH_AUTH_SOCK;
    unset SSH_AGENT_PID;
    echo Agent pid 30999 killed;
    startkde: Done.
    waiting for X server to shut down
    Cheers,
    zaaron
    Last edited by zaaron (2008-08-06 07:48:44)

    I'm seeing 2 bugs in Konsole:
    - tabs and working directories are not restored
    - customised keyboard shortcuts (at least for paste) are forgotten almost instantly [not quite instantly - they work immediately after being set but not for long]
    Tabs in Okular are not restored either. But this is not a regression: tabs were not restored on Arch with KDE4 either. [I say on Arch because I have a feeling they are on Fedora but cannot check right now as I'm on my Arch machine.]

  • SSO logout not working properly (cookie remains set)

    Hi, I've just implemented single sign-on authentication for my APEX 2.2 applications with help of these two howtos:
    http://www.oracle.com/technology/products/database/application_express/howtos/sso_partner_app.html#INSTALL
    http://becomeappsdba.blogspot.com/2007/01/apex-apps-configure-sso-ii.html
    It quite works smoothly, e.g. for pages that require authentication the user is redirected
    ("Redirecting to the Login Server for authentication...") to the SSO server (another machine, a part of Oracle Collaboration Suite infrastructure). There on the login screen, the user enters the credentials and after submit (if the credentials are OK) is redirected back to the APEX application as an authenticated user.
    When the user clicks "Logout", the application redirects him (her) to the page specified in the "Logout URL" attribute of the SSO authentication scheme and the displayed username changes to "nobody". So far so good.
    However, the problem is that the user is in fact not logged out. On a subsequent attempt to get to an authenticated page within the same browser window the application displays for a short while "Redirecting to the Login Server for authentication..." but it doesn't really get the user to the SSO logon screen to enter username and password and instead it redirects him (her) directly to the required page as the previously authenticated user (the user who clicked the "Logout" sign). The only workaround is to close the browser window and start over again as the other user, which is not very convenient nor secure. It seems that despite the seeming logout the cookie remains set and I don't how to force the application to get rid of the cookie upon logout.
    Has anybody faced this behaviour and has some assistance for me?
    Thanks in advance.
    Zdenek

    Scott,
    thank you very much for your prompt explanation and pointing to the right thread. There, I was able to quickly find what I was looking for - the logout URL:
    https://host:port/pls/DAD/wwv_flow_custom_auth_std.logout_then_go_to_url?p_args=&APP_ID.:https://login.yourlogin.com/pls/orasso/orasso.wwsso_app_admin.ls_logout?p_done_url=https://host:port/pls/DAD/f?p=&APP_ID.:PUBLIC_PAGE
    Having that, it took me just 5 minutes to adopt it to my conditions (change machine names & page number), paste it to the SSO authentication scheme's logout URL field and sucessfully test it.
    To summarize for others in need, these are relevant links to this topic:
    Re: Partner Application in SSO logout does'nt synchronize
    SSO authentication
    Logout URL for 9iAS SSO Partner App
    Thanks again & appologies for asking this question without preceding proper searching for answer in this excelent & useful forum.
    Zdenek

Maybe you are looking for

  • Dreamweaver CS6 Fluid Grid Layout

    I fear there may not be a solution to this issue! I have placed several hotspots on an image in a Fluid Grid Layout div in DW CS6 and the problem is quite straightforward. Whilst the "image" reduces perfectly when viewed in Tablet and Smartphone scre

  • Facebook Bug on KK 14.3.A.0.757

    I don't know if this is the right section to post this but I observed this bug on the latest stock ROM KK 14.3.A.0.757. Whenever I open chat and try to send a voice message it freezes and force close and won't sent the message. Reopening the FB app t

  • Why no native restore database task in SSIS Toolbox

    Hi, I'm a little confused as to why there is no "Restore Database Task" in the SSIS Toolbox when editing a package in BIDS/SSDT? We are provided with a native "Back Up Database Task" but no corresponding restore component. Searching the web shows tha

  • How do I scan with my photosmart5520 printer

    I cannot find on my screen anywhere I can scan

  • Any issue for JDBC Conn when moving from Names Server to OID

    Hi, One of out customer migrating from Oracle Names Server to OID and they would like to know the effects (if any) this will have on their applications that connect to the databases using jdbc connections. Concern is "will their jdbc connections to t