Uwc redirect w/ POST /uwc/wabp/login.wabp  cmd & uwcauth.admins=calmaster

We enabled uwcauth.admins and restarted the web container in SCS6U1. Now instead of getting proxyauth being disallowed we get redirected after a successful proxy authentication. The web client fails because of this redirection instead of accessing the wabp functions. Proxyauth appears to work with iwc/svc and it doesn't redirect us but we're not sure if NotifyLink is compatible with iwc as it also doesn't work. When the redirection takes place we aren't sent to a new hostname or port. It strips the path and redirects to /uwc for the same hostname and port we initially connected to. We are not using SSO and it doesn't seem to matter what the uwcauth.ssl.enabled paramter is active or whether we use SSL to access the site. Why is this redirection happening and what if anything can we change to stop it?
POST /uwc/wabp/login.wabp HTTP/1.1
Content-Type: application/x-www-form-urlencoded
User-Agent: NotifyLink Enterprise Server
Host: servername.domain
Content-Length: 71
Connection: Keep-Alive
&username=calmaster&password=password&authOnly=true&proxyauth=username
HTTP/1.1 302 Moved Temporarily
X-Powered-By: Servlet/2.5
Server: Sun Java System Application Server 9.1_02
Set-Cookie: JSESSIONID=b923cd21e6b1c033b10ed679d4bc; Path=/uwc
Cache-Control: private
Location: http://servername.domain/uwc/
Content-Type: text/html; charset=iso-8859-1
Content-Length: 0
Date: Thu, 07 May 2009 14:55:17 GMT
GET /uwc/ HTTP/1.1
User-Agent: NotifyLink Enterprise Server
Host: servername.domain
Connection: Keep-Alive
Cookie: JSESSIONID=b923cd21e6b1c033b10ed679d4bc
HTTP/1.1 200 OK
X-Powered-By: JSP/2.1
Server: Sun Java System Application Server 9.1_02
Content-Type: text/html;charset=ISO-8859-1
Content-Length: 54
Date: Thu, 07 May 2009 14:55:17 GMT

We tried looking at the uwc log file and I saw a Stack trace at one point but couldn't really determine anything from it. I found a workaround that works for me, but I consider it somewhat of a hack. It doesn't seem like I should need to do this, yet it makes it closer to a 'single host install' demo config. I encountered the problem because I am always trying to minimize the complexity of any installs I do by trimming out support for things which I do not want or need. We do not use the mail server portion of SCS6 thus long ago I removed most of the mail software components and support for mail (except for smtp event reminders to another mail host) and setup the domain and users with only -S cal (not mail or im). Since wabp logins work fine in iwc but iwc isn't compatible with NotifyLink (yet?), we couldn't use that, and it hints to me that uwc is more strict about the domain/users setup.
All of these steps are required (modify usernames, passwords, domains as necessary to match your needs)
Add mail service to the domain: (I doubt the mail hostname needs to be correct if we don't use mail, but it is required to be listed)
/opt/sun/comms/da/bin/commadmin domain modify -D admin -w adminpass -n domain.name -d domain.name -S mail -H
mailhost.for.domain.name
Then for every user that needs proxy auth to work with wabp through uwc:
/opt/sun/comms/da/bin/commadmin user modify -D admin -n domain.name -w adminpass -l username -S mail
Redeploy uwc with mail support, bogus server values for the mail portion is okay since we wont use it, ignore the can't connect to mail server warning since its bogus anyway.
Remember to re-enable proxy auth in /var/opt/sun/comms/ce/WEB-INF/config/uwcauth.properties
and any other uwc settings that got wiped out by the re-deploy.
Restart the application container server.
I noticed another thread mentioning this one, so I will mention this post over there.

Similar Messages

  • UWC tabs have wrong UWC PORT listed in URL

    Hello --
    Platform JES 2005Q1 with latest available patches.
    UWC without SSL works fine --
    UWC on same Web instance with Identity.
    Issue:
    I add SSL-enable listen socket to Web Instance (UWC, Identity), update UWC for SSL (ssl enabled=yes, auth_only=no), update M62 config for SSL/IdentiySSO, and observe the following problem after log-in.
    The UWC log-in event works correctly - SSL enabled.
    The HREF tied to each UWC tab includes WRONG port to insure UWC works correctly.
    Example: From UWC home (immediately after login).
    Calendar tab:
    https://mail.domain.com/history.html?https://mail.domain.com:0/uwc/base/UWCMain?forwardtodefview=true
    Address Book tab:
    https://mail.domain.com/history.html?https://mail.domain.com:0/uwc/abclient/AddressBook
    Options tab:
    https://mail.domain.com/history.html?https://mail.domain.com:0/uwc/base/MailOptions
    NOTE the port = ":0" suffix on UWC. The value should be "8008" -- the port for SSL-enabled Web Instance where UWC and Identity are located.
    If there an undocumented place to configure this value?? Otherwise, this seems like BUG -- or maybe work-around exists by modifying JSP's?
    Where is this value determined?? How can I change??
    This is my only problem. Any suggestions would be appreciated.
    -G

    I install the certificate in the web server and work perfect. In my browser put "https://host.domain.com/uwc" and send the certificate. (it's not my problem)
    I install the web server on the port: 80 and https: 443
    But I modify the parameter: uwcauth.ssl.authonly= true and the other parameter: uwcauth.ssl.enabled=false. I need UWC work with "authonly". I modify de file: uwcauth.properties. (and uwcauth.https.port: 443)
    And ssl with authonly don't work.(note: in my browser I use https)
    I, with Ethereal (program who scaning all the packages) I see my user name and password. if I put username: jane and password: 123yyy, I see this information with my program. In other work, My username and password don't encrypt!! I think, if i enable the parameter (uwcauth.ssl.authonly) I suppose don't see this parameters whit my program.
    I configure with this link:
    http://docs.sun.com/app/docs/doc/819-2661/6n4uetjru?q=authonly&a=view
    I reed this informacion, and configure the 3 steps. And restart my web server and does work.
    Exit addicional changes or configuration for enable ssl with authonly ?
    Note: My UWC work correctly with no-ssl
    Tks

  • [JSF2] Redirect after post, flash scope, keepMessages

    Hi,
    I'm using the redirect-after-post (or post-redirect-get) pattern [1] in a JSF2 application. To preserve the faces messages until the next request (get), I call FacesContext.getCurrentInstance().getExternalContext().getFlash().setKeepMessages(true) before returning the redirect as a result from my action method.
    All works fine, however, if I keep redirect-after-posting through my application, these messages never disappear. I have to manually clear them before issuing another redirect as in:
        private static void removeRenderedMessages(FacesContext ctx) {
            final Iterator<FacesMessage> msgIterator = ctx.getMessages();
            while (msgIterator.hasNext()) {
                if (msgIterator.next().isRendered()) {
                    msgIterator.remove();
        }Is this a bug or a feature (I'm using Mojarra 2.0.2 in Glassfish 3 web profile)? I was under the impression that variables in flash scope survive for exactly one request.
    Cheers,
    Daniel
    [www.flexive.org|http://www.flexive.org]
    [1] [http://en.wikipedia.org/wiki/Post/Redirect/Get|http://en.wikipedia.org/wiki/Post/Redirect/Get]

    Hi,
    I'm using the redirect-after-post (or post-redirect-get) pattern [1] in a JSF2 application. To preserve the faces messages until the next request (get), I call FacesContext.getCurrentInstance().getExternalContext().getFlash().setKeepMessages(true) before returning the redirect as a result from my action method.
    All works fine, however, if I keep redirect-after-posting through my application, these messages never disappear. I have to manually clear them before issuing another redirect as in:
        private static void removeRenderedMessages(FacesContext ctx) {
            final Iterator<FacesMessage> msgIterator = ctx.getMessages();
            while (msgIterator.hasNext()) {
                if (msgIterator.next().isRendered()) {
                    msgIterator.remove();
        }Is this a bug or a feature (I'm using Mojarra 2.0.2 in Glassfish 3 web profile)? I was under the impression that variables in flash scope survive for exactly one request.
    Cheers,
    Daniel
    [www.flexive.org|http://www.flexive.org]
    [1] [http://en.wikipedia.org/wiki/Post/Redirect/Get|http://en.wikipedia.org/wiki/Post/Redirect/Get]

  • Can not login the WebCenter Discussions Admin console

    Hi
    I have installed the oracle web center 11.1.1.2 and 11.1.1.3 patch and have the weblgic admin/wls_services server running successfully. after create two new users in the embed weblogic i can login the webcenter discussion. The two test users can post a announcement but have no right to create a new forum and post new thread. So i want to login the ADMIN console by host:port/owc_discussions/admin but denied, including the weblogic default admin user(weblogic/weblogic1). in the webcenter administation guide, it says:
    "By default, Oracle WebCenter Discussions is configured to use the embedded LDAP identity store: all users in the embedded LDAP store can log on to the discussions server, and all users in the Administrators group have administrative privileges on Oracle WebCenter Discussions." in 12.2.2 Discussions Server - Security Considerations
    also tried to change the configuration file for Jive(jive_startup.xml), setting the setup element to false which mentioned in another threads in this forum and still not work.
    Currently all i want to do is login the discussion as admin and create a forum, say 'Generic' and register the connection in Jdevoper and create a custom app for posting new thread.
    Hope someone can help.

    I have resolved this issue by re-build the installation

  • Unable to login to apex as admin after apparent successful installation

    I am unable to login to apex as admin after an apparent successful installation.
    I have an existing Oracle database 11.2.0.1.0 with Oracle Text running on Windows 7 Professional with hundreds of gigabytes of free disk space available. I did everything as an operating system user with administrator privileges. I downloaded the latest version of apex 4.0.2 for all languages, unzipped the downloaded zip file, extracting all files to an apex directory. I changed the working directory to apex and started sql*plus, connected sys as sysdba, ran apexins.sql installation, apex_epg_config.sql and apexconf.sql configuration, apexchpwd.sql to change the admin password, and apxldimg.sql to copy the images, and exec dbms_xdb.sethttpport(8080), unlocked accounts, and granted connect privileges.
    The installation log did not show any errors and included:
    "Thank you for installing Oracle Application Express.
    Oracle Application Express is installed in the APEX_040000 schema.
    The structure of the link to the Application Express administration services is as follows:
    http://host:port/pls/apex/apex_admin (Oracle HTTP Server with mod_plsql)
    http://host:port/apex/apex_admin (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
    The structure of the link to the Application Express development interface is as follows:
    http://host:port/pls/apex (Oracle HTTP Server with mod_plsql)
    http://host:port/apex (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
    JOB_QUEUE_PROCESSES: 1000"
    When I use either browser, Firefox 3.6.12 or Internet Explorer 8.0, and go to http://localhost:8080/apex/apex_admin I get a screen that says:
    "Enter Application Express internal administration credentials"
    and has boxes for a username and password. When I enter admin and the admin_password that I selected, then click on login nothing happens. I don't get logged in. I don't get an error message. It does not show any signs of anything running. It just sits there. I also don't get any messages from Windows or Norton 360 indicating that a pop-up window was blocked or any such thing. I checked that the services are running and also tried shutting down the computer and re-starting (cold boot), but was still unable to login.
    I am a retired developer, not a DBA, so if there is anything else that I should do or check or provide, then please let me know. I have provided a copy and paste of everything that I could think of below. Oddly I don't see an admin user.
    SQL> select * from v$version
      2  /
    BANNER                                                                         
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production   
    PL/SQL Release 11.2.0.1.0 - Production                                         
    CORE     11.2.0.1.0     Production                                                     
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production                        
    NLSRTL Version 11.2.0.1.0 - Production                                         
    SQL> select status from dba_registry where comp_id = 'APEX'
      2  /
    STATUS                                                                         
    VALID                                                                          
    SQL> select username, account_status
      2  from   dba_users
      3  where  username = 'ANONYMOUS'
      4  or     username like 'APEX%'
      5  or     upper (username) = 'ADMIN'
      6  order  by username
      7  /
    USERNAME                       ACCOUNT_STATUS                                  
    ANONYMOUS                      EXPIRED                                         
    APEX_030200                    EXPIRED                                         
    APEX_040000                    OPEN                                            
    APEX_PUBLIC_USER               OPEN                                            
    SQL> select dbms_xdb.gethttpport from dual
      2  /
    GETHTTPPORT                                                                    
           8080                                                                    
    SQL> select owa_util.get_version from dual
      2  /
    GET_VERSION                                                                    
    10.1.2.0.8                                                                     
    SQL> show parameter memory_target
    NAME                                 TYPE        VALUE                         
    memory_target                        big integer 1536M                         
    SQL>

    Are you sure you did give right path to script ? Yes.
    >
    If you extract files to folder c:\temp, you have after that folder c:\temp\apex and bunch of sub folders.
    For script to update images, you give path to folder where you did extract apex install files.
    In above case that is then c:\temp .
    >I created a directory c:\apex on my laptop. I downloaded the zip file to that directory. When I extracted the files to folder c:\apex, the result was c:\apex\apex with a bunch of sub folders and files. When I ran the script, I gave the path c:\apex as indicated in my copy and paste. So, I did everything the same as in the quote above, except that I used apex instead of temp.
    Try extract Apex install zip to c:\temp and give c:\temp as path for scriptAre you suggesting that I redo the entire installation using c:\temp instead of c:\apex? What difference would that make? Would I need to do some sort of uninstall first?

  • Can't login to local NON-admin accounts-Directory Access set to server

    I have a strange problem on a set of laptops that I cannot resolve and am hoping someone can help me.
    Here is the issue:
    I have a set of building laptops (PowerPC, OSX.4.11) that seemingly will not "search locally" in the authentication process. The logins seem to work fine for NETWORK logins to our Open Directory Master xserve, but these machines will not login to any LOCAL non-admin accounts. The local root and local admin account logins do, however, work fine. ?? The remainder of the building computers (Intel iMacs OSX.4.11) appear to have the exact same settings and login fine both locally and via the network home directories.
    I have tried the following:
    Deleted DirectoryService preferences folder (MacintoshHD-->Library-->Preferences->DirectoryService)
    Deleted the mcx cache in Directory Access
    Tried adding a new non-admin user to test (still will not login)
    Removed and re-created LDAP configuration (all set to custom)
    Tried setting the LDAP to the automatic settings ("Add DHCP-supplied LDAP servers to automatic search policies")
    Disabled all network connectivity (turned off Airport and disconnected the ethernet cable), still cannot login to local accounts
    Tried to bind in LDAP configuration (when I did bind the machine, it would no longer authenticate to the network authentication server, so I did an "unbind" and restarted and it went back to performing the network logins, but still will not login to local non-admin accounts).
    Reset passwords in System Prefs and also re-typed them in NetInfo Manager
    Deleted login keychains
    Deleted mcx.plist
    Reinstalled the OS from disk and local logins worked TEMPORARILY--UNTIL I set the LDAP directory access to authenticate to our server (which I also need for the network logins to work),then, the issue started again.
    *Same results with both ethernet and wireless connectivity enabled.
    *Note: I also manage these local accounts via WGM (installed on the local machine) and even tried disabling that and still no luck.
    Please help...I have spent hours and hours trying to find a solution and nothing seems to work! What am I missing??

    Mostly just a bump...
    How about that .local extension, or trailing / ?

  • Netweaver04 : Custom Login Module . Visual Admin : class not found

    Hi all ,
    using the Sneak Preview of Netweaver04 and Portal .
    Coded a Custom Login Module via the TechEd04 example and deployed it to the portal with security_api.jar attached ...works great .
    BUT when I try to login to the Visual Admin tool it cannot find the JARS I have put in admin/lib and I get a NoClassDefFound error on a class in security_api.jar .
    How do I  get the Visual Admin tool to find that JAR ?
    Regards
    Daniel

    Hi Daniel,
    sounds like a reference is missing.
    Check this:
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/23e4407211732ae10000000a155106/frameset.htm
    Regards, Karsten

  • How to redirect to different page after login in APEX 4.1

    Dear All,
    Here my Requirement is,When the users login,
    when they entered their username and password and pressed login button,
    they have to redirected to different pages based on the type of user.
    Here my LOGIN_TABLE has following 3 columns,
    1.Username
    2.Password
    3.Type.
    The TYPE has 2 values, employee and admin.
    when the type is admin they should be redirected to page 2,
    reaining i.e employee users has to be redirected to page 3.
    How can I do this? please give some suggestion.
    Thank you.
    regards,
    Gurujothi

    Dear Christian,
    Thank you for your reply,
    I would like to explain something,
    When I using the following function,
    *create or replace FUNCTION custom_auth_g (
    p_username IN VARCHAR2,
    p_password IN VARCHAR2)
    RETURN BOOLEAN IS
    BEGIN
    FOR c1 IN (SELECT 1
    FROM login_table
    WHERE upper(username) = upper(p_username)
    AND upper(password) = upper(p_password))
    LOOP
    RETURN TRUE;
    END LOOP;
    RETURN FALSE;
    END;*
    When login, It checks in the login_table table and if the username is exist with the pass word it successfully entered inside the application.
    for all users only one page which we set.
    My Login_table also contains type which has 2 type as I mentined above.
    But As I mentioned earliar based on the user type it has to be redirected to 2 different page.
    I found this Package but I cant understand,Can you please Explain?
    *create or replace PACKAGE app_security_pkg
    AS
    PROCEDURE add_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    FUNCTION get_hash
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN VARCHAR2;
    PROCEDURE valid_user2
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    FUNCTION valid_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    RETURN BOOLEAN;
    END app_security_pkg;*
    *create or replace PACKAGE BODY app_security_pkg
    AS
    PROCEDURE login
    p_uname IN VARCHAR2
    ,p_password IN VARCHAR2
    ,p_session_id IN VARCHAR2
    ,p_flow_page IN VARCHAR2
    IS
    lv_goto_page NUMBER DEFAULT 1;
    BEGIN
    -- This logic is a demonstration of how to redirect
    -- to different pages depending on who successfully
    -- authenticates. In my example, it simply demonstrates
    -- the ADMIN user going to page 1 and all other users going
    -- to page 2. Add you own logic here to detrmin which page
    -- a user should be directed to post authentication.
    IF UPPER(p_uname) = 'ADMIN'
    THEN
    lv_goto_page := 1;
    ELSE
    lv_goto_page := 2;
    END IF;
    APEX_UTIL.SET_SESSION_STATE('FSP_AFTER_LOGIN_URL');
    wwv_flow_custom_auth_std.login
    p_uname => p_uname,
    p_password => p_password,
    p_session_id => p_session_id,
    p_flow_page => p_flow_page || ':' || lv_goto_page
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE;
    END login;
    PROCEDURE add_user
    p_username IN VARCHAR2
    ,p_password IN VARCHAR2
    AS
    BEGIN
    INSERT INTO app_users (username, PASSWORD)
    VALUES (UPPER (p_username),
    get_hash (TRIM (p_username), p_password));
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    ROLLBACK;
    RAISE;
    END add_user;
    -- Function to Perform a oneway hash of the users
    -- passwords. This cannot be reversed. This exmaple
    -- is a very week hash and if been used on a production
    -- system, you may want to use a stronger hash algorithm.
    -- Read the Documentation for more info on DBMS_CRYPTO as
    -- this is the supported package from Oracle and
    -- DBMS_OBFUSCATION_TOOLKIT is now depricated.
    FUNCTION get_hash (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN VARCHAR2
    AS
    BEGIN
    RETURN DBMS_OBFUSCATION_TOOLKIT.md5 (
    input_string => UPPER (p_username)
    || '/'
    || UPPER (p_password));
    END get_hash;
    PROCEDURE valid_user2 (p_username IN VARCHAR2, p_password IN VARCHAR2)
    AS
    v_dummy VARCHAR2 (1);
    BEGIN
    SELECT '1'
    INTO v_dummy
    FROM app_users
    WHERE UPPER (username) = UPPER (p_username)
    AND PASSWORD = get_hash (p_username, p_password);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN raise_application_error (-20000, 'Invalid username / password.');
    END valid_user2;
    FUNCTION valid_user (p_username IN VARCHAR2, p_password IN VARCHAR2)
    RETURN BOOLEAN
    AS
    BEGIN
    valid_user2 (UPPER (p_username), p_password);
    RETURN TRUE;
    EXCEPTION
    WHEN OTHERS
    THEN RETURN FALSE;
    END valid_user;
    END app_security_pkg;*
    And you said "assign an URL to FSP_AFTER_LOGIN_URL, depending on the Type column",
    Where to assign,Could you please Explain?
    Thank you.

  • Redirecting a post

    Is it possible to programmatically POST to a jsp page from another jsp page.
              sort of like redirecting with a querystring, but I would like it to be a
              true post.
              tia
              

    I already tried this, the problem comes with the filter in my web.xml. If the translated adress have to be filtered, it is not any more after the forward.
    In my web.xml:
    <filter>
    <filter-name>Secure</filter-name>
    <filter-class>com.my.package.SecureFilter</filter-class>
    <init-param>
    <param-name>login_page</param-name>
    <param-value>/jsp/login.jsp</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>Secure</filter-name>
    <url-pattern>/secure/*</url-pattern>
    </filter-mapping>
    If the URL of the incoming request is myURL.do and after the translation, i have: translatedURL="/secure/myTranslatedURL.jsp", when I forward the request with:
    request.getRequestDispatcher(translatedURL).forward(request, response); , the filter doesn't act any more...
    Any clue??
    Thanks

  • How to redirect to a page after login fails?

    Since I am working on an automated login from Forms I would like the login page to redirect to an error page if the login fails. I can't seem to find an option for this.
    I am using a public page that branches to 101 with BRANCH_TO_PAGE_ACCEPT, but when login fails I see this login page.
    Instead of that I would like to redirect to a public page that shows a message.
    How can I do this?
    Wendy

    A login failure is when the user and/or pass is not correct. I do not want to show page 101 but a different page when this happens.
    I am using the default login page but I am calling it with BRANCH_TO_PAGE_ACCEPT so the user never sees it and I want to keep it that way....

  • Query on  redirecting to a page when login button is clicked

    Hi,
    I want to redirect to/pop up an existing page with page name 9 when the login button in the log in page is
    clicked.Is that possible?.Now it is redirecting to page 1.
    Edited by: tj2010 on Sep 8, 2009 2:10 AM

    On login page (probably Pane 101) you have Login proces. Edit it to:
    wwwxxxxxxxx.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':'||nvl(:P101_PAGE_ID,'9')
    And probably you have to change Logout link in your Authentication Schemes:
    wwwxxxxxxxx.logout?p_this_flow=&APP_ID.&amp;p_next_flow_page_sess=&APP_ID.:9
    Edited by: AndyPol on 2009-09-08 11:17

  • JSTL: c:redirect using Post

    I am trying to find some documentation as to how I can redirect to a different jsp page using post method. What I am trying to acheieve is hide the parameters in the URL for the destination page. This is very critical.
    Regards.
    Priyesh

    Ok, understood.
    What you are specifying here is pretty standard stuff. Do some processing and then display success or failure.
    Is there any reason not to use a jsp:forward instead of a c:redirect?
    Given a choice, jsp:forward is always preferred, as it doesn't involve a round trip back to the client, and most of the time you are navigating to a relative page on the server (jsp:forward doesn't work for links in different servers)
    Will all the processing take place before onLoad is called ? Please correct me if I wrong. All JSP processing occurs before the page is even dispatched back to the client.
    Of course most of the time you just want to generate the page and send it back to the client.
    The only point of doing it this way including the javascript onload event to submit a form is to hide the parameters on the form as you were requesting.
    Hope this helps.
    evnafets

  • 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

  • WebCenter RIDC DataControl always redirects any JSP page to login page

    Hi
    I have created a Data Control which connects to the UCM data repository and created a plain JSP page to return the results. I have used RIDC Connection settings and authentication details are tested and they look fine to me.
    RIDC Socket Type: socket
    Server Host Name: localhost
    Content Server Listener Port: 4444
    Authentication: Identity Propagation
    Username/Password: weblogic/weblogic
    But when ever I ran the test JSP page, it always redirects the page to login page. For example: http://127.0.0.1:7101/RIDCDocumentManager-Portal-context-root/faces/oracle/webcenter/portalapp/pages/login.jsp
    Any suggestions?
    Thanks
    Khad

    Thanks for the details Yannick. The home.jspx works as expected. Thanks for that.
    I have got one more question on passing username through RIDC api.
    Via RIDC, how can I pass the UserName to the IdcContext object dynamically [IdcContext userContext = new IdcContext("weblogic");]. I mean how to retrieve the logged in user name for the person requesting the page instead of hardcoding the username. Below is the code fragment:
    // create the manager
    IdcClientManager manager = new IdcClientManager();
    // build a client that will communicate using the intradoc protocol
    IdcClient idcClient = manager.createClient("idc://localhost:4444");
    // get the config object and set properties
    idcClient.getConfig().setSocketTimeout(30000); // 30 seconds
    idcClient.getConfig().setConnectionSize(20); // 20 connections
    //create a simple identity with no password (for idc:// urls)
    IdcContext userContext = new IdcContext("weblogic");
    // create an identity with a password
    //IdcContext userPasswordContext = new IdcContext("weblogic", "idc");
    // get the binder
    DataBinder binder = idcClient.createBinder();
    // populate the binder with the parameters
    binder.putLocal("IdcService", "GET_SEARCH_RESULTS");
    //binder.putLocal("QueryText", parameter);
    parameter = getInputParameter();
    binder.putLocal("QueryText", "<qsch>" + parameter + "</qsch>");
    binder.putLocal("ResultCount", "20");
    // execute the request
    ServiceResponse response = idcClient.sendRequest(userContext, binder);
    // get the binder
    DataBinder serverBinder = response.getResponseAsBinder();
    DataResultSet resultSet = serverBinder.getResultSet("SearchResults");
    // loop over the results
    for (DataObject dataObject : resultSet.getRows())
    dataObject.get("dDocTitle");
    dataObject.get("dDocAuthor");
    dataObject.get("dInDate");
    System.out.println("Title is: " + dataObject.get("dDocTitle"));
    System.out.println("Author is: " + dataObject.get("dDocAuthor"));
    System.out.println("Author is: " + dataObject.get("dInDate"));
    }

  • Redirecting after posting not working

    I noticed yesterday that if I post in a topic, I get to the page saying that I will be redirected back to the topic, but this redirection does not happen. It used to work but it seems to take ages now... I waited a few minutes to be sure, but no redirection...
    Is this a known problem or is it something at my end? I don't find anything in the bug tracker or the forum. I'm using firefox from core (3.6.8).
    Last edited by Ramses de Norre (2010-08-16 09:23:33)

    You can tell Firefox not to redirect by default or to warn you if a page wants to redirect you. There should be a link to click if auto-redirect fails.
    Edit: I just posted, Firefox warned me, I allowed redirection - and I'm being succesfully redirected.
    I could've clicked the link that starts with "Click here (...)"
    Post entered. Redirecting …
    Click here if you do not want to wait any longer (or if your browser does not automatically forward you)
    Last edited by karol (2010-08-16 10:58:36)

Maybe you are looking for

  • My apple won't let me download free apps because of payment issue

    Hello my apple App Store will not let me download free apps because of payment issue but all I download is free apps can some one help me please

  • Multiple key figures in a report painter or writer

    I would like to bring GL account balances  in the form of a P&L and also bring statistical key figues. I need to perform a formula of dividing the dollar value by the SKF. Is this achievable? The column in the painter does not permit more than one ke

  • Receiver AAE IDoc adapter

    Hi All, I have a doubt regarding receiver AAE Idoc adapter. There are three options available in java IDoc adapter namely Default, Manual and From NWA. In Default option, we just need to configure a RFC Destination in NWA but in From NWA option, we n

  • How to create a COND_A IDoc

    Hi all, i have a question regarding the creation of a COND_A IDoc. Let’s say there already exists a price condition for a specific material. Is it possible to create a COND_A IDoc that includes all data for the existing price condition when I just ha

  • LG Ally Facebook Sync Does Not Work

    Good afternoon,      The following feature does not work for my phone, and LG Electronics pointed me in the direction of Verizon.  Also on a side note, the older version of Facebook that comes with the phone is not uninstallable.       Under "Account