Reg: Conversion ADF application as a portlet

Hi Experts,

I'm new to the web of the centres

I have a request of the ADF.

I want to convert in port-let.

I converted port - leave entry and deployed the application to the web server integrated logic and deployment successfully completed.

Can someone suggest me what to do after that.


Thank you & in what concerns:

Pramila

Hello

Once you have converted his will gives you WSRP.you portlets can consume those webcenter and you can use those webcenter pages.

links below are useful
http://andrejusb.blogspot.in/2009/12/producing-JSR-168-Portlets-directly.html

Concerning
Siva sery

Tags: Fusion Middleware

Similar Questions

  • Problem of navigation by exposing existing ADF application as a portlet in WebCenter

    I joined my existing ADF application with WebCenter by following the steps mentioned in http://www.oracle.com/technetwork/developer-tools/jdev/ccset62-all-100884.html.

    In the homepage of our application, we are displays a table with a list of IDs and we are adding the user selected as a parameter of the URL id to display the following page dynamically.

    After integration of webcenter homepage is displayed correctly. But when I select an id home page, home page is once again appears instead of the next page. Even if I am not able to find any exception in the weblogic Server console.

    I don't know, but what I suspect is portlet ignores settings that are appended to the URL.

    Can someone help me solve this problem of navigation.


    Kind regards
    Kiran

    Published by: user13331987 on August 30, 2010 04:27

    Published by: user13331987 on August 30, 2010 04:46

    The difference with portlets and adf applications, is that you can not access the URL from the portlet settings. You need to spend your portlet page.
    You must first create a pageparameter that can be done in the links page or when running using the component of an oracle composer.

    This article describes how to wire set of portlets, but that's why you need of pageparameters and portletparameters:
    http://download.Oracle.com/docs/CD/E12839_01/WebCenter.1111/e10149/pages_wiring.htm

    You must do the same thing, but you have only 1 portlet and your page setting will be an EL statement where he gets the parameter of the URL. When you set the portlet for the pagaparameter parameter, the value of the pageparameter will be send to the portlet, and then you can ask that the value of your portlet.

    I've already implemented this on a webcenter application spaces so if you get stuck somewere, let me know.

  • Reg: 11g ADF application.

    Hi all

    We have developed an application in which we have a login page that uses a "connect" button (Gobutton).
    After giving the user name and password, is there a way to simply press the ENTER key click the gobutton to login to access the next page instead.

    Thank you
    Harsha

    Hello

    It is of course possible.
    If you have a goButton such as:

    Set the defaultCommand your form attribute to point to your button:

    Jack

  • Expose the ADF existing as a portlet in a WebCenter application

    Hello

    We have an ADF 11 g application deployed on Weblogic Server. We want a POC (Proof Of Concept) where we expose this application as a portlet in WebCenter. I am new to WebCenter and grateful if you can give me some pointers to integrate an existing 11g ADF with WebCenter application.

    Kind regards
    Antony.

    From my own experience, I used the Portlet JSF Oracle bridge at portletize my JSF pages and workflows. There are examples in OTN: [Portletize a JSF Application Using Oracle JSF Portlet bridge | http://www.oracle.com/technetwork/developer-tools/jdev/ccset62-all-100884.html]

    This white paper describes how the workflow portletize.

    Blog of Peter Moskovit has a number of publications on the topic:

    http://pmoskovi.WordPress.com/2008/07/23/building-JSF-portlets/
    http://pmoskovi.WordPress.com/2008/07/18/JSR-301-the-JSF-portlet-bridge/

    Hope that helps.

    CAPPA

  • Map ADF application to groups OID roles in Weblogic 12 c

    Hello guys

    I have an ADF application deployed on weblogic 12 c that contains some application roles. I have OID with the users and groups that are created. I created OID authenticator and made sufficient and placed at the top of the list of providers.

    Now on the EM console, when I try to map application to the OID roles roles, can't the OID groups in the list. It shows just the default value of groups of weblogic. I was following under video where the OID groups appear. But not in my case. Can someone help me find what I'm missing here?

    https://www.YouTube.com/watch?v=WNFKdqEfQy4

    Try setting the DefaultAuthonticator control indicator on "OPTIONAL".

  • ADF Application Tuning to improve performance

    Hello

    I use Jdeveloper 11.1.1.9, and I built an ADF application with root application Module and 8 Modules application Sub (8 services),

    and many simultaneous users can use the system of and I want to get the best setting of the application of the ADF , but I can't determine the values and properties to change for best performance.

    Note that I read a lot of articles, and to be honest I don't understand.

    If there is an example please provides.

    Thank you very much.

    There is no one who can give you good values, because they depend on the application and how it is used.

    Reading Andrejus Baranovskis Blog: Stress test Oracle ADF BC application - Passivation and Activation

    and Andrejus Baranovskis Blog: ADF Performance Marathon - 22-hour Stress Test and discover the good values by the stress test your application.

    Timo

  • [ADF, JDev12.1.3] How to manage cookies (configure/create/read) in the ADF applications?

    Hallo,

    I would like to create a cookie in my ADF application.

    To start I used the code shown in this thread code example for create / read a cookie value? but the cookie seems to not be created.

    It is not present in Firebug or it can be retrieved by the code.

        Cookie userCookie = new Cookie("myCookie", "hello");
        userCookie.setMaxAge(-1);
        FacesContext ctx = FacesContext.getCurrentInstance();
        ((HttpServletResponse) ctx.getExternalContext().getResponse()).addCookie(userCookie);
    
    
        Cookie retrieveCookie = (Cookie) ctx.getExternalContext().getRequestCookieMap().get("myCookie");
        if (retrieveCookie != null)
          System.out.println("My cookie is: " + retrieveCookie.getName() + " " + retrieveCookie.getValue());
    

    What's not in the code?

    There may be something to confiure in the application of the ADF?

    Thank you

    Federico

    1. Cookie userCookie is new Cookie ("MyCookie", "Hello");.
    2. userCookie.setMaxAge(-1);
    3. FacesContext ctx = FacesContext.getCurrentInstance ();
    4. (Ctx.getExternalContext () m:System.NET.FtpWebRequest.GetResponse ()) .addCookie (userCookie) (HttpServletResponse);
    5. Cookie retrieveCookie = ctx.getExternalContext () .getRequestCookieMap () .get ("myCookie") (Cookie);
    6. If (retrieveCookie! = null)
    7. System.out.println ("my cookie is:" + retrieveCookie.getName () + "" + retrieveCookie.getValue ());

    Is - this code is run from the same method in java?

    If this will not work (cookie is added to the http response if you can't get this until the next http request arrives)

    Dario

  • How to wait for HTML when ADF Application sends a 'work' screen while Looking Up data space reserved

    Hello world

    I am trying to write test scripts in Openscript for an ADF application that uses Business Intelligence and support partial-Page rendering.  While it generates data, it sends HTML says his 'work', and then re - makes the area after the SQL call to the database ends.  The script passes after receiving the 'work' page and errors because it cannot find the variables that should have been created.

    How can I make the script wait for the actual page?  I looked through the documentation and looked online but I couldn't find anything relevant (or do not know what I'm looking for).

    Any help appreciated.

    Thank you

    Roy

    OK - problem solved.

    OBIEE sends the page indicating that it is looking up until the actual data returned.  There is an option on the Weblogic OBIEE server in the {WEBLOGIC_HOME}/instances/bi_instance/config/OracleBIPresentationServicesComponent/coreapplication_obips1/instanceconfig.xml file that can be defined (for test/debugging) to delay sending the screen holder place 'research'.}

    This should be added to the file XML between the tags.

    600

    True

    The value indicates how many seconds the OBIEE server waits until it sends to the screen "search.

    I hope that this information will prevent hair pulling episodes by others.

    Roy

  • In my adf application, I use sequences, the problem that I face, is that this sequence break at 2:21 or three insertions. Any reason?

    Mr President

    In my adf application, I use sequences, the problem that I face, is that this sequence break at 2:21 or three insertions. Any reason?

    Concerning

    How can I correct this situation?

    Well, look at your definition of the sequence and correct

    There are CACHE 20 then change or recreate your sequence and use NOCACHE

    Dario

  • ADF application enter mode of passivation

    I have an ADF application production and I am some sort of questions, the customer due to the user leave the page for the duration along (round 1 hour), then again the application and the future mode of passivation. I tested the app ADF passivation by on mode off him 'activate Module grouping of applications"in the AppModule, it works well, but in some operations, it generates unexpected behavior. So, I would like to know when the ADF application will be in the mode of passivation, y at - it a parameter to set the time to enter the application in mode passivatopn?

    FOR INFO:

    -J' have the 4 hours (customer requirement) application session timeout value

    -JDeveloper version 11.1.2.4.0

    -Weblogic Server 10.3.6

    Try to set the jbo.ampool.maxinactiveage = 60000 and jbo.ampool.timetolive = 60000 and check it out. If the application is entered in passivation mode after 1 minute idle time you can set jbo.ampool.maxinactiveage = and jbo.ampool.timetolive =-1

    for example:

    JBO.ampool.maxinactiveage = 18000000

    jbo.ampool.TimeToLive =-1

  • Deploying ADF applications with integration of EBS

    Hello

    I read a few articles about deploying ADF applications and they found it useful. Most of them are not suitable for ADF 11g developed lettering. I developed a demo application using Jdev Studio ver 12.1.3.0.0 by installing the WebLogic Server. This application must now be deployed on another node on a remote and built-in Server with EBS. References user interface developed stored procedures using IDE connect to Oracle DB. The remote server has the SDK for Java installed and a DATA SOURCE has been defined by the administrator.

    I tried to follow the steps explained in the URL that follows, but in vain. I could not find server Navigation Application. How-to: ADF Deployment Guide

    Could someone please help me understand the modalities of deployment of this application developed on my laptop on a remote server? Your valuable contribution is appreciated.

    Thank you

    udys

    You cannot deploy a 12 c apps in 10.3 WLS ADF, you WLS 12 c.

    See the doc certification for the ADF:

    Information on certification

  • How to find the url of adf application that has been deployed to the glassfish Server? I try but? It is the image of the page.

    Mr President

    This is the page of the glassfish Server

    gfurl.png

    How to find the url of adf application that has been deployed to the glassfish Server? I try but? It is the image of the page.

    webapplink.png

    In the jdev web module are

    [11: 09:38] wrote the Web for F:\backup of AshCMS\AshCMS\ViewController\deploy\AshCMS_ViewController_webapp.war application Module

    [11: 10:33] wrote the Module Enterprise Application to F:\backup of AshCMS\AshCMS\deploy\AshCMS_Project1_AshCMS.ear

    [11: 10:33] Application deployment...

    [11: 14:24] Application deployed successfully.

    [11: 14:24] time to deployment: 8 minutes, 11 seconds

    [11: 14:24]-deployment is complete.  ----

    what url in the browser.

    Concerning

    Mr President.

    I run my application on built-in web logic server and get the url from there

    http://localhost:7101 / ViewController/faces/MainPage

    then simply change the localhost of 7101 to 8081 as below

    http://localhost: 8081, ViewController, faces, MainPage

    and it works

    Concerning

  • Can deploy us ADF application on any other than weblogic server web server

    The President complied,

    Can deploy us ADF application on other web servers such as Tomcat, apachi, IAS11g or IIS

    Concerning

    See also - http://docs.oracle.com/cd/E35521_01/web.111230/e16182/appendix_glassfish.htm

    https://blogs.Oracle.com/Dana/entry/how_to_deploy_a_11g_adf_applic_1

    Ashish

  • How to display an image on a page of adf application against any employee id?

    Mr President.

    I want to display an image on a page of my adf application.

    As

    Header 1 Header 2
    EmpId1001
    Photophoto.jpg

    Concerning

    Hi Terranova

    I think that you have opened this thread without read the suggestion of the previous thread

    How to store images in the oracle database and get back on a jsff page in ADF?

    in any case see how do I view the image files on the absolute path of the server and database page

    Blog of Ashish Awasthi (Jdev/ADF): download and display of file path absolute server image - Orace ADF

    ADF Basics. : Display Image in BLOB (database) in the ADF.

    Ashish

  • How do I view the report of jasper in a separate window in the adf application?

    Mr President.

    How do I view the report of jasper in a separate window in the adf application?

    Concerning

    User, tell us your version of jdev, please! You work on this forum long enough to find out!

    This https://technology.amis.nl/2011/07/28/adf-11g-show-pdf-in-a-popup/ blog shows how to get pdf. You will need to change the blog to generate first your repost. Here's a thread responding to the same questtionn

    Open a report in a new window ADF 11 g

    and Re: open a Jasper State in the new page using servlet

    Timo

Maybe you are looking for

  • How and where to get ios gear4 smartlink app for older devices?

    I would be grateful for help on getting the gear4 smartlink ios app. I buy it in 2012, but I don't have a working backup and install on radio 2/black bird ipad and an increase of 4/house party iphone. Thank you!

  • Presario755US: Missing drivers for Presario755US

    Updated Presario755US to upgrade to Windows 7 Pro SP1.  Just fine, except the Device Manager lists: Other features: 2 base system device and in the Properties tab on each case is "no driver installed for the device. Coprocessor: again no driver not i

  • Realtek LAN

    HP Pavilion g6-1163sa Windows 7 64-bit SP1 I have a problem with the Ethernet LAN cable. At startup, it constantly does a dance of connent - not connected - connect - not connected which may be continuous or may result in a connection or a situation

  • Windows SBS 2011 standard Cancel windows updates

    Hello I downloaded 26 windows updates without approval from the admin on our server. Is there a way to reverse the? It keeps asking me to reboot the server. Thank you Simon

  • Update Xperia Z1 error

    After trying to install what I thought was a software update on the Sony PC Companion 2.1 after a few failed attempts at the download my phone shut its self off and now when I turn it back on it displays a white picture and message saying "The softwa