Automatic Login into HTMLDB App

hi all,
I want to allow a user to access to a page in my HTMLDB application. The application sends an email to a user with a link to the page in the application.
When the user clicks the link in the mail, the browser will automatically display the page. This works if the user already logged into the application.
My question is, if the user is not login, is there anywhere I can automatically allow the user to the login by putting the user credential in the url ?
thanx,
j.

Jeffrey,
The answer depends upon how your application authenticates users. If your application has credentials (passwords?) accessible to it, and you can figure out a way to retrieve the users's password and situate it in a "deep link", and if you can then build pages in such a way that they can instantiate a new authenticated session when invoked with a URL containing said credentials but only in cases where no authenticated session already exists, then theoretically you could get such a thing to work.
I don't recommend that you pursue this, it's outrageously insecure.
Did you know that if you request an HTML DB page and you aren't logged in, after you login, you will be taken to the page you requested? This is built-in deep linking behavior supported with all common variants of authentication in HTML DB applications.
Scott

Similar Messages

  • Can not login into messages app

    I have tried to login into the Messages app but continue to receive the following error messages.
    "Incorrect Apple ID or password."  Any suggestions?

    Hi Jose,
    Please reset the password and then try logging on.
    You might want to try from a different browser and check.
    In case you still face issues : Contact Customer care : http://helpx.adobe.com/contact.html or chat with an Adobe Technician : http://www.adobe.com/support/chat/ivrchat.html

  • Automate Login into Email account

    Hi,
    I need to Login into an email a/c.Eg Gmail thru a java program.The program should populate the username and password in appropriate place and go/submit button should be clicked.Please guide me how to go about coding on this.
    Awaiting solution for this....
    Thanks in Advance
    Pavan

    Analyse the Gmail log-on site for form values and the submit action. Create an UrlConnection and do the GET or POST using that and get the result. What you want to do with that is beyond me, though. It's probably better to use Gmail's POP server in case oyu want more than just look at some HTML Strings.

  • I am not able to login into messages app

    i can't login to messages app it is always asking password by nit logging in

    Hi,
    As the Messages app could be logging in to AIM, Jabber, Yahoo, Bonjour and iMessages and four of those five need passwords but some could be the same as your Apple ID, you are going to have to be clearer.
    iMessages uses an Apple ID. It may well be your iCloud ID (All iCloud IDs are Apple IDs but not all Apple IDs are iCloud IDs)
    An Apple ID issues by Apple ending in @mac.com or @me.com if registered with iCloud or an @icloud.com  one can also be Valid AIM Screen Names.
    The same is true of an Google ID and an Jabber account in Messages were you might use  the Google ID as your Apple ID.
    Technically the same is true of a Yahoo ID but this is less likely.
    Bonjour does not need a password so we can eliminate that.
    9:12 pm      Friday; March 20, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Do the shell script have to login into Oracle Apps

    I am calling the Document Processor Java API from a shell script. The problem I have that its unable to find the
    xdo://PO.POXPRPOLXMLRTF.en.US/?getSource=true
    file within the control file.
    Is this because somewhere a shell variable needs to be set, or a login need to be made into the Oracle Apps, so this template stored in XML Publisher is accessible.
    Please advise!

    Another things you can do is
    begin
    tmp_res := apps.fnd_web_sec.CHANGE_PASSWORD('TESTUSER','changeme',false);
    update fnd_user set password_date = null where user_name = 'TESTUSER'';
    end;
    Once you do this, when the TESTUSER logs in with the password=changeme, he/she will be redirected to the change password page.
    Hope this helps,
    Sandeep Gandhi

  • Self registration - automatic login into the product

    Per requirement, after self registration request is complete (last button pushed) the user should be automatically logged in into OIM.
    Out of the box user is redirected to the login screen.
    How this could be implemented?
    Thank you for your help.

    Hi,
    As per my understanding in OIM, as you submit the Self Registration request it goes to Admin as open Prov task as many some mandatory fields are not there like Organizaiton. After putting all required atts values and submit the request then only user gets created in OIM then only you he will be login in OIM.
    So just after self registration user wont able to login in OIM.
    Regards
    Alabhya Goel

  • Automatic Login into Portal 7.0

    Hello, ive got a problem using the loginFramework.jar from the code share library.
    Ive opnened a support case, but noone seems willing to help me.
    In a nutshell, ive got a servlet that is the entry point to a 7.0 portal app.
    That servlet checks PKI certs and IDs against an LDAP, then once authorized, sets
    a session attribute that is used as the username and pass for the portal realm,
    then forwards to /application. what i want to do is have the servlet forward to
    <jsp:forward page="/application?namespace=security&event=button.login/> to simply
    bypass the login.jsp form and log the user in based in the aforementioned session
    param. ive written a custome login helper class that extends the LoginHelper and
    ive implemented all the changes prescribed in the loginFramework.jar patch available
    on the dev2dev site. what i get is this: the portal, regardless of the event="button.login",
    sends me to the form. however, once the form is filled in an submitted, it uses
    my custom loginhelper??? how do i get the <jsp:forward/> to sinply execute the
    "button.login" event???

    Hi JP,
    I have few questions for you and a few suggestions.
    Why did you decide to use a servlet instead of a CertAuthenticator?
    You can find out more about CertAuthenticators at http://e-docs.bea.com/wls/docs61/security/prog.html#1024576.
    Information on using them in 7.0 is under the heading "Using CertAuthenticator
    in Compatibility Security" at http://e-docs.bea.com/wls/docs70/upgrade/upgrade6xto70.html#1041313.
    Why aren't you using an implicit login processor to accomplish your login?
    I think you could accomplish your goals by using a CertAuthenticator in conjunction
    with an implicit login processor. The heading in the LoginFramework doc called
    "Mutual Authentication With The WebLogic Portal Login Framework" covers this approach.
    Please explain why this won't work if it won't.
    Good luck!
    -John
    "jp" <[email protected]> wrote:
    >
    Hello, ive got a problem using the loginFramework.jar from the code share
    library.
    Ive opnened a support case, but noone seems willing to help me.
    In a nutshell, ive got a servlet that is the entry point to a 7.0 portal
    app.
    That servlet checks PKI certs and IDs against an LDAP, then once authorized,
    sets
    a session attribute that is used as the username and pass for the portal
    realm,
    then forwards to /application. what i want to do is have the servlet
    forward to
    <jsp:forward page="/application?namespace=security&event=button.login/>
    to simply
    bypass the login.jsp form and log the user in based in the aforementioned
    session
    param. ive written a custome login helper class that extends the LoginHelper
    and
    ive implemented all the changes prescribed in the loginFramework.jar
    patch available
    on the dev2dev site. what i get is this: the portal, regardless of the
    event="button.login",
    sends me to the form. however, once the form is filled in an submitted,
    it uses
    my custom loginhelper??? how do i get the <jsp:forward/> to sinply execute
    the
    "button.login" event???

  • How to disable automatic login and to see other accounts?

    I bought MacBook Pro Retina with Mac OS X 10.8.2 in a shop, where there already was account "kiosk".
    I created new account, gave him Administrator priviliges.
    In the Preferences / Users & Groups I see kiosk account as "Managed", and my new account as "Admin".
    I set:
    System Preferences / Security & Privacy / General / Disable automatic login = Checked.
    System Preferences / Users & Groups / Login Options / Automatic login = Off.
    But still I have two issues:
    1) After start the laptop automatically logins into kiosk account, while I explicitly switched off this option
    2) Apart from kiosk account, the OS doesn't see any other accounts, for example my new account.
    For example, when I changed login shell for kiosk account into /usr/bin/false, I couldn't login at all. The OS said something like, there are no active accounts. So I had to set login shell back to /bin/bash using single-user mode.
    The questions are:
    How to disable automatic login into kiosk account?
    How to see a choice between kiosk account and my new account in the login dialog?
    How to delete kiosk account? Currently the delete option is disabled for kiosk in System Preferences / Users & Groups.
    So far after laptop start I automatically login into kiosk, then switch into my new account with entering a password, which is weird.
    Thanks in advance.

    It is your only option if you want to get rid of that other user account. It seems the system is Hard Set to boot to that account. How and why I have not Idea but the first thing you should of done was Restoring it to the Original OS, if it was not Mt Lion to begin with, in doing so getting rid of all other accounts and files from that other account.
    Time to Bit the Bullet and Erase the drive completely and reinstall the original shipping version of OS X on that system.
    Anton Mironenko wrote:
    Reinstalling the OS would be too extreme. I already have many programs installed, and I tuned a lot of params. Data migration is another pain.
    I hope, it is possible to solve this issue in another way.

  • Yahoo mail sent through Mail app do not appear when login into Yahoo mail

    Hi everybody,
    I have a problem that annoying me very much. I've used Yahoomail for very long before I bought a MBA. For the first time I use Mac OSX, I try to use Mac mail combine with my old Yahoo mail. Actually, I have done the config. But anything I do with my Yahoo mail through Mail app can't appear when I login into original Yahoo mail. For example: I sent a Yahoo mail through Mac mail, it's shown that the mail was sent sucessfully, but when I try to login into Yahoo mail on Web, the sent mail doesn't exist. And the same happen when I do the opposite: the mail I sent on Yahoo mail doesn't exist on Mac mail. It's a big trouble if I use other lap and try to contact with someone. So is there any solution can fix it?
    Many thanks

    I'm having the same problem, and the only help I ever seem to find suggested anywhere is "make sure its set up as an IMAP account"
    BUT it is! Mail automaticly sets all yahoo accounts up as IMAP. So is this just a yahoo problem? Is there anyway to fix this?
    For me the bigger issue isnt that I need to be able to check my e-mail through a web browser regulerly, but on my Iphone and Ipad the account, which is through the mail app, also dosnt show sent mail sent through the mac app.
    I agree this makes mail on my mac totally usless.

  • Just bought a used Oct '13 MacBook Pro and I can't sign into the App Store as it still displays the old owners user ID in the login box (in fixed grey text). Any ideas of how I what I could do? Thanks.

    Just bought a used Oct '13 MacBook Pro and I can't sign into the App Store as it still displays the old owners user ID in the login box (in fixed grey text). Any ideas of how I what I could do? Thanks.

    The first thing you should do with a second-hand computer is to erase the internal drive and install a clean copy of OS X. How you do that depends on the model, and on whether you already own another Mac. If you're not sure of the model, enter the serial number on this page. Then find the model on this page to see what OS version was originally installed.
    1. You don't own another Mac.
    If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard (OS X 10.6) installation disc, which you can get from the Apple Store or a reputable reseller — not from eBay or anything of the kind. If the machine has less than 1 GB of memory, you'll need to add more in order to install 10.6. I suggest you install as much memory as it can take, according to the technical specifications.
    If the machine shipped with OS X 10.6, you need the installation media that came with it: gray installation discs, or a USB flash drive for some MacBook Air models. If you don't have the media, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To boot from an optical disc or a flash drive, insert it, then reboot and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    If the machine shipped with OS X 10.7 or later, you don't need media. It should boot into Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    2. You do own another Mac.
    If you already own another Mac that was upgraded in the App Store to the version of OS X that you want to install, and if the new Mac is compatible with it, then you can install it. Use Recovery Disk Assistant to create a bootable USB device and boot the new Mac from it by holding down the C key at the startup chime. You will need the Apple ID and password that you used to upgrade. Note that if your other Mac was never upgraded in the App Store, you can't use this method.
    Once booted from the disc, the USB device, or Internet Recovery, launch Disk Utility and select the icon of the internal drive — not any of the volume icons nested beneath it. In the Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive, which is what you should do.
    After partitioning, quit Disk Utility and run the OS X Installer. When the installation is done, the system will automatically reboot into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    You should then run Software Update and install all available system updates from Apple. If you want to upgrade to a major version of OS X newer than 10.6, get it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the previous owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed — you have to repurchase them.
    If the previous owner "accepted" the bundled iLife applications (iPhoto, iMovie, and Garage Band) in the App Store so that he or she could update them, then they're linked to that Apple ID and you won't be able to download them without buying them. Reportedly, Apple customer service has sometimes issued redemption codes for these apps to second owners who asked.
    If the previous owner didn't deauthorize the computer in the iTunes Store under his Apple ID, you wont be able to  authorize it under your ID. In that case, contact iTunes Support.

  • Why can't I log into an app on my ipad when it works on my iphone?  Specifically ones that require my U-verse login to view.

    I am unable to use some of the tv viewing apps that require my ATT Uverse login.  They apps such as NBCSports work fine on my iphone, but when I try to use it on my ipad, I get a user not authorized message.

    You can use iCab Mobile to log into your iCloud.com account on the iPad. You must identify iCab as a desktop browser. I use iCab Mobile and I identify it as Fire Fox 4.0 for Mac. I can log into my account this way.
    I do NOT have iCloud email so I'm not positive that you can log into the email this way, but IF I recall correctly from reading a couple of other posts, it will work.
    If you want to take a chance, download iCab for $1.99 (I think). I can tell you this much - it is a superior browser to Safari on the iPad in just about anyway that you can imagine - even if you can't access your iCloud mail.

  • Automatic login the search robot into portal

    Does anybody know how to automatically login the search robot into portal using LDAP authentification? I would love to index and search content of the portal.
    Maros.

    In most cases the content of the portal consists of content on other webservers. The idea is to spider these sites and then the URL rewriter will rewrite the URL's when going through the Gateway.
    In case of f.i. Fatwire another scheme is needed where an indexer robot reads the content directly from the database (through fatwire API) and then calculates the link for the entry.

  • I can't login into iphone 6 app store

    i can't login into iphone 6 app store

    You need to provide more details in order for us to help you. What happens when you try to log in? Any error messages?

  • IPhone BT Wifi App - automatic login query

    Hi,
    I have the BT Wifi iPhone app and it connects quite successfully to my home network and hotspots.
    The only issue I have is that the app does not connect automatically, rather I have to open the app and let it do it's thing!
    The strange thing is that I have the BT Wifi app for Android on both my Samsung phone and Nexus 7, and this app does connect automatically in the background. I don't have to open the app; as soon as a hotspot is available the Android app connects without opening the app.
    Is there a reason that the Android app connects automatically and the iPhone app doesn't?
    Thanks

    As far as I can remember there used to be settings to allow the iphone to connect automatically or not depending on your choice.
    It has has been removed on the Android version, I don't have an iphone to hand to be able to check if they are still on the iPhone version. If you go into the App settings it may be that they are still on the iphone app and you need to tick the box to connect automatically. 

  • 3GS Crashed today. Booted a few times by would automatically go into reboot upon use of any app.

    3GS Crashed today. Booted a few times by would automatically go into reboot upon use of any app. Now just has the plug into iTunes screen. Retore ran, but did not fix the issue. Still plug into iTunes screen. Any thoughts?.

    First thing,I would like to tell you that it is not advisable to downgrade the router's firmware...the router may damage.As you already downgraded the firmware,reset the router and reconfigure the router from scratch...
    If you disable the SSID broadcast on the router,the mobile phone will not pickup the hidden wireless signal.
    As you were loosing the internet connection,try the following settings on the router...Open the setup page of the router and Under the Wireless tab...Change the Radio Band to Wide-40MHz and change the Wide channel to 9 and Standard Channel to 11-2.462GHz...Click on Advanced Wireless Settings...Change the Beacon Interval to 75,Fragmentation Threshold to 2304 Change the RTS Threshold to 2307 and Click on Save Settings... Also uncheck the option "Filter Anonymous Internet Request" under Security tab...Now,turn off the router for 2 minute and check...

Maybe you are looking for

  • Rendering of an 8Bit-tiff with java.awt produces crap

    Hi Folks, i do a downsampling of tiff images. The source tiffs are colored 8 Bit greyscale with a 256 color-table. Now i have 2 possibilities to resample with java.awt: 1. the target-tiff is of 24Bit true color: BufferedImage objDownsample = new Buff

  • BES 5.01 MR1 and GW 8.0.1 HP1 or 8.02

    Hello: I'm in the process of migrating our current environment of BES 4.1.6/ GW 8.01 to BES 5.01 MR1. I believe the current version of GroupWise is 8.01, not 8.0.1 HP1. How do I confirm this? The GroupWise engine (GWENN5.NLM) is 8.00.01 dated August

  • Opening Cap 4 files in Cap 3?

    I'm about to begin consulting on a Web-based training project for a client who is using Captivate 3. I work on a Mac, using VMWare Fusion 2 to emulate WinXP in a virtual machine. I installed a trial copy of Captivate 4 in my WinXP VM, and it's workin

  • 6.21 crashes

    hello Skype community. I have a little problem here. My skype crashes whenever I try to open a conversation with old history. I have tried these: install IE8 rename the folder skype to skype old delete the dbtemp in %temp% in new skype folder, I remo

  • Ovi Map not showing railway lines on N8 (UK map)

    Hi I've recently purchased a N8, and I was suprised to see the UK maps not showing the railway lines. However if I scoll across to Germany for example, the lines are clearly shown. They used to show up on my 5800 and show up on the Ovi maps website,