Difficulty creating portlets out of JSF's

I have followed the “Building Portlets from Oracle ADF Faces Applications (JSF Portlet Bridge)” guide. I ether have no data in the portlet or “Portlet unavailable” text in the portlet. I have tried the solution suggested in “E.1.5.9 Portlet Unavailable Error” with out success. All of my JSF projects function correctly as standard web pages.
- using Jdeveloper 10.1.3.2
- deploying to Embedded OC4J Sever
- connecting to Oracle 9i database
Thanks
S-
Message was edited by: t5shogan
t5shogan

Reposted to the WebCenter forum:
WebCenter Portal
S-

Similar Messages

  • Create Jasper Reports in JSF Portlet...

    Hi,
    Is there anyone having samples of creating Jasper Reports in JSF Portlet ( Sun Java Creator 2 EA).
    Thanks indeed for your help.
    =netsearcher2000=

    Hi Sundar
    check link:http://www.jasperassistant.com/demo.html
    this link contains all necessary steps for creating jasper report this would be helpful for u

  • Documention for creating portlets using pl/sql???

    Hi,
    can anyone help me get links for any kind of documentation about creating portlets using pl/sql for Oracle Application Server Portal 10g
    thanks
    M

    I think this will help out...
    Check out Chapter 8, "Creating PL/SQL Portlets" in the Oracle Portal 10.1.4 Developer's Guide.
    http://download-east.oracle.com/docs/cd/B14099_19/portal.1014/b14135/pdg_pdk_plsql.htm#BJEFHIBH

  • Can position be created with out creating Job..

    Hi Experts,
    A simple question but quite complicated.
    Can position be created with out creating the job. ( yes it will give the warning and create).
    Here my actual question comes, what is the need of creating the Job. when we can create position without job in general Scenario.
    Is it compulsory to create job whenever we create position.
    Your replies are highly appreciated.
    Thanks in advance.
    Regards,
    Dollly

    Hi Dolly,
    I definitely aggree with what guru Sikindar mentions.
    One more point:
    SAP advises to create separate positions for each of the employees in your organizational structure.
    For example, there may be a hundred "Engineer" positions in your company (with codes: 50000001, 50000002, ... 50000100).
    At this point, when you're asked to take a report of all of the "Engineer"s in your company, then you need to enter all these position codes into the selection screen : Nearly impossible scenario!
    However, if you had linked all of these positions to a single job named "Engineer" and numbered "50000000", then you would be able to find all the positions linked to this job and all the employees holding these positions by entering a single object ID and evaluation path in the selection screen of a particular report.
    Regards,
    Dilek

  • How do I create an out of office reply

    I am going on vacation and would like to create an automatic response saying I'll be out of the office.

    1) Create a "Out of Office" message and save as a template.
    2) Create a message filter. Tools>Message Filter
    3) Select New then enter a "Name of Filter.
    4) Match all of the following
    5) Date - is before - 8-1-2014
    6) Reply with Template - " Name of Filter"
    7) Leave Thunderbird open and running.
    8) Out of Office message that was saved as a template will be used to reply to all mail received till 8-1-2014

  • TO CREATE A TABLE IN JSF

    LIKE WE USE TABLE TAG AND <TD><TR> IN HTML....I WANT WE CAN CREATE A TABLE USING JSF TAGS IN A JSF PAGE.

    PLEASE STOP SHOUTING. AND DID YOU NOTICE THAT THIS IS NOT IN FACT THE JSF FORUM?

  • Delivery Created with out Material Number

    HI
    I created an STO for material, when i have done the VL10B i got a message "See log for information about creating deliveries"
    A Delivery got created with out the Material number, When i look in the Document Flow for the Delivery Created its preceding document (PO) is not linked
    In the log information i see an error, Please advise
    Diagnosis                                                                               
    The sales unit is not allowed for the material in item               
        000001.                                                                               
    System Response                                                                               
    The system does not allow further processing of this item.                                                                               
    Procedure                                                                               
    Check your entry.                                                    
        Select a sales unit which is defined for the material in the         
        material master record. Normally the sales unit will be              
        determined immediately from the master master record.

    see the change log of material master in MM04.
    check if  the sales unit got removed recently (after the PO creation - before delivery creation)
    if it is not caused by material master directly, then check if you have any userexit in place that changes the sales unit in the delivery.
    SAP has a sales unit in mind which is not available in material master, hence it issues this error.

  • Create a outer Join for a @SecondaryTable in EJB 3.0

    Hello
    I need to create a outer Join for a @SecondaryTable in EJB 3.0, any can help me?
    Thanks in Advance…

    Yes, I have this relations in the entity:
    @Table(name = "RF_HTRANSACTION")
    @SecondaryTables({
    @SecondaryTable(name="RF_CLIENTS",
    pkJoinColumns={@PrimaryKeyJoinColumn(name="NUMERO_CLIENTE", referencedColumnName="NUMERO_CLIENTE")}
    @SecondaryTable(name="RF_SUPPLIER",
    pkJoinColumns={@PrimaryKeyJoinColumn(name="NUMERO_PROVEEDOR", referencedColumnName="NUMERO_PROVEEDOR")}
    @SecondaryTable(name="RFSUPPLIER_PROY",
    pkJoinColumns={@PrimaryKeyJoinColumn(name="NUMERO_PROYECTO", referencedColumnName="NUMERO_PROYECTO")}
    @SecondaryTable(name="RF_REFAGENTS",
    pkJoinColumns={@PrimaryKeyJoinColumn(name="NUMERO_RA", referencedColumnName="NUMERO_RA")}
    I need to create a outer join between RF_HTRANSACTION and RF_REFAGENTS.

  • How can I config to create an out-of-box jms queue

    Hi All,
    I am new to WebLogic Server and I need to create an out-of-box jms queue for my project, which means instead of creating and configuring the queue at the administration console, I'd like to program and change some configuration files to achieve it. Can someone give me some advice or point me to some samples?
    Thank you,
    Yang

    Hi,
    Use WLST snippet as shown below to create a basic JMS config OOTB.
    import sys
    from java.lang import System
    connect('weblogic','weblogic','t3://localhost:7001')
    edit()
    startEdit()
    servermb=getMBean("Servers/myserver")
    if servermb is None:
        print 'Server not found'
        stopExecution("cannot find the server myserver")
    else:
        jmsserver1mb = create('MyJMSServer1','JMSServer')
        jmsserver1mb.addTarget(servermb)
        jmsserver2mb = create('MyJMSServer2','JMSServer')
        jmsserver2mb.addTarget(servermb)
        jmsMySystemResource = create("MyJmsSystemResource","JMSSystemResource")
        jmsMySystemResource.addTarget(servermb)
        subDep1mb = jmsMySystemResource.createSubDeployment('DeployToJMSServer1')
        subDep1mb.addTarget(jmsserver1mb)
        subDep2mb = jmsMySystemResource.createSubDeployment('DeployToJMSServer2')
        subDep2mb.addTarget(jmsserver2mb)
        theJMSResource = jmsMySystemResource.getJMSResource()
        jmsqueue1 = theJMSResource.createQueue('MyQueue1')
        jmsqueue1.setJNDIName('wlst.mgmt.jms.MyQueue1')
        jmsqueue1.setSubDeploymentName('DeployToJMSServer1')
        jmsqueue2 = theJMSResource.createQueue('MyQueue2')
        jmsqueue2.setJNDIName('wlst.mgmt.jms.MyQueue2')
        jmsqueue2.setSubDeploymentName('DeployToJMSServer2')
        jmstopic1 = theJMSResource.createQueue('MyTopic1')
        jmstopic1.setJNDIName('wlst.mgmt.jms.MyTopic1')
        jmstopic1.setSubDeploymentName('DeployToJMSServer1')
        jmstopic2 = theJMSResource.createQueue('MyTopic2')
        jmstopic2.setJNDIName('wlst.mgmt.jms.MyTopic2')
        jmstopic2.setSubDeploymentName('DeployToJMSServer2')
    try:
        save()
        activate(block="true")
    except:
        print "Error while trying to save and/or activate!!!"
        dumpStack()Hope this helps,
    Kats

  • How to create Reports out of Individual Views from Discoverer

    Hi Gurus,
    I am doing a a POC where i need to bring in couple of views which are reports in Discoverer inside OBIEE 11g and create reports out of it.
    In OBIEE i dont need to join anything as these are standalone views i just need to use them to create individual reports. But it seems in OBIEE you cannot do that, you will need to join and create keys in each and every tables(which are views in the DB).
    Is there any way i can import the views from DB or create the views in OBIEE 11g and use them to create reports.
    Thanks,
    Amit

    Hi Amit,
    Yes you can create opaque views in OBIEE 11G at repository level and deploy them.
    Check this
    OBIEE - Opaque View | GerardNico.com (BI, OBIEE, OWB, DataWarehouse)
    Thanks,
    Sasi Nagireddy.

  • Error when creating portlet provider

    I tried to call Forms Server application from Oracle Portal as
    external application.
    External application works fine if I execute link in External
    application section.
    Problem arrise when I tried to create Portlet Provider for this
    external application.
    Portlet Provider Implementation style is set to WEB. When I
    choose Applay I get error:
    Error: An error occurred when attempting to call the providers
    register function. (WWC-43134)
    An unexpected error occurred: ORA-29532: Java call terminated by
    uncaught Java exception: java.io.IOException: Unexpected EOF.13
    XML-0121 : (Fatal Error) End tag does not match start
    tag 'INPUT'.
    XML-0121 : (Fatal Error) End tag does not match start
    tag 'FORM'.
    XML-0121 : (Fatal Error) End tag does not match start
    tag 'BODY'.
    XML-0210 : (Fatal Error) Unexpected EOF. (WWC-43000)
    An unexpected error occurred: java.io.IOException: Unexpected
    EOF.13
    XML-0121 : (Fatal Error) End tag does not match start
    tag 'INPUT'.
    XML-0121 : (Fatal Error) End tag does not match start
    tag 'FORM'.
    XML-0121 : (Fatal Error) End tag does not match start
    tag 'BODY'.
    XML-0210 : (Fatal Error) Unexpected EOF.
    at oracle.webdb.provider.web.SoapResponseProcessor.getDocument
    (SoapResponseProcessor.java:123)
    at oracle.webdb.provider.web.SoapResponseProcessor.processSOAP
    (SoapResponseProcessor.java:42)
    at oracle.webdb.provider.web.HttpProviderDispatcher.dispatch
    (HttpProviderDispatcher.java:877)
    at
    oracle.webdb.provider.web.HttpProviderDispatcher.registerProvider
    (HttpProviderDispatcher.java:259)
    (WWC-43000)
    An unexpected error occurred: Unexpected EOF.
    at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:208)
    at oracle.xml.parser.v2.XMLError.error(XMLError.java:114)
    at oracle.xml.parser.v2.XMLError.error(XMLError.java:152)
    at oracle.xml.parser.v2.XMLReader.popXMLReader
    (XMLReader.java:380)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement
    (NonValidatingParser.java:968)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement
    (NonValidatingParser.java:237)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument
    (NonValidatingParser.java:201)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:169)
    at oracle.webdb.provider.web.SoapResponseProcessor.getDocument
    (SoapResponseProcessor.java:117)
    at oracle.webdb.provider.web.SoapResponseProcessor.processSOAP
    (SoapResponseProcessor.java:42)
    at oracle.webdb.provider.web.HttpProviderDispatcher.dispatch
    (HttpProviderDispatcher.java:877)
    at
    oracle.webdb.provider.web.HttpProviderDispatcher.registerProvider
    (HttpProviderDispatcher.java:259)
    (WWC-43000)
    I found unsolved forum with the same problem on Metalink: Doc
    ID: 57590.996
    How can I solve this problem?
    Is it possible to add external application to portal as a
    portlet without creatin a Portlet Provider?
    Thanks,
    Tomaz Podbersic

    Tom,
    A Connection timeout normally means that it is a valid
    host.domain, but the listener was down or it could not access
    that port.
    You say that you can reach the URL, is it on the same domain?
    Do you need a proxy to contact it. Can the Portal Machine see
    it okay?
    Sue

  • Creating Move-Out Document by Program

    Hi,
    For an ISU Contract, I need to create Move-Out document programatically. Which BAPI or Function Module should I use regarding this purpose.
    I used BAPI_ISUMOVEOUT_CREATEFROMDATA to create Move-Out doc, but its generating it, but not updating them Contract. Even if I try to see the generated document in EC57, it gives an error that no document exists.
    Regards
    Pulokesh
    Edited by: Pulokesh Karmakar on Jul 12, 2010 4:29 PM

    Hi,
    you used a custom Web ADi integrator (XXFA_TEST).
    I think you have a grants problem, therefore with assigment of the system administrator, no problems exists.
    Have a look in the Web ADI Implementation Guide
    e.g. for R12.0.4 http://download.oracle.com/docs/cd/B40089_09/current/acrobat/120bneig.pdf
    Dirk

  • Creating portlet programmatically

    Hi dev2dev
    I want to create portlet programmatically
    if there is any hints or package related pls do mail me
    Thanks n Regards
    Surya
    [email protected]

    Hi,
    I am sure ( although without having testet it myself ) that the administrative EJBs behind the portal administration tool could be used here.
    consult the java - doc for theese classes.
    Are you sure this is the only solution to the problem ? If you could elaborate on the problem leading to you wanting to create portlets prgrammatically perhaps the community could provide you with another solution if there are any.
    - Anders M.

  • Need help on creating portlets using JSR268.

    Hi All,
    I want some details about how to create portlets with JSR 268 statndards.
    I am creating portlets with address and location viewer using google maps service.
    how to pass address parameters to the map portlet ?
    thanks
    Gopi

    If you want to pass parameters from one portlet to another, you should use parameters. I am currently working on a blog post that shows these features. I'm hoping to have it finished by the end of the day...
    Meanwhile i can tell you that you need to create parameters in the portlet.xml as shown in this image: https://picasaweb.google.com/yannick.ongena/IPC#5636361095514333538
    Then you need to tell assign that parameter to the portlet as shown here: https://picasaweb.google.com/yannick.ongena/IPC#5636361093578581890
    A thirth thing to do is set the value of the parameter. In your locations portlet you should write following code to set the parameter:
    PortletRequest req = (PortletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
    req.setParameter("nameOfParameter",value); In your maps portlet you can read the value of the parameter with following code:
    PortletRequest req = (PortletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
      String param = (String)req.getParameter("nameOfParameter");
      if(param == null)
          return "someDefaultValue";
      return param;You might need to set a partialTrigger on the maps portlet that points to the location portlets. That's it.

  • How to create timed out error

    Hi All,
    I want to create a timed out error as I need it for testing some code.
    I am using "Wait" statement to make it wait more than the set run time, but its not working.
    Can some one give me a code snippet to create timed out error.
    Thanks and Regards
    Ankit.

    hi,
      take a two variables of type sy-uzeit.
    at the beginning of the program..
      v_starttime = sy-uzeit.
    loop at itab.
    v_difference = sy-uzieit - v_starttime.
    if v_difference > 100.
    raise execption TIMED_OUT.
    endif.
    endloop..
    THANKS
    Mahesh

Maybe you are looking for

  • I am trying to connect my Macbook 4.1 Black to my Samsung UE50F6400 using a mini DVI to HDMI adaptor

    I bought the UE50F6400 samrt TV. It has 4 HDMI ports. HDMI 4 is HDMI/DVI, HDMI 3 is normal, HDMI 2 is (ARC) and HDMI 1 is (STB). reading the connection diagram it shows Laptops are to be plugged in to HDMI 4 (HDMI/DVI). But when I plug a HDMI cable i

  • How to handle binary file at the time of import in javacvs

    hi , I am using netbean api for cvs command.I am having the same problem that i am not able to open binary file after importing in cvs repository. I want to import a directory which contain both text and binary file. can you please hel me out to how

  • HP OFFICE JET 6600 HOW TO TURN OFF ECM ON FAX

    I receive error code 344 when I try to fax only to local numbers and I have lowered the fax speed to the lowest and then I receive an error code 350.  It suggest I turn off the ECM and I don't know how to access it to turn it off, can anyone tell me

  • Javascript for cropping PDF

    Hi I know it´s probably quite easy to crop PDF document with jacascript but what I need is that ratio of the result would be 1:1.3 (Widht 1 : Height 1.3). And it should be negative crop (page is not actually cropped at all but enlarged instead of tha

  • [Mail] BCS - Outlook emmbedded image (cid)

    Hi, I would like to send images to Outlook and, for my emails not to be considered as spam, I use the <i>cid</i> like this <img src="cid:photo.jpg" /> text-line  = 'photo.jpg'. APPEND text TO t_header. CALL METHOD document->add_attachment   EXPORTING