How do I register Multiple External Application IDs

How do I register Multiple External Application ID's in a single WEBCLIPPING provider....

Hi Java,
You cannot have multiple External Application associated with a single Provider , you need to register diffrent providers with respective External Applications
Thanks
Vineet

Similar Messages

  • How do you harness URL external application in a JSP?

    I have successfully deployed the Yahoo Finance sample URL External Application. However, I do not understand how to utilize the URL classes (in the pdkjava.jar) to harness the external application information once a user has authenticated. I am building a JSP portlet that displays and applet, however the applet requires a username and password. I need to get the Username and Password from external application, which it gets from the user via External Application. How do I get these values in my JSP (that is defined in my provider.xml)? I keep seeing documentation regarding the ExternalPrincipal object however I don't understand how to utilize this object in my JSP. I beleive the ExternalPrincipal object is what I need in my JSP, seeing that it has the methods for getting the user and password. Unless is there a better way of achieving this, can anyone shed some light on getting the ExternalPrincipal object for an External Application session?
    Thanks,
    Laith E.H.

    Thanks for the example. I have a better understanding now, however I'm still having trying to comprehend the flow of executing in this portal model.
    I have a problem with:
    PortletRenderRequest pr = (PortletRenderRequest) request.getAttribute("oracle.portal.PortletRenderRequest");
    ProviderUser prUser = pr.getUser();
    ProviderSession pSession = prUser.getSession(true);
    I get a NullPointerException on the second line when trying to getUser(). I'm not sure where the problem could be. In the provider.xml, my ExternalProviderInstance, or the JSP itself? I have another JSP portlet on the same page that calls the same method with success.
    Thanks,
    Laith E.H.
    provider.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.http.URLProviderDefinition">
         <providerInstanceClass>com.cox.portal.provider.ExternalProviderInstance</providerInstanceClass>
         <session>true</session>
         <authentication class="oracle.portal.provider.v2.security.Authentication">
              <authType>ExternalApp</authType>
              <userFieldName>Username</userFieldName>
              <userPwdName>Password</userPwdName>
              <errorPageMessages>Invalid ID,Invalid Password</errorPageMessages>
         </authentication>
         <portlet class="oracle.portal.provider.v2.http.URLPortletDefinition">
         <id>1</id>
         <name>ExternalAnalyzer</name>
         <title>Main Analyzer</title>
         <description>This portlet logs into analyzer</description>
         <timeout>100</timeout>
         <timeoutMessage>analyzer timed out</timeoutMessage>
              <showEdit>false</showEdit>
              <showEditDefault>false</showEditDefault>
              <showPreview>false</showPreview>
              <showDetails>false</showDetails>
              <hasHelp>false</hasHelp>
              <hasAbout>false</hasAbout>
              <acceptContentType>text/html</acceptContentType>
              <registrationPortlet>false</registrationPortlet>
              <accessControl>registered</accessControl>
              <renderer class="oracle.portal.provider.v2.render.RenderManager">
                   <showPage class="oracle.portal.provider.v2.render.http.URLRenderer">
                        <pageUrl>http://catl0dv31.corp.cox.com/bic/analyzerIFrame.jsp?ap_doc=analyzer&amp;ap_id=105</pageUrl>
                        <contentType>text/html</contentType>
                   </showPage>
              </renderer>
              <securityManager class="oracle.portal.provider.v2.security.URLSecurityManager">
                   <authorizType>registered</authorizType>
              </securityManager>
         </portlet>
    </provider>
    ExternalProviderInstance:
    package com.cox.portal.provider;
    import oracle.portal.provider.v2.*;
    import oracle.portal.provider.v2.http.*;
    import oracle.portal.provider.v2.externalApp.*;
    public class ExternalProviderInstance extends URLProviderInstance
    public static final String EXTERNAL_APP = "externalapp.object.key";
    ProviderSession pSession = null;
    public Object[] initSession(ProviderUser user, ExternalPrincipal externalApp)
    throws ProviderException {
    //UrlServicesUtils.logMessage("BasicURLProvider : Entering initSession.", getDebugLevel());
    //Create/Retrieve provider user session.
    if (mProviderDefinition.getHasSession()) {
    // Create the session if it doesn't already exist.
    pSession = user.getSession(true);
    // Store external app in provider session so that other modules
    // can extract it later.
    if (pSession != null) {
    pSession.setAttribute(EXTERNAL_APP, externalApp);
    // Get javax.servlet.http.Cookie[] from user
    javax.servlet.http.Cookie[] cookies = ((ServletProviderUser)user).getCookies();
    if(cookies != null)
    return cookies;
    else
    return null;

  • How can I shutdown the external application?

    Hi
    I excuted an external application with "Runtime.getRuntime.exec".
    How can I shutdown the external applicaiton(calc.exe..) which is called by me?
    Younghwan

    That's down to the web site. If "Contact Us" links to a page with details, fine, but as you say, some sites make the link a mailto: link, which automatically opens your default Mail app.
    I don't think there's a setting to change this, but TinkerTool (free) allows you to change some "under the hood" settings, and might help

  • How to stop vdbench from external applications? What are the impacts?

    I am using vdbench to test following scenario:
    1) Start vdbench - do read/write (I use poweshell start-process to start vdbench which returns me the process object )
    2) Poll for particualr system event(my test condtion). When the event happens stop read/write ASAP(To stop the process I use powershell Stop-process and pass process object as the argument. This actually stops IO as seen task manger)
    3) Continue testing
    I want to understand
    1) Are the steps followed correct?
    2) What is the correct method to stop vdbench from external application?
    Regards
    Jugari

    An other thought, that maybe is of interest to you, coming in the next version of Vdbench.
    A conversation with one of my internal users:
    It does not make sense to look at current Vdbench output trying to figure out what is happening when.
    This locks us in to tricks and guessing and prevents me from make changes to the output.
    Monday I will create a new file in Vdbench: status.html
    This file will only be there for any kind of wrappers to see what is going on.
    I'll make sure that the file contents are flushed to the file system as soon as a line of text has been written.
    * Vdbench status
    * The objective of this file is to contain easily parseable information about the current state of Vdbench.
    * This then can serve as an 'official' interface for any software monitoring Vdbench.
    * Each line of output will be immediately flushed to the file system, making its content accessible by any monitoring program.
    * The values below are all tab-delimited.
    03/25/2015-13:42:44-MDT Starting slaves
    03/25/2015-13:42:44-MDT Slaves connected
    03/25/2015-13:42:44-MDT Query host configuration started
    03/25/2015-13:42:44-MDT Query host configuration completed
    03/25/2015-13:42:46-MDT Starting rd=rd1 For loops: None
    03/25/2015-13:42:48-MDT Warmup done rd=rd1 For loops: None
    03/25/2015-13:42:51-MDT Workload done rd=rd1 For loops: None
    03/25/2015-13:42:51-MDT Slaves done rd=rd1 For loops: None
    03/25/2015-13:42:51-MDT Shutting down slaves
    03/25/2015-13:42:51-MDT Vdbench complete
    Henk.

  • How do I register multiple devices in order to read pdf books?

    My library has many downloadable books in PDF format (e.g.: epublications ). If I download a book to my tablet, I cannot currently also download it to my phone. I understand that I would be able to read PDFs on multiple devices if I were to register them with Adobe. How do I go about doing this?

    This forum is only to discuss how the forums operate, not products
    If you go to the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the Adobe product(s) you use

  • How can we control the external application

    Hi Friends
    I have an GUI Application. There is a JFrame in which if i press the HOME key then it'll launch the new application suppose the notepad.exe using the Robot class. then whatever the user right in the notepad that event should fetch in the application. i mean if user press any key then it should fetch in my application(JFrame).At that time my Swing JFrame is in background.
    So i want to fetch the key event or mouse event when my application is in background and other application is in front.

    yes its like a Macro.
    i had done project which will run the external exe file. for exapmle its notepad.exe
    when ever notepad.exe run from my program that time my program go into background and notepad screen come in to front.
    So what ever u write into notepad it will not available into my application becoz its in background.
    i want to fetch the keys which is pressed for notepad (for writing purpose and may be ENTER,DEL,HOME,END PAGE UP,etc.) so i want that keypressed event in my project (application).
    i hope now u can understand.

  • How can i register multiple apple id's and ipad with a single credit card?

    Hello Everyone,
    I am trying to register 15 iPad 2 with 15 apple id using same credit card details in the itunes section. When i register for more than one user i get an error message saying "please contact iTunes support to complete this transaction".
    Can anyone please help me in this issue.
    Regards,
    Vikas Dosala
    +91-7738371004

    You can access the itunes store without an account at all.
    You would need a method of payment in order to purchase from the itunes store.

  • How Can I Setup Multiple External Editors In iPhoto'09? (8.12)

    My daughter has cortical visual impairment and we are trying to modify photos so that she can get more out of them.  Just about everything we need to do can be done in one program like photoshop but it can be tedious and if you know anything about caring for a disabled child then you know that we simply don't have enough time and when we do have a few minutes we're exhausted.
    Our daughter is 11 now and we are really excited about improvements we are seeing in her sight and demonstrated understanding of her environment, we want to build on this.
    Currently we make photo cues for communication (they all need black backgrounds), line art of everyday obects so she can choose correct colours and then colour them, and we want to start emphasizing objects in some photos by reducing or eliminating surrounding colour.
    If you think you would like to volunteer to do any of this editing for us you can visit her (outdated) website for more some more info and an email link:
    Creative Independence For Celeste Society
    When we want to edit photos I would like to start from iPhoto and choose to edit from Photoshop, iSplash, linesmART, etc.
    Currently I right click and then drag the image file onto the other program icon (or the open file dialog of the other program) but when we do it this way the photo is not automatically updated in iPhoto, it needs to be imported.
    We would really like to keep using iPhoto to manage our files.  I joke that my wife and technology are not freinds, but really its not her fault; we have too much going on to remember a bunch of steps to complete a process and a different but similar bunch of steps for a different process, we need a simple one-click solution.  Maybe there is a plug-in I can install?
    I'm reluctant to try seting up an applescript/automator/workflow solution myself because I've tried those in the past and it just seems like Apple has more good intentions than follow through in that department, other users always seem to find a way to break them.

    As someone who parents a profoundly disabled daughter (see: http://www.rettsyndrome.ie) who just turned 12, you have all my sympathy. That said, there is no way to set up multiple editors in iPhoto. It can only use one at a time.
    Regards
    TD

  • How can we use multiple Apple on IDs on an iPad?

    I have just bought my girlfriend an iPad 2 which we have set up with a new Apple ID in her name.  She is using the iPad fine and has already used her Apple ID to download some music from iTunes onto the iPad along with some Apps.  However, I have a lot of music which I have downloaded from iTunes onto my PC using my own Apple ID. We also have an Apple TV and I use an iPhone 4 which has been updated to iOS 5.01.
    What I am confused about is how the new iCloud Service, iTunes-in-the-Cloud, iTunes Match, iTunes WiFi synching and Home Sharing all work together.  Ideally, my girlfriend would like to be able to access all the music and movies I have downloaded onto the PC from iTunes using my own Apple ID.  Should I use my Apple ID on her iPad as well as her ID for HomeSharing to facilitate this, or would this confuse the iPad?  However, I thought one of the ideas of iCloud was that any music you have purchased on one device (i.e. the PC) is automatically sent to every other Apple device you use.  Or do you have to subscribe to iTunes Match to make this happen?  Should my girlfriend be synching her iPad with the PC to gain access to all of my music, or would this confuse matters and delete everything she has bought on the iPad from iTunes using her own Apple ID?
    Is it better to "send" music and movies to our Apple TV using AirPlay or using HomeSharing?
    Any help would be appreciated.
    Thank you.

    Office is not available for iOS.

  • How do you register multiple key presses at the same time?

    Hi. I'm trying to write a first person game in OpenGL and I'm having some trouble with key listening. Right now I just use the basic AWT KeyListener. The problem that arises is that whenever I hold down a key, such as a movement key, there is a short pause after it moves me in the appropriate direction, and only after the pause does it start continuously moving me. In addition to that, I can't press multiple keys at once to get diagonal movement (I use WASD for movement). Is there something I can do with AWT to fix both of these problems, or is there something other than AWT that I should use that would be better?

    the pause is the typomatic rate of the keyboard, you can avoid that by using the keyPressed and setting a flag then a sleep(myDelayTime).... if they keyRelease--and clearing of the flag--hasn't happened after the sleep, then you're key is still down so keep firing, moving, or what ever.

  • How to receive mails from External mail ids to SAP SBWP

    Dear Experts!!!!!
    Gud Evening and Wish you all a HAPPY DIWALI !!!!!!!!
    I have requirement like suppose say I have my company mail id for eg: abc<AT>xyz<DOT>com and also have a gmail ID. My login ID in sap is say BASIS. Normally, if I configure SMTP with our exchange server then I can send mails from SAP to my company ID and also gmail ID.
    Similarly, I want to know like what needs to be configured for receiving mails in to SAP if I send mails from my compnay ID or gmail ID. To be more precise...my interest is mostly from Gmail i.e., if I send a mail from my Gmail ID, I should be able to see the mail in SBWP of my BASIS login.
    Please suggest how this can be acheived.....
    Thanks & Regards,
    Sharath

    Hi Sharath,
    Generally it is not recommended to configure income mail on SAP.
    as it increase heaby memory utilization as well as it make big impact on sap database. i.e it is unwanted increase the databse of sap.
    Thanks
    Anil

  • How to register multiple stages in fault handler?

    Hi,
    I am trying to create multiple fault handlers for multiple CQL processors.
    I understand how to create one handler but when I am trying to add another osgi service to rgister anothet fault handler I get strange behaviot in theeclipse. The EPN disappears.Any advice?
    Another question - how do I register multiple stages to the same handler?

    Hi,
    I am trying to create multiple fault handlers for multiple CQL processors.
    I understand how to create one handler but when I am trying to add another osgi service to rgister anothet fault handler I get strange behaviot in theeclipse. The EPN disappears.Any advice?
    Another question - how do I register multiple stages to the same handler?

  • [Problem]Registering "External Applications" in Oracle Portal

    We want to register an external application (simple HTML based login application) with Oracle Portal 10.1.4. We followed the steps documented and registered the external application. We did provide the necessary credentials and checked the remember credentials check box.
    We added the External Application Portlet which provides a link to the added application. However, everytime we click the link , instead of automatically logging into external application , we are shown the external application login screen.
    Our environment: Oracle 10.1.4 Portal ; Oracle 10.1.2 Appserver
    Appreciate any help to solve the problem.
    Thanks

    Hey 619948:
    These can be tricky to track down. Typically, there are 1 or more form fields missing from the external application that the actual application needs to log you in. Here's the flow I use to setup external apps.
    1) Go to login page of the external app and view the page source
    2) Find the URL in the action address of the <FORM tag or in the JavaScript used for submitting the form
    3) Find every form input including <INPUT, <SELECT, etc and note their names and their values (if any). This includes hidden ones
    4) The tricky part -- try to make an educated guess as to which fields are required and which ones are optional. This is not always obvious
    5) Setup your external application with the Action URL as the URL, the username and password fields where indicated and adding in any extra fields identified in step 4
    If that still doesn't do the trick, I use the Web Developer plugin for Firefox to change the POST (if that is what is used for logging in) to a GET so I can see the exact fields being submitted on the application's login page. Sometimes, it may be an obscure button like submit=submit.
    Finally, some applications just don't play well with externally logging in. This is one of the cases where it really isn't Oracle Portal's doing. Some apps just have so much coding and scripts etc. on their login page that you just can't login except through thier page.
    Rgds/Mark M.

  • How to run external application

    How could I call an external application like an exe file in
    Windows.
    I read the Adobe AIR Language Reference for HTML Developers,
    but don' t know if it is possible.
    Thanks.

    Well,
    I make a socket service listening to a port (an exe program
    written in C#).
    It waits for somone, listening for a command.
    From air, y make the connection to this port and parse the
    command like this:
    socket = new air.Socket();
    socket.addEventListener( air.Event.CONNECT, onSocketOpen );
    socket.addEventListener( air.ProgressEvent.SOCKET_DATA,
    onSocketData );
    socket.connect( 'localhost', 5050 );
    function onSocketOpen( event )
    socket.writeUTFBytes( "c:\windows\calc.exe" ); <<--
    send command
    socket.flush();
    function onSocketData( event ){
    var data = socket.readUTFBytes( socket.bytesAvailable );
    socket.close();
    When the air connect to the server in the port 5050, send the
    command. (onSocketOpen)
    The server then execute what we send, because is out of the
    air domains.
    Understand?
    Allways you could do it by installing a Apache, IIS, and make
    a .asp, or .php, or any other that could execute external commands.
    If you install or just have installed Apache is more easy and
    robust that make a simple server like I do.
    But I like to complicate my life, and don´t want a web
    server installed.
    I hope this can serve to you as well.
    Widomin

  • Register non web application on SSO

    how can i register non web application ? I have installed app server , oid and was able to sync with active directory. I need to integrate and have a single sign on for all my application . What will be the next step ?

    Thanks Kiran for your prompt response. I dont have any web based application. I have some of the applications where backends are oracle and sybase. How can a provide a single sign on for the application. Once the user enters his user name or password. If he has the prvilege the use multiple apps he dont have to enter username and password for each application. I had syn with windows AD. I have oracle db on unix. I believe i have to sync with EM users for all oracle db. what about sybase ?? how can i have the single sign on . I have OID, IAS installed on a single windows server.
    Yesterda when i restarted the server i got the following error. when i checked the opmnctl status
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | N/A | Down
    OC4J | OC4J_SECURITY | N/A | Down
    HTTP_Server | HTTP_Server | 2088 | Alive
    OID | OID | N/A | Down
    earlier oc4j_security and OID was alive now only http_server is alive
    when i tried to start the process i get the following errors
    E:\OraHome_1\opmn\bin>opmnctl startall
    opmnctl: starting opmn and all managed processes...
    ================================================================================
    opmn id=CV2K3TESTAPP02:6200
    1 of 3 processes started.
    ias-instance id=iasrep.cv2k3testapp02.corp.cvpsnet.net
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    OC4J/OC4J_SECURITY/default_island
    Error
    --> Process (pid=0)
    oid dependency failed
    OID
    failed to start a managed process because a dependency check failed
    Log:
    none
    ias-component/process-type/process-set:
    OID/OID/OID
    Error
    --> Process (pid=0)
    database dependency failed
    iasrep
    failed to start a managed process because a dependency check failed
    Log:
    I would appreciate if anyone could help me

Maybe you are looking for

  • Attachments from Workflow to ABAP Webdynpro launched from UWL

    Hi All, You might have seen a recent post from me for sending attachments from ABAP Webdynpro to Workflow. I could do that by just calling SAP_WAPI_ATTACHMENT_ADD. I didnt have to create an instance of the SOFM object by passing the ATT_ID from this

  • Can i set up document folders in iWork?

    Can you set up document folders in iwork?

  • How do I 'unmute' the sound? it's greyed out for me

    There's no sound coming out of my iMac, and the option to uncheck the 'mute' in Sound in System Preferences is greyed out. How do I get sound back?

  • FCP shows WHITE image for DVPAL Quicktime movies

    I have a strange issue on a friends FCP system FCP 5.1.4 OSX 10.4.11 Final cut pro shows no image ( it's white ) in Final cut pro viewer. Audio is fine. Normally this is the case when a codec is missing but they are captured DVPAL movies and the sour

  • VoIP audio noise using MacBook Pro

    Hello, I have a Macbook Pro using an airport snow ethernet and DSL, and I am experiencing a consistent audio noise, a hissing/growl sound through the entire length of any VoIP conversation (I have tried Gizmo Project and Skype). The person I am talki