LDAP authenicated app links to another ldap app ?

Hello
I am trying to achieve the following and have not been able to find a solution so far.
APEX appA is a core app which has links to other apps in the same workspace.
All apps have ldap authentication.
If I log in appA and then navigate to appA I am forced to sign on again. How can I get appB to allow me in without signing on again?
Do I need to write some new routine?
Thanks
Futehr info do I need to make use of owa_cookie to acheive this storing user id and password?
Edited by: PolarWarrior on 13-Feb-2012 07:12
ah ha added a cookie into the authentication scheme and that seems to do the trick
Edited by: PolarWarrior on 13-Feb-2012 07:37

Are you passing the APP_SESSION in the URL of your calling application ?
Something like:
Button on App A:
<a href = X f ? p=1000: 1 : &APP_SESSION. X >AppB</a>replace X with double quotes...
remove spaces for the url...
Edited by: Vitor Rodrigues on 13/Fev/2012 17:44
Edited by: Vitor Rodrigues on 13/Fev/2012 18:32

Similar Messages

  • Didn't buy an app in my Purchases list - links to another, unrecognized Apple ID

    How can I get rid of an app that I didn't purchase and don't want?  It's linked to another Apple ID that I don't recognize, which pops up in the dialogue box when I try to update it.
    Here's what it looks like:

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Unfortunately you can reindex with Spotlight until the cows come home, but that won't help your real issue.
    When a stranger's Apple ID appears in the Mac App Store (MAS) on your Mac, especially that of a known and admitted app pirate in Russia, you have a pirated app on your Mac. You may not have known that it was pirated when you downloaded it. You may have been lead to believe that it was a free version or even a free trail. But the pirated app has been cracked with a MAS receipt from an app from this guy's MAS account.
    Finding a pirated app -
    When a stranger's Apple ID appears on your Mac in conjunction with an update for an app that you have never installed, you have a pirated app on your Mac. This pirated app has been cracked with the MAS receipt from the Angry Birds app acquired by the person whose Apple ID you see. This Russian Apple ID is a known app pirate.
    You may not have realized that it was a pirated app when you installed it. You may have believed that it was a trail version or a "free" version.
    All MAS apps have a MAS receipt in their app bundle. Check any app acquired from the MAS. Right click on the app's icon in your Apps folder and choose Show package contents. In the Contents folder is a _MASReceipt folder and in that folder is the coded MAS receipt. It has the Apple ID of the MAS account that bought/acquired the app from the MAS. It is that receipt that the MAS uses to alert you that an app has an update. There would not be a notice of an update with someone else's Apple ID showing in the MAS on your Mac, if there was not an app with a receipt from this person's account somewhere on your Mac.
    Download the free app FindAnyFile (FAF);
    http://apps.tempel.org/FindAnyFile/
    This app is easier to use and seems to be more powerful than Spotlight. Open FAF and in the box type _MASReceipt and press Find. It should come up with a list of every app on the Mac with a MAS receipt. Compare the apps with receipts in FAF's list with your purchased apps list in the Mac App Store. The odd app out should be the pirated app.

  • Forcing link in one web based PDF to open link to another PDF in new browser window

    We have created a form using LiveCycle Designer ES2.  The form is found on our website and is used by faculty to submit proposal information to our office.  Depending upon the answers to questions in the form if they say yes we had a link to another form that we would like them to complete and submit with the original PDF that they are working on.  The problem that we are having is that when they click on the form it opens the new PDF and all the data that they had entered in the original PDF is gone once the new form opens up.  Is there a way to force the new PDF via the use of some scripting that can go along with the link, or via the use of a button that can force the new form to open in a new browser window?  It is impractical for us to expect 1500 faculty members to change their browser settings to open new PDF's in a new window.  We have removed the links for now and have just put in text that says if they select yes they need to go out and complete the additional form.
    The form we are using can be found here: http://spo.usu.edu/files/uploads/SP-01.pdf
    The first three questions on page two where we reference the other forms is where we would like to be able to add the links to the new forms and have them open in a new browser window.  When the form is downloaded and opened in Adobe Acrobat/Reader the links functioned correctly, it just did not function properly when it opens in a browser.
    Thank you in advance for any assistance you can offer in regards to this issue.

    I used a button, removed the border/fill properties and underlined the caption to look like a URL.
    The click event is...
    // form1.page1.subform1.urlBtn::click - (JavaScript, client)
    app.launchURL("http://spo.usu.edu/files/uploads/SP-01.pdf",true);
    The PDF will open in a new window or tab, depending upon the browser configuration.
    Steve

  • Creating Ejb link to another Weblogic server

    I am trying to create a EJB jndi link to another weblogic server from a weblogic
    server.
    Basically I have a web application that uses an EJB that is deploed on another
    weblogic server and I would like to connect to it.
    One way I can do is the remote lookup using the Hashtable and the context factory,
    something like this
    Hashtable props = new Hashtable();
    props.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    props.put(Context.PROVIDER_URL, "t3://localhost:7001/");
    Context context = new InitialContext(props);
    I used a jndi-link in resin previously, that did not require me to do a remote
    lookup and rather created a link at the server level and allowed me to do a direct
    InitialContext() lookup.
    <jndi-link>
    <jndi-name>java:comp/env/ejb/test</jndi-name>
    <jndi-factory>weblogic.jndi.WLInitialContextFactory</jndi-factory>
    <init-param java.naming.provider.url="t3://xx.x.x.x:7001"/>
    <jndi-lookup>ejb.test</jndi-lookup>
    </jndi-link>
    Can I do something similar in Weblogic? If yes, how can I do it.
    Appreciate your help.
    Thanks,
    Varun

    "Varun Garg" <[email protected]> wrote:
    >
    I am trying to create a EJB jndi link to another weblogic server from
    a weblogic
    server.
    Basically I have a web application that uses an EJB that is deploed on
    another
    weblogic server and I would like to connect to it.
    One way I can do is the remote lookup using the Hashtable and the context
    factory,
    something like this
    Hashtable props = new Hashtable();
    props.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    props.put(Context.PROVIDER_URL, "t3://localhost:7001/");
    Context context = new InitialContext(props);
    I used a jndi-link in resin previously, that did not require me to do
    a remote
    lookup and rather created a link at the server level and allowed me to
    do a direct
    InitialContext() lookup.
    <jndi-link>
    <jndi-name>java:comp/env/ejb/test</jndi-name>
    <jndi-factory>weblogic.jndi.WLInitialContextFactory</jndi-factory>
    <init-param java.naming.provider.url="t3://xx.x.x.x:7001"/>
    <jndi-lookup>ejb.test</jndi-lookup>
    </jndi-link>
    Can I do something similar in Weblogic? If yes, how can I do it.
    Appreciate your help.
    Thanks,
    Varun
    hi,
    Yes, it is possible in weblogic for more info visit this url,
    http://e-docs.bea.com/wls/docs70/ejb/reference.html#1221067
    u have the description of how to use the below tags
    <initial-context-factory>weblogic.jndi.WLInitialContextFactory</initial-context-factory>
    <provider-url>WeblogicURL:Port</provider-url>
    <indi-name>jndiweb</jndi-name>
    hope it help u
    regards,
    Elango TR

  • I have replaced my laptop and installed iTunes. When I try to sync my iPad or iPhone it says they are already linked to another iTunes library. How do I get back to my original library.

    I have replaced my laptop and installed iTunes. When iffy to sync my iPad or iPhone it says they are already linked to another iTunes library and will only let me transfer purchased items. How do I get back to my original library.

    Check out the solution found here.
    If you do a restore you will lose everything.  Some things will be backed up in iCloud but not everything.

  • When I click on an active link from another application, it opens the firefox application, but won't open open the page - it just opens Firefox or takes me to Firefox. No new tab or window is opened and the link is not displayed.

    When I click on an active link from another application, it opens the firefox application, but won't open open the page - it just opens Firefox or takes me to Firefox. No new tab or window is opened and the link is not displayed.

    Firefox sent an email to me to confirm that I had asked the above question. The email had a link to click. When I clicked it from Firefox, nothing happened. Then I opened IE, signed into Comcast, opened the email, clicked the link, and it brought me here.

  • File not found when adding a link to another site collection on the navigation page

    When I am adding a link to another site collection in the navigation page, I got the following error. Is there any limitation for the navigation setting? why can't we add a link to another site collection in the navigation page?
    This is SharePoint 2007

    Hi
    the URL provided is working?  (check it in separate browser window )
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • I just had to have my toshiba laptop hard drive replaced and I am unable to move my itunes library from my ipad back to the laptop.  It says it is linked to another library  and I can only transfer purchased music etc and not the rest of the library.Help!

    I have just had my Toshiba laptop hard drive replaced. This has resulted in all previous content held on the laptop to be lost.   I wanted to try and transfer my music library from my ipad to the laptop, but it will not allow me to do so.  The message is that the ipad is linked to another computer and it will only allow the transfer of the items purchased on through the ipad and nothing else.  Does anyone know if the full library can be transferred back to the computer?

    You need to transfer the iTunes Library from the most recent backup you made before the hard drive was replaced.
    You can't transfer the full iTunes Library from the iPad back to iTunes.
    There are third-party Windows applications that will transfer data from an iOS device, but they don't re-create the iTunes Library exactly as it was before.

  • HT204074 I have a new machine with a previous installation of Itunes, linked to another Apple ID. Even  I authorized the machine to my Apple ID, I can not connecto to the Apple Store. I tried removing Itunes and reinstalling it, but anything changed.

    I have a new machine with a previous installation of Itunes, linked to another Apple ID. Even  I authorized the machine to my Apple ID, I can not connect to the Apple Store. I tried removing Itunes and reinstalling it, but anything changed. I still can not connecto to the Store.
    My previous machine has Itunes Installed, and I deauthorized the machine so I unlinked to my Apple ID, if this is correct.
    Anyway, Dropbox is also not connecting....so I do not know how to make it woek. please help!

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • If I try and follow a link from another website to open another I get awclick.php (GIF Image 1x1) pixels in a new tab instead of the web page I want.

    I was trying to open a website as a link from another website and I get a new tab that says
    awclick.php(GIF Image 1x1 pixels)
    I can open the website without clicking on a link to it by just typing in the address but as this is a cash back site I am linking from it doesn't help!

    You're welcome

  • When I open a link from another website ForeFox puts a messagge at the top of the new link saying that it has blocked the websiste from transferring me to a new

    When I open a link for another website Firefox opens a new tab but puts a line on the top of the new page saying that Firefox has blocked the website from transferring me to another page.
    I have to press ALLOW before Firefox will open the new page.
    How can I solve this problem.
    Many thanks in advance.

    hello betth007, in order to get effective help, please open a new question at https://support.mozilla.org/en-US/questions/new instead and include a bit more details about your issue (what kind of error message are you getting, etc.). thank you!

  • Creating a database link to another schema in the same database

    Hello,
    I'm trying to create a database link to another schema in the same database. It was created without errors, but when I try to use it I receive "ORA-12154: TNS:could not resolve the connect identifier specified" message...
    I'm trying to do it because on my production enviroment the databases are separated, so there I can use database links without problem, but in my development environment it's all in one database separated by schemas...
    So I'm trying to simulate the same system to not need to rewrite the query every time I move from development to production environment.
    Any ideas?
    Thanks

    Hi,
    Yes, you can create a database link to your own database. I've done it before for exactly the same reason you want to.
    (By the way, I think it's a good reason. What are the alternatives?
    Having different versions of code for Development and Production? Absolutely not! Terrible idea!
    Using synonyms or substitution variables that are set differently in the different databases? That might be more efficient than a database link, but efficiency probably isn't such a big issue in Development.
    [Conditional compilation|http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/fundamentals.htm#sthref250]? This might be good; it has all the efficienty of the above options, with more clarity.)
    Assuming you do want to stick with a database link, not all errors are caught when you create the link.
    Is the Development database in the tnsnames.ora file of the Development server? Do you have other database links, either in the Development server or pointing to it, that work? What is different about the ones that work, and the one that doesn't?
    Edited by: Frank Kulash on Oct 14, 2009 1:58 PM
    The more I think about this, the more I agree with the earlier respondent: synonymns are a good solution for this.
    To that suggestion you replied:
    On this way I might use "select * from SCHEMA.table" instead of "select * from table@SCHEMA"... I looking for an option to use the second way...Actually, the suggestion was that you say:
    select  *
    from    SCHEMA_table_ptr;where schema_table_ptr is a synonym.
    In Development, that synonym is defined as schema.table.
    In Production, that synonym is defined as table@SCHEMA
    Why are you "looking for an option to use the second way"?
    If you think that people reading the code should realize that the query is being done via a database link (at least in Production), then add a comment.

  • Hi i want to upload my music from my i-phone to i-tunes so i can then transfer to my new samsung phone. However my i-tunes is linked to another computer which i no longer have. PLEASE HELP!!!

    Hi i want to upload my music from my i-phone to i-tunes so i can then transfer to my new samsung phone. However my i-tunes is linked to another computer which i no longer have. PLEASE HELP!!!

    The iphone is not a storage/backup device.  The sync is one way - computer to iphone.  The only exception is itunes purchases.  File>Devices>Transfer Purchases

  • Won't sync purchased items, "linked to another library on computer ****"

    I keep getting an error message that says I can't sync videos to my iPod as this iPod is linked to another library (and gives a computer code in a lot of digits and letters).
    How do I sync the video across without losing the content already on the iPod?
    I have the manually manage music and video boxes tagged - and I have purchased videos and songs, transferred them to my iPod then deleted them off the hard drive (backed up to disk, but disk in storage). I just want to add to the files already on the iPod - I don't want to lose what's already on there. I've tried changing my iPod to disk mode, I have deauthorised then authorised the 2 accounts I use on the computer, and it still won't work.
    Can anyone help me with an idea or suggestions please?

    Andrew J wrote:
    Try selecting "check for purchases" in iTunes>store menu.(Make sure you're signed up and logged in to your account). As for library location go to preferences>advanced>general and select your music folder location there.
    That's the kicker. I did all that stuff in regards to checking for purchases, authorizing the computer, etc.
    My "library" is now where I told iTunes to deal with it, yet, it still deals with my library in the old location (iTunes Library and XML files as well as Mobile Applications).
    I haven't rebooted my PC, but I sure hope that's not the reason.

  • You have created a link to another part of your book but how do you get the reader back to the original page?

    Using iBooks Author to make a book you have created a link to another part of your book but how do you get the reader back to the original page?

    Asking me to be verbore is a dangerous thing  :-)
    When you eneter information into iTunes Producer for uploading, the info must match what is in the internal metadata. In this case, the book is called Mississippi, but in  iTunes Producer it is spelled Misssissippi. There is an extra "s". This will cause an error.
    - Fabe

  • Can I add a text link to another place in a Pages v5 file?

    Simple question:
    Can I add a text link to another place in a Pages v5 file?
    My client would like to include a visible, inline Table of Contents in his ePub. Apple Pages v5 deletes the visible Table of Contents. Can I manually create a Table of Contents with clickable links to the appropriate chapters?

    Pages 5's greatest claim to fame is its general inability to do anything much, aka "simplification".
    So the answer is No! and because this is also Apple, You don't want to do that!
    Luckily however, should you still have Pages '09 in your Applications/iWork folder, you can use that instead.
    Peter

Maybe you are looking for