Customizing OCS Mail  SSO login screen

Hi all..
I just wanted to know how can we customize the Oracle Mail SSO login screen ( login.jsp file) so as to put Corporate logo and remove the unwanted Online help content etc.. Is there any way to customize the screen other than editing the sso/login.jsp file manually ?
Regards

Hi
You should better create your own login page and register it into SSO config files
Quite easy and documented here :
http://download-west.oracle.com/docs/cd/B14099_19/idmanage.1012/b14078/custom.htm#i1015535
PS : please do not cross-post

Similar Messages

  • Customizing Oracle Mail SSO login screen

    Hi all..
    I just wanted to know how can we customize the Oracle Mail SSO login screen ( login.jsp file) so as to put Corporate logo and remove the unwanted Online help content etc.. Is there any way to customize the screen other than editing the sso/login.jsp file manually ?
    Regards

    Hi
    You should better create your own login page and register it into SSO config files
    Quite easy and documented here :
    http://download-west.oracle.com/docs/cd/B14099_19/idmanage.1012/b14078/custom.htm#i1015535

  • Login screen - sap b1

    Dear All,
    We want to display the customer Name & logo in login screen of sap b1. Is it possible ? Request your suggestions please.
    Regards,
    V.Rajesh

    Hi,
    Plz refer to this link.
    Changing the SBO login picture
    Warm Regards.

  • Having trouble with SSO Login handling multiple webhost deployments

    We have installed IDM 11g and OAM 10.1.4.3 on RHEL5.6 hosts, respectively. We have successfully installed all the components:
    Environment Details:
    - Server1 -- 64 bit Intel RHEL5
    Fusion Middleware Identity Management - 11.1.1.2
    WLS 10.3.2
    ODSM,OID,OVD
    DB 10.2.0.4
    - Server 2 32-bit Intel RHEL5
    OAM 10.1.4.3
    OHS
    -Server 3 -- WebHost -- 32 bit Windows XP
    WLS 10.3.2 -- with simple war file deplyed
    OHS 11.1.1.2
    -Server 4 -- WebHost -- 64 bit RHEL5.6
    WLS 10.3.2 -- with simple war file deplyed
    OHS 11.1.1.2
    We have created a policy and included both webhost server deploymetnts as protected resources. Individually if we open the war files, they will display the default SSO login screen when opened from the same browser session. After the SSO login is completed, and the first uri diplays, we are expecting that when the second uri is opened the SSO Login will not display... but it does.
    If we open a uri (either one) and enter the SSO Login, subsequent tries to open that same uri in the same browser session does not require the SSO login -- this is the expected result.
    I am sure there is something simple we are missing here, but cannot seem to determine the issue.
    Edited by: OldGuy on Jul 13, 2011 12:27 PM

    If you go to system preferences users&groups, login options do you have "Display login window as:" List of users checked, as opposed to Name and password?
    Try checking List of users.

  • Customizing login screen

    Hi,
    When using Oracle Portal, can the login screen be customized?
    The level of customization I require include:
    - validating username/password against our own database tables
    - adding second factor authentication to the login screen
    How can it be done? Can I customize the default login screen? Or it's possible to create my own custom login screen?
    Thanks,
    Roy

    Yes, at this moment Oracle Portal is only supported with the SSO server in the Application Server.You can however integrate Oracle Access Manager (former Oblix) with the SSO server to get additional features :
    http://download-west.oracle.com/docs/cd/B28196_01/idmanage.1014/b25347/osso.htm#CEGCEAJI

  • Did any body try to change 10g SSO  login page to custom login page?

    Hi..
    Did any body try to change Oracle 10g SSO login page with custom login Page as we used to do in 902 and 1022 versions by changing wwsso_ls_configuration_info_t table entries?
    It seems that there is now other file policy.properties that has entry for login page.
    Is there any documentation provided by Oracle on this?
    I checked metalink and SSO admin guide?
    Any clue or glue....??
    Thanks
    Sarvesh

    Try 1 & 2 if does not work please file a daycare for further assistance.
    1.   In "Day CQ Login Selector Authentication Handler" for path info add an empty row then verify.
    2.   Delete the existing entry for "Day CQ Login Selector Authentication Handler" , Configure your custom at repository level & verify

  • SSO login for custom BO SDK Application

    Hi,
    I am trying to build custom application using BO SDK. Requirement is application should be SSO configured.
    Below is my sample code of JSP
    <%@ page import = "com.crystaldecisions.sdk.framework.ISessionMgr"%>
    <%@ page import = "com.crystaldecisions.sdk.framework.IEnterpriseSession"%>
    <%@ page import = "com.crystaldecisions.sdk.exception.SDKException"%>
    <%@ page import = "com.crystaldecisions.sdk.occa.infostore.IInfoStore"%>
    <%@ page import="com.crystaldecisions.sdk.framework.CrystalEnterprise" %>
    <%@ page import="org.ietf.jgss.GSSCredential"%>
    <%@ page import="org.ietf.jgss.GSSManager"%>
    <%@ page import="com.businessobjects.sdk.credential.CredExtractor"%>
    <%
                   GSSCredential creds = null;
                   GSSManager manager = null;
                   CredExtractor credExtractor = new CredExtractor(request);
                     creds = credExtractor.GetCredential();
                     manager = credExtractor.GetManager();     
                   ISessionMgr sm = CrystalEnterprise.getSessionMgr();
                   IEnterpriseSession enterpriseSession = sm.logon(creds, manager, cms, authentication);
                   IInfoStore infoStore = (IInfoStore)enterpriseSession.getService("", "InfoStore");
                   String token=enterpriseSession.getLogonTokenMgr().getDefaultToken();
                   String myUserID=enterpriseSession.getUserInfo().getUserName().toString();
                   session.setAttribute("myUserID",myUserID);
                   session.setAttribute("token", token);
                   session.setAttribute("InfoStore", infoStore);
                   session.setAttribute("enterpriseSession",enterpriseSession);
                response.sendRedirect("home.jsp");
    %>
    i am redirecting to home.jsp and on home.jsp page i am just displaying userID whish is set in above code
    I am deploying my application on server which is SSO enable (Vintela)i have made the necessary changes in web.xml file also
    below is my web.xml file
    <filter>
              <filter-name>authFilter</filter-name>
              <filter-class>com.businessobjects.sdk.credential.WrappedResponseAuthFilter</filter-class>
              <init-param>
                   <param-name>idm.realm</param-name>
                   <param-value>abcd.AD.some.COM</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.princ</param-name>
                   <param-value>abso/SYSBODEV.abcd.ad.some.com</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.keytab</param-name>
                   <param-value>C:\winnt\sysbodev.keytab</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.allowUnsecured</param-name>
                   <param-value>true</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.allowNTLM</param-name>
                   <param-value>false</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.logger.name</param-name>
                   <param-value>simple</param-value>
                   <description>The unique name for this logger.</description>
              </init-param>
              <init-param>
                   <param-name>idm.logger.props</param-name>
                   <param-value>error-log.properties</param-value>
              <description>                Configures logging from the specified file.            </description>       
              </init-param>
              <init-param>
                   <param-name>error.page</param-name>
                   <param-value>/frame/errorSSO.jsp</param-value>
                   <description>The URL of the page to show if an error occurs during authentication.</description>
              </init-param>
         </filter>
    <filter-mapping>
            <filter-name>authFilter</filter-name>
            <url-pattern>/frame/frameset.jsp</url-pattern>
        </filter-mapping>
    but i am getting error saying VSJ authentication was not performed for this request.
    can any one help me ouot where i am going wrong
    Edited by: Asraf_Shaikh on Aug 25, 2011 6:39 PM

    Hi ivan,
    since i was busy with something else, so i could not logging to the forum and reply on time, anyways if your problem is still not solved.
    then follow the approach ( this is for java only)
    1. see if you can access infoview application , if yes then check web.xml file and try to uncomment the comment elements in web.xml file.
    2. check the jar file needed for sso , like credential.jar. you can take all the jar file from infoview application
    below is my code for sso login( only the important things i am putting rest you can manage)
    imports
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.log4j.Logger;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import org.ietf.jgss.GSSCredential;
    import org.ietf.jgss.GSSManager;
    import com.businessobjects.sdk.credential.CredExtractor;
    import com.crystaldecisions.sdk.framework.CrystalEnterprise;
    import com.crystaldecisions.sdk.framework.IEnterpriseSession;
    import com.crystaldecisions.sdk.occa.infostore.IInfoStore;
    code
    GSSCredential myCredential = null;
    GSSManager myManager = null;
    CredExtractor myCredExtractor = new CredExtractor(request);               
    myCredential = myCredExtractor.GetCredential();
    myManager = myCredExtractor.GetManager();
    String myCmsName = getServlet().getServletContext().getInitParameter("cms.default");
    IEnterpriseSession myIEnterpriseSession = CrystalEnterprise.getSessionMgr().logon(myCredential,myManager, myCmsName, SEC_WINAD);
    IInfoStore myIInfoStore = (IInfoStore) myIEnterpriseSession.getService(PortalConstants.EMPTYSTRING, PortalConstants.INFOSTORE);
    you can put try catch block -
    web.xml file
         <filter>
              <filter-name>authFilter</filter-name>
              <filter-class>com.businessobjects.sdk.credential.WrappedResponseAuthFilter</filter-class>
              <init-param>
                   <param-name>idm.realm</param-name>
                   <param-value>HODC.AD.abc.COM</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.princ</param-name>
                   <param-value>BOSSO/SYSBODEV.hodc.ad.abc.com</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.keytab</param-name>
                   <param-value>C:\winnt\sysbodev.keytab</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.allowUnsecured</param-name>
                   <param-value>true</param-value>
              </init-param>
              <init-param>
                   <param-name>idm.allowNTLM</param-name>
                   <param-value>false</param-value>
              </init-param>
              <init-param>
                   <description>The unique name for this logger.</description>
                   <param-name>idm.logger.name</param-name>
                   <param-value>simple</param-value>
              </init-param>
              <init-param>
                    <description>Configures logging from the specified file.</description> 
                   <param-name>idm.logger.props</param-name>
                   <param-value>error-log.properties</param-value>
              </init-param>
              <init-param>
                   <description>The URL of the page to show if an error occurs during authentication.</description>
                   <param-name>error.page</param-name>
                   <param-value>/JSP/failure.jsp</param-value>
              </init-param>
         </filter>
              <filter-mapping>
              <filter-name>authFilter</filter-name>
              <url-pattern>/logon.do</url-pattern>
         </filter-mapping>
    above code is working , so if you can follow the same,it should work for you also.and it for secWinad and sso is vintela
    let me know the status

  • Customizing Login screen in OBIEE 11g

    Hello All,
    I know how to customize login screens and Dashboard in OBIEE 10.x Versions. There are enough articles and blogs as well.
    But how to do customizations in 11g?. Are there any articles or forums related to it?
    Thanks in advance
    Ashok

    Ashok,
    You can use this as reference..
    http://www.rittmanmead.com/2010/12/oracle-bi-ee-11g-styles-skins-custom-xml-messages/
    Thanks!
    Venkata

  • How to get the Trusted Identity Login Page with the needed parameters to make custom login screen instead of sharepoint Login Page?

    hi guys
    i have configured trusted identity provider for my public facing internet portal, but i dont want to use the login screen
    since i have about 10 site collection which will use this authentication.
    is there a class or property that gives me the url ready with the parameters like "wa" and "wtrealm" and the redirect url based on the place the user click the link from.

    You can create your own login page and specify the URL for it in the authentication provider settings of a Web Application or Zone.  So the easiest way to do what you want would be to extend your existing Web Application to a new Zone, change the login
    Page url to point to use your custom zone, and tell users to use the url of that zone to login with the custom provider you have built.
    If you want a single zone then you will need to modify a copy of the login page you display above and have it redirect to a custom login page for your identity provider if the pick the correct entry in the dropdown.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Custom login screen.. any hints ?

    Hi all,
    We'd like to have a login screen sligthly different from the standard one (some links should be removed, some others created).
    Should we create our own starting from scratch ? (new web dynpro view...). In this case, could someone gives some hints:
    - is there some bapi that can be executed to authenticate user
    - is there some bapi that can be executed to change user password / langage...
    Would it be better to customize standard login screen ? Our application is standalone (not in portal).
    In this case, can someone tell me how to customize it ? I've read some documentation on changing this login screen in portal (by customizing .par file)... Should we do the same ?
    Thanks in advance

    Hello TWM,
    the support and register links can be controlled with the UM settings ume.logon.logon_help and ume.logon.selfreg. For more complex customization you might want to create your own login screen component as a copy of the standard component: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/customizing the logon user interface of sap enterprise portal 6.0
    Kind regards, Martin

  • Custom Login screen - Yammer app webpart not working

    Hi Team,
    I have created windows login  website and configured Yammer . it is working fine.
    But I have created another website with custom login screen and If i check Yammer Feed app webpart nothing is opening.for few browsers got exception like "401 : unauthorized access".
    I have placed custom log in page in "_layouts" folder.
    I am new to sharepoint 2013 and Yammer. kindly let me know in details what is the problem and root cause and solution.
    Otjherwise is there any chance to create a custom webpart using Yammer API ? If so where I can find it ? what are the root Dll's and root classes to implement it.
    Regards,
    Rajesh

    Hi,
    According to your description, my understanding is that when you access the Yammer Feed app, it occur "401:unauthorized access" .
    If this error occurs in few browsers, it could be related to browser settings.  The Yammer Feed app requires the user has third party cookies enabled in their browsers.
    Here are some similar threads about the solution for this issue:
    http://stackoverflow.com/questions/23248749/yammer-embed-feed-works-in-ie-and-firefox-but-not-in-chrome-gives-401-unauthori
    http://stackoverflow.com/questions/27383175/http-401-error-for-every-yammer-rest-api-call-for-a-given-network
    About how to use Yammer API to create custom web part, here are some detailed articles for your reference:
    https://samlman.wordpress.com/2015/03/02/using-the-yammer-api-in-a-net-client-application/
    http://pythonhosted.org/yampy/api.html
    https://github.com/yammer/yam
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • OSX Lion 10.7.4 breaks custom login screen!

    Help! I recently updated my MB to OSX Lion 10.7.4. I had to re-apply my custom menu bar and icons (as usual), but the first thing i noticed was that the login window was back to that disgusting linen texture. I thought the update just replaced the file, (didn't happen before), so I went to /System/Library/Frameworks/Appkit.framework/Versions/C/Resources/NsTexturedFull ScreenBackgroundColor.png. And then the file was the same, my previous login window.
    So the question is: Where is the new login screen texture stored? I can change the mission control background, but no amount of goolging or anything provides accurate and working information to replace the login screen on 10.7.4.
    Why would Apple break this all of a sudden?
    The worse case scenario would be that Apple decided to troll and draw the login screen programmatically. Which should never be the case...

    If you are using any system tools such as Mackeeper, Onyx, Macaroni, or AppleJack, caches can get corrupted, leading to other systemwide issues.    Stop using such tools.   If this is an erase and installed and updated system that still doesn't behave as you believe it should for the screen to work, then I would give Apple a bug report here:  http://bugreporter.apple.com/  after signing up for a http://developer.apple.com/ account and see if it is a known issue or not.

  • Login Screen, custom shortcut keys possible?

    I'd like to create a keyboard shortcut to "lock the screen" (login screen). I read through the helpfile and it's not clear this is possible.
    I'd like, for example to do Apple-L to get that to work.
    Is this possible?

    QuickEdit, thanks for the help! Sorry not to reply sooner -- was away for a bit and have only had a chance to play around.
    Based on your recommendation, I did some research on QuicKeys and also found another, similar program iKey (http://www.scriptsoftware.com/ikey/). I downloaded trial versions of both, and found iKey easier to manage. Plus it was cheaper ($30 versus 79.95). I was able to assign shortcut keys using modifiers (alt, cmd, ctl) and the keys that Apple won't let you assign via Keyboard preferences (home, end, forward delete, arrows). I even set up some customized menus or more complex actions (automate) with shortcut key triggers (e.g., creating a footer and inserting a file name and path in a word document with two keystrokes; opening itunes finding a radio station and begin streaming it live with two keystrokes). I'm sure that some of this can be done with automater or applescripts, but since I'm new to apple, I'm happy to start with this.
    iKey does have one annoying feature that I discovered -- you can set keyboard shortcuts to operate in different contexts (e.g., Finder front, Safari not running) but you cannot use the same keyboard shortcut to launch different actions in mutually exclusive contexts.
    By the way, I called Apple support about this question before I started playing with either of the programs. The person I talked to made a special call over to the OS X division and confirmed that forward delete cannot be assigned in user-defined keyboard shortcuts -- "yet." No one was clear if this capability might be developed in the future.
    Thanks again for your help!

  • ITS Custom Login screen password expirey option?

    Hi all,
    We have included the custom login screen in the ITS service. By using login and password parameters in the service parameters.
    But in this the new custom login screen doesn't have the new password option or it cannot detect the password expiry of the sap users login into the ITS service.
    Can anyone please let me know which system variable handles the password expiry for the SAP login.
    Or can anyone let me know the standard program for the ITS SAP standard login screen.
    Thanks Urgent requirement. rewards will awarded for the all the responses
    Thanks & Regards
    Ekta

    if its Integrated ITS, then you can refer to this blog on customizing login screen.
    /people/sergio.ferrari2/blog/2007/04/06/bsphowto--customizing-the-design-of-system-logon-page-in-netweaver-04

  • Customized netweaver login screen needs seperate login for every mime

    Hi all,
    we are running ECC6 and have customzed our netweaver login screen (copied CL_ICF_SYSTEM_LOGIN to <ownClass>, redefined HTM_LOGIN, maintained it in SICF, etc.).
    And it works great - but:
    At the first call the system wants login/pw of each mime used on the login screen.
    But only for the first time.
    I can't repeat it.
    But it happens to every user.
    Correctly deleting cookies (close all screens; control->internet options-> delete cookies) CANNOT repeat the behaviour.
    Globally invalidating http server cache CANNOT repeat the behaviour.
    mimes on login screen are called like:
    https://<servername>:<https-port>/sap/bc/bsp/sap/public/bc/bsp/<applname>/xy.jpg
    So we need a login to see our login screen
    pls help...

    > All URLs under /sap/public run with user SAPSYS and so don't need any login.
    Bugger here is that the code which retrieves the object from the MIME repository makes an authorization check.
    CL_MIME_SERVICES method -> MIME_CHECK_AUTHORITY
    So it cannot run under SAPSYS as the user cannot be assigned any authority, let alone S_DEVELOP... (which in my opinion is much too strict here...). You will need to save a SERVICE user's logon credentials into the ICF service to make it visible to the user who has not logged in yet.
    Or... use SSO..
    Cheers,
    Julius

Maybe you are looking for

  • IMovie 09 crashes every time i export. Have posted crash log.

    Every time i export my iMovie project it always crashes. Seems to be a problem with Thread 1 which I have no idea what that is. I tried exporting into DV, MOV and MP4 but anything i do seems to make no difference. Here is crash log: Process: iMovie [

  • NetStorage server without eDirectory installed on Linux OES2-SP2

    Hello Forums I was wondering if NetStorage can be working on a Single SLES10-SP3/OES2-SP2, server without actually having eDirectory on the server itself but pointing the NetStorage configuration to any server holding a R/W replica of eDirectory, by

  • Bookmarks ok but no password

    Bonjour, suite à l'installation de mon nouveau pc, j'ai souhaité faire une synchro de mes données avec Sync. D'habitude je n'ai aucun soucis mais là, les mots de passe n'ont pas été transféré. J'ai essayé plusieurs fois la synchro, cela ne change rie

  • Can someone help with my video setting?

    I have a bunch of small, heavily compressed AVI clips that I want to edit together. But I can't figure out how to export it with the best quality. The dimensions are 640x480, but those dimensions are always different on the exported video- I'm so con

  • A downloaded song cuts off at the end - how can i get the full song

    I recently downloaded a new song, but the song cuts off at the end.  How can I get the full song?