How to create JSF Portlet in Currrent JDeveloper Version

Hello,
Now there is no options to plugin Portlet in Current Jdeveloper Version.Anyone have any idea when Oracle Is going to Release the Portlets extension in Production Version???
Is there any good documents for how to Create JSF Portlet in Oracle JDeveloper current new Version. IF So Please send me the link.
Thanks
Sona

The OracleAS Portal is also required to deploy JSF Portlets. To Develop and deploy a JSF Portlet:
1. Install the OracleAS application server.
2. Install the portlet container.
3. Install the OracleAS Portal Extension.
4. Generate Portlet with Portal Extension in JDeveloper
5. Connect to application server.
6. Deploy Portlet to Application Server.
7. Install OracleAS Portal
8. Register Portlet with OracleAS Portal.
9. View Portlet in OracleAS Portal.
10. Add Portlet to a page.

Similar Messages

  • How to create the OSB artifacts in JDeveloper

    The docs I've seen get me a little closer in being able to test the DB and AQ Adapters on the OSB, but it really does not help me understand how to do it through JDeveloper.
    In the past we have done all of the OSB development in Eclipse and then imported it into the OSB.
    Again, the docs I've seen shows how to do the Adapter configuration in JDeveloper and then how to create the Business Services and Proxy Services directly in the OSB console.
    But I need to know how to create the OSB artifacts in JDeveloper then import them into the OSB or if this is even possible. I know there is an optional Eclipse component that you can install with OSB. Will we have to use both tools? (e.g. Eclipse for the OSB components and then JDev for the Adapters.)
    Anyone have clarification?

    Again, the docs I've seen shows how to do the Adapter configuration in JDeveloper and then how to create the Business Services and Proxy Services directly in the OSB console.WSDL/Binding generation is required to be done in JDEV. OEPE/Workshop doesn't have these adapter plugins to generate WSDL and Bindings. Once the WSDL/Binding are generated you can either use sbconsole or OEPE/workshop for your usual development.
    But I need to know how to create the OSB artifacts in JDeveloper then import them into the OSB or if this is even possible. There are no OSB artifacts that need development in JDEV. As you are aware the oracle adapters exposes back-end functionality in XML interface. This XML interface is modeled by WSDL. For adapters to work we need the WSDL and corresponding binding. Since OSB JCA transport uses adapters, we are required to provide these components.
    Will we have to use both tools?For any services that are using JCA adapters, we need to use both (JDEV and (sbconsole or OEPE) ).
    IF your services doesn't have to use JCA adapters then JDEV is not required.
    Let me know if you have any questions.
    Manoj

  • How to create snapshot portlet and snapshot query using server API

    How to create snapshot portlet and snapshot query using server API
    Regards
    Dheeraj

    Hi Sebastian,
    I have used the query and it is working fine. but, How could i include the headers of the query also in to the Excel Sheet.
    RehaanKhan. M
    see the method discussed here
    http://sqlblogcasts.com/blogs/madhivanan/archive/2008/10/10/export-to-excel-with-column-names.aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to create a portlet in Jdeveloper and consume it in webcenter spaces

    Hello all,
    I need to create a portlet in which i will be passing the parameterized url and it will go on hit the third party application.After doing that i have to consume it in webcenter spaces where user can directly add that porlet and can do all his work of third party from webcenter spaces itself.
    Can anyone tell me how to make portlets and what all we need in Jdeveloper for creating the portlet.As well as i need some reference guide which let me help to create the portlets as well as consuming in webcenter spaces.
    Please Help !!!
    Thanks...

    Are you trying to expose an existing system inside of WCS?
    If this is the case, you should investigate "External Applications":
    http://download.oracle.com/docs/cd/E17904_01/webcenter.1111/e10149/config_svcs_prod_extapp.htm#WCSUG6698
    This is an out of the box way of embedding external systems, with seperate login pages etc. I think this will achieve what you are trying to do yourself. It even allows for parameterised URLs

  • How to create JSF application from xsd files?

    Hi,
    We have many xsd files describing xml's which we are supposed to send to web services. Application which we are creating should allow user to fill xml documents with data and then we should send those xml files to some web service. We want to automatize as much as possible the process of application creation to avoid possible errors and to minimize our efforts (there are plenty of quite complex xsd files).
    Our first approach was: we used Oracle JSXB to generate java classes basing on xsd files (using JDeveloper 10.1.3.2.0.4066). Then we tried to generate DataControls, but this action fails with following error:
    Window title: Error in init bean
    Message: Could not complete initbean because it would result in an invalid document
    Details: oracle.bali.xml.model.XmlInvalidOnCommitException: SEVERE: Wartość atrybutu Name nie jest typu ID (Value of Name attribute is not of ID type)
    Wartość musi być następującego typu: (Value must be of following type)
    Nazwa typu: ID (Type name)
    Typ pierwotny: string (Primitive type)
    Z następującymi więzami: (With following constraints)
    zgodne z wzorcem: [\i-[:]][\c-[:]]* (Compliant with template)
    [ node = Name ]
    <JavaBean version="10.1.3.40.66" id="XSLStylesheet" BeanClass="oracle.xml.xslt.XSLStylesheet" Package="oracle.xml.xslt" isJavaBased="true">
    <Attribute Name="classMethodParams" IsUpdateable="0" Type="java.util.Hashtable" />
    We tried Sun implementation fo JAXB - it generated different java classes (with annotation mechanism). Creation of DataControls using those classes was successful. Then we created simple JSF page and tried to put those DataControls on it in order to let the user fill it with data. The thing is that those controls are read only as there is no row created in those DC. We can't create any row in those DC as there are only 'commit' and 'rollback' operations. When we try to call 'CreateInsert' operation on child elements of those DC we get error in JDeveloper log window:
    2007-05-29 10:08:46 oracle.adf.controller.faces.lifecycle.FacesPageLifecycle addMessage
    WARNING: JBO-29000: DataControl:createRowData
    2007-05-29 10:08:46 oracle.adf.controller.faces.lifecycle.FacesPageLifecycle addMessage
    WARNING: DataControl:createRowData
    new row is not created and controls are still read-only.
    The question is:
    1. is there another, more efficient way to create JSF application from xsd files?
    2. if this is the best way to do it, what do we do wrong?
    Leszek

    To anyone who might find it useful: our solution to mentioned problem.
    Few tips how to solve described problem:
    1. Do not use JAXB (we checked Oracle and Sun)
    2. Use castor http://www.castor.org/
    a) for each xsd generate java files in separated package
    b) use java 1.5 to let castor generate lists
    c) use mapping of xml namespaces to java packages to have only 1 implementation of each xsd
    3. Create facades - java files for you root-level java objects
    4. Right click those facades and choose 'Create DataControl' in jdev
    5. Now you may drag and drop you DataControls and use them in your JSF (or UIX) application
    I hope it will help someone :)
    Leszek

  • How to create a portlet for a new web page?

    I create a web page "A" in the remote server and have another page "B" which have a button in it. And when push the button in page "B", I want to use PRC to add a new portlet object linking to page "A" to portal. How should I do this?
    I know it's possible to add a new portlet template using IRemoteSession.GetPortletTemplateManager().CreatePortletTemplate(intparentFolderID, intwebServiceID), but how should I get the webServiceID while it haven't been created for the page "A". Must I create the web service in the portal server by hand? Is there any programmatic method to create a new web service by PRC? Or if there are some other methods to create a portlet for a new page without creating webservice, that would be a prefer.

    Hi Prateek,
    I Did the Things Which is Presented By Michal in This Blog.
    But When I Executed RZ70 With My Gateway Service as "sapgw01" And the Gateway Host As "Server Host Name".
    I Got the Error When I Click on "<b>start Data Collection"</b> After Execution of the Program As Follows
    <b>"Used RFC destination :SLD_NUC"</b>
    <b>"RFC call failed : Error opening an RFC connection"</b>
    <b>"Batch job not scheduled"</b>
    All Other Are Success Like Data Collection ......
    Please let me Know What to Do Now...
    Regards
    Khanna

  • How to create JSF UIComponent tree before rendering phase?

    Hello,
    The JSF lifecycle create the JSF UIComponent tree (I mean : parsing the JSP to buid the JSF component tree) during the restore phase if the request is a postback else during the render phase.
    In my application, I need to link JSF component with error message (coming from business layer) like :
    FacesContext.getCurrentInstance().addMessage("form1:v1", new FacesMessage("Test!"));To do that, the JSF component with the Id"form1:v1" must exist! And that not the case if the request is not a postback.
    A solution should be to build the JSF component tree just before the rendered phase by implementing the a custom PhaseListener. But i dont know how to force JSF to build the JSF component tree?
    Is it possible? Other solution?
    Thanks!
    JPL

    Sniff! no answer!
    May be I have to explain more my issue?
    JPL

  • How to create one portlet with more apps

    Hi,
    How to create 10 application with one portlet on OC4J? Anybody has experience? Care to share with me.
    Thank you.

    Hi
    If you are writing application logic using JPDK or PDK, you can implement the logic/code for 1 application or 100 applications/functionality in one portlet.
    Where as if you have per application you have 1 portlet you can have modularity, can be added to Portal page's portlet region where ever you want to.portlet provider(Web provider or Pl/sql provider) can contain multiple portlets.
    If you go with 100 applications rendering in one portlet you need to implement 100 applications logic/code in 1 portlet, you can parameterize the portelt to show which applications can be shown at run time, for this you need to implement parameterization logic in portlet code. I can say this approach is cumbersome
    Thanks
    Seshagiri.Rayala
    http://soabpel.wordpress.com/

  • How to create a portlet through the hosted portal service?

    Hi!
    I'm currently working with Release 2, Portal Version 9.0.2.2.14.
    I read that it is possible to create a portlet (eg. survey portlet) through the hosted portal serviced (portal.oracle.com). How can I do this?

    The easiest way to provide search on just pages (not content areas) would be to crawl portal pages just like static pages. We have search partners on http://portalcatalog.oracle.com/ that can help you w/ this.

  • How To Create A Portlet showing granted Items

    Hello,
    we recently installed ias 9.0.2 + Portal.
    Now I want to create a personalized portlet showing all items listed in a Portal DB Provider granted to the user (or group) actually logged in. But I don't know how to find this information or what tables to use . Perhaps I can find some help here.
    Thanks a lot,
    Frank G.

    Hi Wei
    You can create a portlet using either the Content Server (or something else) that contains links to open the content_item.jsp provided by content server. I have included a description of the JSP below and the examples outline how it would be used from a presenation template. Alternatively, if you are not using the Content Server to create your portlet you can replace the pcs tags with static values.
    content_item.jsp
    Can be used to open the content item editor. You can use a combination of the parameters below to use the content_item.jsp to create a new content item or edit an existing item.
    Parameters
    fid = the id of the folder to create a new content item
    dfid = the id of the folder that contains the det specified by the det parameter
    det = the name of the DET to use to create a new content item. The DET must be located in either the folder specified by dfid or fid.
    ctid = the id of the DET to use to create a new content item.
    ciid = the id of the content item to open in the content item editor
    checkout = set to true to checkout the content item specified by ciid.
    Examples
    To create a new content item in the articles folder using the news article DET (also located in the articles folder
    <pcs:value expr='pcs_location'></pcs:value>/published_tools/content_item.jsp?fid=<pcs:value expr="folderByPath('Articles').pcs_id"></pcs:value>&det=News%20Article"
    To edit an existing content item
    <pcs:value expr='pcs_location'></pcs:value>/published_tools/content_item.jsp?ciid=<pcs:value expr='pcs_id'></pcs:value>

  • How to create RSS portlet?

    hi,guys.
    I want to create a rss portlet,any doc. ?
    I am using jsr168,may i have sample?
    if can,pls give a hand,need some doc. or sample,thank you
    regards
    aris

    Check out this thread. It should give you some information you are looking for.
    How to Implement a portlet to display data from RSS Feed ?

  • How to create pages & portlets

    Hi
    I am new to Oracle portal. i am using Oracle 3.0.
    i am working on an application in portal. i have created n number of forms, reports, dynamic pages, menus, sub menus & lovs etc. currently i access my application in a raw manner. first login , then go to the navigator link then applications & click on menu.
    my menu is a single entry point to my application. how can i publish this. i.e what i want to do is the moment user logs in he should straight away get the menu view.
    I have read there is something by which we can create pages & publish them.
    Could someone tell me how to create a page where i can drop my components such as menu , forms & reports on to it & then create a complete portal.
    I can see a create page in my oracle portal but the moment i try to add a portlet in that page it gives me option for adding an appliction only what i want to add is the componenets(such as menus, forms etc) residing inside my application.
    what it gives me is 2 options 1 to edit & the other to navigate the application only, here i can see my components but cannot include them in my page.
    Kindly reply
    Regards
    Sushant

    Hi,
    First go to the navigator and click on the pages tab. From there click on create page link. Give the name of the page and finish with the page wizard. Then click on the created page from the navigator. Edit the page by clicking on the edit page link. Click on the "Add Portlet" icon and from there drill down into the application where the component is and then add it to the page. Make this page the default page for the users, who should see it when they log in.
    Hope this helps.
    Thanks,
    Sharmila

  • How to create a Portlet application in OPM 10.4

    Hello,
    We would like to create a portlet application. The purpose of creation of such application is to embedded this in the portal.
    Can we get the pointer on this please?

    The actual interview portlet is found in the zip you download for Oracle Policy Automation runtime components for Java (Oracle Policy Automation Downloads on OTN).
    Any basic rulebase will work inside the portlet.  The SocialServicesScreening example rulebase has both portlet and non-portlet projects.  The rules and data model are the same in both projects but these projects contain different summary screens because portlets impose a restriction on the use of relative URLs to reference static resources.  See the explanatory note in the "Change the layout or appearance of interview screens" topic of the OPM User's Guide (http://docs.oracle.com/html/E48373_01/toc.htm#Interviews%20and%20flows/Change_layout_or_app_of_interview_screens.htm?Highlight=Portlet)
    The OPA Developer Guide contains an entire section on the Interview Portlet - see the topic "The Interview Portlet" (http://docs.oracle.com/html/E48376_01/toc.htm#Interviews/The_Interview_Portlet.htm)
    .Brad.

  • How to create error  handeller page in Jdeveloper 11 (Version 11.1.1.1.0)

    Hi,
    I have created error.jsp page also added in web. XML but it is not catching exception
    error.jsp
    <body>
    <h2>Your application has generated an error</h2>
    <h3>Please check for the error given below</h3>
    <b>Exception:</b><br>
    <font color="red"><%= exception.toString() %></font>
    </body>
    Web.xml
    <error-page>
    <error-code>500</error-code>
    <location>/Error.jsp</location>
    </error-page>
    <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/Error.jsp</location>
    </error-page>
    after login page i am getting these exception
    java.lang.NullPointerException
         at view.security.UserAccess.get(UserAccess.java:30)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:118)
         Truncated. see log file for complete stacktrace
    >
    but it is not redirecting to error page
    also i am using adf.config.xml (task flow )for mapping pages so how to resolve these issue
    can anybody help me
    is there any another way to create error page
    Thanx in advance..!!!
    Amol

    Hi Frank ,
    Thanx for replying
    Where i have to define error is there any sample application that may helpful for me
    Also, I have created sample JSF page in thse
    ErrorDiaplay.jspx
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"
    isErrorPage="true"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1">
    <af:panelFormLayout id="pfl1">
    <f:facet name="footer"/>
    <jsp:scriptlet>
    out.println(exception);
    </jsp:scriptlet>
    </af:panelFormLayout>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Let me know where i have to define...
    Regards,
    Amol

  • How To create ADF Search form in JDeveloper 11g 11.1.1.0.1

    Hi,
    I am using JDeveloper 11g 11.1.1.0.1 , in which i tried creating an ADF search form that has Find and Execute Buttons.
    I created the same ADF search form using JDeveloper 11g TP3 and TP4 wherein it works fine but not in JDeveloper 11g 11.1.1.0.1.
    Scenario....
    I dragged a read only view object on to the jspx page as ADF Search Form and dragged the same as Read only table.
    After doing this if i run the application the search functionality does not happen .
    ( I click on the find button and enter the condition and then click on the execute button. records does not get filtered based on that condition specified.)
    But when the same steps is done in 11g TP3 and TP4 the search functionalty works fine.
    Can someone suggest me what is the issue.
    Is this a bug in the new release.
    regards
    vinitha

    reply is in this id
    ADF Searchform with find and execute buttons in JDev 11.1.1.0.1 studio edi.

Maybe you are looking for

  • My itunes does not recognize my iphone 4 in my Laptop?

    Hey, I have been through hard times to update my iphone 4 for the new ios5 version. Whe  I coonect my iphone 4 into my pC Windows 7, it does not appear in itunes. Can somebody help me out?

  • International characters input

    Hi all, I am facinf a small problem here. I am using JSP and servlet to input some data to a webpage. But the problem is that if I chose any other character set other then UTF-8 on the web page encoding all the special characetrs simply disappear. By

  • Create Excise invoice from Deilvery

    Dear All, I want to create Excise Invoice from delivery, is it possible? If yes, what are changes required to be done? with regards, Nikita Kale.

  • Is there any way to Mass upload documents in Documents of Record.

    Hi, Can any one help me if there is a way to mass upload documents for 200 employees at a time in to Documents of Record Thanks & Regards Damodhar

  • BizTalk Correlation in Orchestrations

    Hello All, I have a scenario in which in am calling an SP and it gives me a response. Now lets call the messagetype of Request Msg as Arequest and messagetype of Response Msg as Aresponse. There is a node in Arequest called ID. I am in innitialising