Auto Login in Apex 4.2.3

Hi All,
Am calling a apex application url from a third party application. In the url am passing user name and password and i to want to check the user is valid user or not, if the user is valid then it should skip the login page and go to the home page. I created a custom authentication to validate user.
This is my url
http://host-name:7777/pls/apex/f?p=104:101::BRANCH_TO_PAGE_ACCEPT:NO::P101_USERNAME,P101_PASSWORD:username,password
If i run the application from the third party application,it directly going to login.
Can any one help me to achieve this
Brgds,
Max.

I have done similar thing in my apex application, in which user directly logs into another apex application without facing Login page.
This is the only thing I did.
1. Copied the Login process.
   I copied the login process and changed the process point as after header.
and made the process conditional. Condition was username and password field should not be null.
Thats it.
as soon as you redirect to Apex application from third party application, Login process will see if username and password are there or not. If those fields are not null then your regular login process will be executed.
I hope it solves your problem.
Please don't forget to mark if the answer was correct or helpful.

Similar Messages

  • How to auto login and pass data (parameter) to ApEx at the same time

    Does anybody know how to automatically login to apex (e.g. from JSP page) and pass a parameter value at the same time? I can use wwv_flow_custom_auth_std to login, I can even choose a page but I cannot pass any data (at least I do not know how). If I use f?p URL syntax I can pass data but there is no way to pass login/password information.
    Any idea? Thanks Jaros

    Jaros -
    You could copy your login page and make the new page "public". On the new page, add a process before the login process that sets the value of application item FSP_AFTER_LOGIN_URL to the report page URL (with the arguments), e.g.,   :FSP_AFTER_LOGIN_URL := 'f?p=&APP_ID.:100:&SESSION.::NO::P100_X,P100_Y:&RPT_VALUE1.,&RPT_VALUE2.';Create application-level items RPT_VALUE1 and RPT_VALUE2 in the application.
    From your external page, POST to this new "login" page, passing values for the username, password, rpt_value1, and rpt_value2 items.
    Let us know if it works.
    Scott

  • Windows NT Authentication Auto-login

    Hi,
    If we use APEX Listener, then would it be possible to provide auto-login facility to APEX applications based on user-NT id's
    Regards,
    Hari

    Hi Hari,
    I guess this won't work with the current release of the APEX Listener, as it doesn't support the CGI-Environment necessary for such operations. You can follow a similar issue (NTLM-authentication) here: {thread:id=2125018}
    There exist some Java NTLM-Implementations you could try use to create a servlet that does the header-exchange for you. Currently, there seems to be no out-of-the-box-solution for that issue. I bookmarked the following page for the case the problem may become urgent:
    http://jcifs.samba.org/src/docs/ntlmhttpauth.html
    I was hoping to find the time to create that kind of servlet, but as there's no customer need at the moment (all NTLM-users still use OHS), there hasn't been an assignment for that yet. Perhaps one of the following Listener releases includes the support for custom header exchange.
    -Udo

  • How to configure LDAP SSL using auto login wallet?

    Hello,
    I need to enable authentication over LDAP SSL.
    I've configured a wallet (auto login) containing required certificates and set accordingly WALLET_PATH and WALLET_PWD settings using apex_instance_admin.set_parameter method.
    With this, everything is working fine and LDAP over SSL is working well. It confirms that the wallet is properly configured, valid and usable.
    So, the wallet was created with auto login option and it seems to work well without specifying password when calling utl_http.
    Proof of properly configured auto login wallet (without password).
    TEST01@DB11G> exec show_html_from_url('https://www.verisign.com/'); -- test without wallet
    BEGIN show_html_from_url('https://www.verisign.com/'); END;
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1527
    ORA-29261: bad argument
    ORA-06512: at "TEST01.SHOW_HTML_FROM_URL", line 25
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1130
    ORA-29024: Certificate validation failure
    ORA-06512: at line 1TEST01@DB11G> exec utl_http.set_wallet('file:/u01/app/oracle/product/11.2.0/dbhome_1/network/admin'); -- set wallet info for use without password (autologin)
    PL/SQL procedure successfully completed.
    TEST01@DB11G> exec show_html_from_url('https://www.verisign.com/'); -- It works!
    PL/SQL procedure successfully completed.
    So, when I configure WALLET_PATH without WALLET_PWD, it not seems to work as it should with my auto login wallet...
    What am I missing? Is it APEX not handling auto login wallets correctly?
    Apex Version: 4.2.0.00.27
    OS: OEL 6.4
    DB: 11.2.0.3 x64
    Thanks
    Bruno Lavoie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hello,
    I need to enable authentication over LDAP SSL.
    I've configured a wallet (auto login) containing required certificates and set accordingly WALLET_PATH and WALLET_PWD settings using apex_instance_admin.set_parameter method.
    With this, everything is working fine and LDAP over SSL is working well. It confirms that the wallet is properly configured, valid and usable.
    So, the wallet was created with auto login option and it seems to work well without specifying password when calling utl_http.
    Proof of properly configured auto login wallet (without password).
    TEST01@DB11G> exec show_html_from_url('https://www.verisign.com/'); -- test without wallet
    BEGIN show_html_from_url('https://www.verisign.com/'); END;
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1527
    ORA-29261: bad argument
    ORA-06512: at "TEST01.SHOW_HTML_FROM_URL", line 25
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1130
    ORA-29024: Certificate validation failure
    ORA-06512: at line 1TEST01@DB11G> exec utl_http.set_wallet('file:/u01/app/oracle/product/11.2.0/dbhome_1/network/admin'); -- set wallet info for use without password (autologin)
    PL/SQL procedure successfully completed.
    TEST01@DB11G> exec show_html_from_url('https://www.verisign.com/'); -- It works!
    PL/SQL procedure successfully completed.
    So, when I configure WALLET_PATH without WALLET_PWD, it not seems to work as it should with my auto login wallet...
    What am I missing? Is it APEX not handling auto login wallets correctly?
    Apex Version: 4.2.0.00.27
    OS: OEL 6.4
    DB: 11.2.0.3 x64
    Thanks
    Bruno Lavoie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Auto login in Solaris 10

    Hi all
    I'm trying to establish auto login in Solaris 10, as a regular user or root. This is a personal testing machine, so security is not an issue.
    I want to automatically login preferably in the shell mode, ( no GUI if it's possible ), otherwise I can login with GUI, no biggie.
    From what I've found, it does not seem an easy job, given that my Solaris experience is somewhat limited, ( been working more on Linux ).
    If I can get that going, I'd prefer to run a few scripts upon login, which I think I can do it.
    So what steps must I go through to have auto login upon boot ? How hard is it ?
    Appreciate any comments. Thanks
    PS. Reposted, because I submitted my query in the wrong forum.
    Add the line below, to */etc/inittab* file.
    ip:1234:once:/full/path/to/scriptEdited by: mysol on Aug 4, 2009 4:12 PM
    Edited by: mysol on Aug 4, 2009 4:15 PM

    What do you mean by auto login?
    Do you want to implement Integrated windows authentication in OIM Design console. If yes, then I don't think it's possible.
    Post your requirement here so that ppl can help you out.

  • Unable to Login into APEX after upgrade from ORACLE XE to APEX 3.2

    Hi,
    I have upgraded Oracle 10g XE to with apex_3.2 on the Windows XP.
    My ORACLE XE wa in folder "C:\ORACLE XE"
    And APEX 3.2 in folder "C:\Ver 3.2\APEX"
    Once you complete the standard install, i performd the following steps to complete
    the upgrade which i got on my previous post.
    Till normal installation i was able to login in Apex link and was able to run my application which was
    in oracle XE but the only problem was i was unable to see any images in "EDIT PAGE" but my application was running well.
    then i did following steps to get those images
    Connect to SQL*Plus as SYS
    @APEX_HOME/apex/apxldimg.sql APEX_HOME
    @APEX_HOME/apex/apxxepwd.sql password
    (where password is the password of the Application Express internal ADMIN account)
    I chanbged image directory as below
    FROM:
    create directory APEX_IMAGES as ‘&1/apex/images’ ;
    TO:
    create directory APEX_IMAGES as ‘c:\oraclexe\apex\images’ and also tried ‘c:\ver 3.2\apex\images’;
    Ran @apxldimg.sql
    @apxxepwd.sql password (where password is the password of the Application Express internal ADMIN account)
    Exit from the SQL*Plus session.
    Change directory to c:\oraclexe\apex\owa, open the README.TXT file and follow the instructions within to complete the installation
    But now i am unable to login into the page itself. It "showing Page Not Found"
    Please kindly help me how to run APEX now through link.
    Thanks in advance.
    Thanks & Regards
    Sanjay
    Edited by: user11204334 on Aug 11, 2009 2:05 AM
    Edited by: user11204334 on Aug 11, 2009 4:30 AM

    Hi John,
    Thanks for reply
    I got error while doing following steps in few procedures
    Change directory to c:\oraclexe\apex\owa, open the README.TXT file and follow the instructions within to complete the installation
    Before doing the above step i was able to login into my application but without images
    Can you please help that how to check those errors and any particular procedure you know which is responsible for the Login problem.
    Thanks a Lot for help John
    Thanks & Regards
    Sanjay

  • View Planner 3.5 Auto Login

    I am having an issue where I have the GoldenDesktop Setup.  It logs in without issue.  This VM was created with the same customization file as the next set.   Once I use the View Planner to provision the remaining VMs, each have their local admin account disabled.   They do report to the View Planner.  They do start the workload.  However, only the original VM uploads the data.  Any ideas?

    Yes, agree.   The auto login was working after the view agent was loaded.  However, once the customization wizard ran, I noticed a few changes.  The admin was disabled and the registry entries were missing under HKLM\Software\Microsoft\Windows NT\CurrentVersion\winlogin.  The keys needed to login were AutoAdminLogon = "1" (Enabled), DefaultUserName = Administrator DefaultPassword = Q1w2e3r4! .   This was present before the customization wizard.  So, I looked at the customization wizard closer.  On the 4th step for "Administrator Password" you need to set the password toe Q1w2e3r4!.  Furthermore, place a check mark for "Automatically log on as the Administrator".  I also set this value to 10.   After doing this, the login portion worked.
    The second issue I had was the .bat file behavior.   It needed to be set to "open this file each time".  Since there were only 50 desktops, I check the box on each and pressed open.  I'm sure there is a setting to fix this.  However, I haven't researched it enough to comment just yet.

  • Auto logins on websites no longer working

    I recently (a couple days ago) got a pop-up on the lower part of my screen that said that firefox was going kind of slowly or something along those lines and said if I would like to fix this that I could click this button. Well I did that and it took me to a page that talked about resetting firefox to its default settings but that all info pretty much would be kept correct like my passwords, bookmarks, addons, and other things like that. Well I said what the heck and tried it and when it was finally done doing what ever it was doing I get back online with none of my opening tabs aloud to be there so that was wiped out, my book marks were there so that was good, but all of my addons like X-notifier and things like that were now gone, and when I go to pages now it has no idea who I am. My user names don't show up or the passwords. I can login to them and it might be fine for 5-10 minutes but then all of a sudden it tells me that I need to login all over again. Even my X-notifier does it and its supposed to know my login permanently so I never have to type it in. But I can be in the middle of sorting my emails and trying to delete something get a message that says I am no longer signed in to my email account.
    I have searched all over in the tools>options area and made sure everything is the same as it used to be with saving passwords and even scrolled through my stuff saved to see if something had gotten deleted but they are all there and I see no reason why it would not log me in to the ANY site. I know some of the sites out there don't like to allow auto login stuff which I am fine with but some of these websites I am the owner of and I know for a fact that its not my site doing it. The repeated login issue is really getting on my nerves cause its started to disturb my daily working. Please help me with figuring this out.
    Thanks
    Troy

    I am going to try the stuff mentioned by you above and see if it helps. I know its affecting this site as well and isn't keeping logged in at all as I have had to re-type my password each time I come here.

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

  • Problems joining Wi-Fi networks that require viewing a redirect page in iOS 8.1.1? Check your "Auto-Login" setting.

    Are you having problems joining previously used Wi-Fi networks that require you to view a login or redirect page (say to accept Terms of Use) first?  The problem could be your Auto-Login Wi-Fi network setting.
    I found numerous cases where I could not access in-store Wi-Fi networks (Nordstrom was one), hotel networks or in fact networks where you had to first view a Terms and Conditions page or where you had to login via a web form.
    These were all networks I had used before.
    This appears to be due to the "Auto-Login" setting assuming that once you (re)join a previously known network you can just go ahead and use it without further action. When the iOS device receives an error trying to use the network, it silently drops the Wi-Fi association.
    If this is happening to you, follow these steps:
    1) Go to Settings -> Wi-Fi
    2) Select the network you want to join
    3) When a check-mark appears next to the SSID, press the "i" button on the right hand side
    4) Set Auto-Join however you want, but shut off the Auto-Login switch
    5) Now attempt to use the network and you should be presented with the usual redirect page with terms you must accept or where you must login to use the Wi-Fi network in question
    This cleared up the issue for me everywhere I had previously been having issues.

    Just let me get one thing straight...you don't change don't do this for the PC you have your router plugged in to?
    "For Vista:
    1. Open Control Panel, Network and Internet, Network and Sharing Center, Manage Network Connections
    2. If Wireless, Right click on your Wireless Network Connection, otherwise, Right click on Local Area Connection and click Properties
    3. Highlight Internet Protocol Version 4(TCP/IPv4)
    4. Click Properties
    5. Tick Use the Following IP Address and enter the IP you want to use for that PC. I would start at 192.168.0.100(D-Link) and work your way up on each additional device. The second device would be 192.168.0.101, the 3rd, 192.168.0.102 and so on. Like I said, different brands of routers use different IP's, so it could be 192.168.1.100 and so on, so you will need to know the IP address of your router first.
    6. Subnet Mask is 255.255.255.0 on all pc's and devices
    7. Default Gateway is 192.168.0.1(D-Link) or whatever your router's IP is on all pc's and devices
    8. Tick Use the Following DNS Server Address and enter 192.168.0.1(D-Link) or whatever your router's IP is and click OK.
    9. You will need to do this on all Vista Pc's"

  • Auto login in AUR with Firefox.

    Is there a way to auto login into AUR with Firefox. Now when I get there, the username and password is filled in. But I would like to be logged in. I think Opera does it.
    Possible?

    It should work, I've updated my FF last week and had no problem so far. Actually I'm using FireFox 2.0.0.8 to post this message. I have noscript extension as well.
    All you need to do is enable cookies for forms.oracle.com/ and set it as whitelisted if you have any security extensions.
    Tony

  • Auto login in Design console in OIM

    I want to know the changes to be done so that I can auto login to xelsysadm when using design console in OIM 9.1.0.2
    Any help appreciated

    What do you mean by auto login?
    Do you want to implement Integrated windows authentication in OIM Design console. If yes, then I don't think it's possible.
    Post your requirement here so that ppl can help you out.

  • How to auto login in Solaris 10

    Hi all
    I'm trying to establish auto login in Solaris 10, as a regular user or root. This is a personal testing machine, so security is not an issue.
    I want to automatically login preferably in the shell mode, ( no GUI if it's possible ), otherwise I can login with GUI, no biggie.
    From what I've found, it does not seem an easy job, given that my Solaris experience is somewhat limited, ( been working more on Linux ).
    If I can get that going, I'd prefer to run a few scripts upon login, which I think I can do it.
    So what steps must I go through to have auto login upon boot ? How hard is it ?
    Appreciate any comments. Thanks
    P.S. Just noticed I might have posted in the wrong forum. Sorry !
    Which forum should I post again ?
    Edited by: mysol on Jul 20, 2009 10:44 AM

    ZFS has not yet been integrated into Solaris 10...
    At this time you need either the "Software Express for Solaris 2/06"
    ( http://www.sun.com/software/solaris/solaris-express/ ) or the
    "Solaris Express: Community Release"
    ( http://www.opensolaris.org/os/downloads/on/ ) to play with ZFS.
    .

  • Auto login and password problems with Safari after OS 7.0.4 update?

    Hi all,
       I updated my IPad 4 to OS 7.0.4 , now Safari won't auto login to my favorite forums and won't remember my user names or pass words. I checked in Safari settings and Names/passwords and auto fill are on. Have restarted a number of times but no change. Any fixes?
       Thanks.

    Make sure Private Browsing is off.
    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.
    http://i1224.photobucket.com/albums/ee374/Diavonex/547958b4a8c01ac084dd6649e8386 a0f_zps12fa0cca.jpg

  • How to automatically login to apex and run a specific page / application

    Hi all.
    I'd like to know if there is a way of automatically login to apex and run a specific page / application. I mean, invoke browser and pass the necessary information to login (not public user) and run a specific application( ina secure way if possible).
    Thanks in advance ...!

    Hi,
    Well, as a very crude test you can set your authentication scheme to be Application Express Authenticationand define some users in Apex. Then create a before header login process on the login page (101) to automatically logon containing:
    apex_authentication.login(
        p_username => :P101_USERNAME,
        p_password => :P101_PASSWORD );
    :P101_PASSWORD := NULL;conditional on P101_PASSWORD is not null.
    Then you can login by specifying your username and password in the URL e.g.
    f?p=YOURAPP:LOGIN:::::P101_USERNAME,P101_PASSWORD:username,password
    Rod West

Maybe you are looking for

  • Cannot set selectOneChoice value during reload (value auto become null)

    Dear all, I have a problem that getting null value in the SelectOneChoice field in a table binded to a view object. If I change that SelectOneChoice to inputText, it works perfectly. The details of the situation is described as follows: I've binded a

  • Loading Webpage is not recorded

    Hello, i like to record a configuration of a WebInterface. There are many links and inputfield. But after i click a link in the browser a new Webpage was displayed but it was not recorded in captivate. After i type in a new inputfield - captivate dis

  • Color depth of the mouse cursor

    Upgraded to srss 4.2 yesterday and discovered the addition of Xrender support. After enabling it the mouse cursor switches to an animated one. This looks really horrendous, since the mousecursor is displayed in black and white (1bit color depth). Doe

  • App Store keep using an old email and so I can't update

    App Store keep using an old email and so I can't update how can I update my Apps?

  • Forgot Apple Passcode

    My iphone 5 asks for a 4-digit Passcode in order to update an IOS. I do not know my Passcode. How do I get it?