Calling portlet from a normal web application

I have the following question:
I would like to deploy portlets on Oracle Portal and "call" them programmatically from a home made web application running on the same Oracle Application Server where the portal runs.
As I am running my web application on the same server I would like to avoid WSRP and SOAP calls.
I am aware of the existence of the new Web Center and the possibility it gives to include portlets in web application ... but I cannot use the Web Center for now mainly because of licensing problems and application server versions.
Is there an API (Java, PL/SQL or anything else) allowing to "call" a portlet deployed on Oracle Portal ?
Thanks for the help.
Nicolas

Hi,
Well, I did my JSP pages doing selects to OWF tables and OWF java APIs. I used owf pl/sql procedures as my reference. For example, I need to know how to create actions buttons. I looked at wfa_html procedure and looked for how it was doing that.
Any doubts just ask,
Regards,
Luiz

Similar Messages

  • Calling OWF from customer build web application

    All, All the example that I've read from OWF documentation is assuming that you builder the workflow from OWF Builder and manage it thru OWF manager, monitor is thru OWF Monitor. I'm wondering if it is possible to monitor the workflow and manage the workflow from customer build web application. Since we don't want our users have to login several times and use different URLs to get into the customer build application, then manage the workflow and monitor it via different urls. Anybody has experience doing all from one application can provide any insight would be greatly appreciated.
    dsl

    Hi,
    Well, I did my JSP pages doing selects to OWF tables and OWF java APIs. I used owf pl/sql procedures as my reference. For example, I need to know how to create actions buttons. I looked at wfa_html procedure and looked for how it was doing that.
    Any doubts just ask,
    Regards,
    Luiz

  • Call a JSF application from a Standar Web application (JSP)

    Hi all,
    We have 2 aplication, one is JSF and the other one is standar web jsp.
    We want to invoke from the standard web application to the JSF application and pass param from the jsp to the *.jsf page.
    how can I do that?
    Thanks.

    You can open a jsf page from any other application.
    <form action="http://hostip:port/app/MyPage.jsf?key1=value1&key1=value1">
    as we do in any other jsp page.
    Now in JSF application, in MyPage.jsf write a scriptlet to get the parameters and from there you can use these params.
    You can get a managed Bean reference in your jsp page. Here is the code for that.(ResultsInExcelBean is my managed bean.)
    FacesContext fc = FacesContext.getCurrentInstance();
         ResultsInExcelBean resultsInExcelBean = (ResultsInExcelBean)fc.getApplication().createValueBinding("#{ResultsInExcelBean}").getValue(fc);     
    Hope this helps you.
    Sravan

  • Start a BO report from within a web-application.

    Hi,
    An enuser want to start a BO report from within a web-application.
    The BO report ideally should not prompt for a login. The fact that we are using BO for reporting purposes should be transparent to the end users. The report should produce its output directly in Excel (pdf?) format. In WebI i can do a 'Save As' to obtain this, but it should go automatically so that the end users get their response directly in Excel
    the report should be parametrized. These parameters will be added to the URL by the calling application.
    To do a basic test of the Opendocument.jsp i created a number of test reports in WEBI, and i use the following URLs to execute them directly
    http://s-olaf-vtst150:8080/OpenDocument/opendoc/openDocument.jsp?&sPath=[My reports]&sDocName=tmsd1&sType=rep&sRefresh=Y
    http://s-olaf-vtst150:8080/OpenDocument/opendoc/openDocument.jsp?&sPath=[My reports]&sDocName=Yearselection&sType=rep&sRefresh=Y&lsSYear:=2002
    So this covers points 1 & 4
    What are the options for points 2 & 3?
    Kind regards,
    Johan

    The BO XI 3.1 environment works quite well now.
    Two more questions:
    1. When a user being member of the Readers group, still sees the Edit button in Webapplication - Infoview. Is it possible to hide or disable that Edit button ?
    2. Is it possible to make a user only seeing a part of the data in the universe ? When a query is run with a parameter, the user ses the parameter in the left column ... but in that way a normal user can change the value of that parameter giving him the possibility to see things he should not see. Making a separate query per user is overkill and too much work to do. Is BO XI 3.1 able to offer this possibility and how ?
    Rgds,
    Johan

  • How to make call out from XI to external applications??

    Hi,
    I have XI running on my system.
    I want to know if there is any possibility to invoke
    or to make call outs from XI to external applications
    like java.If yes what is the procedure for that.
    Thanks in advance
    Sunita

    XI will need a triggering event to do this. That is, if you can send a message to XI, then using XI you can route the message to a Proxy and from the proxy (which could be a java proxy) you can make a call to a java program outside XI. But, basically, XI on its own will not make a call, but it needs a triggering message. So, you can configure a file adapter to send a triggering message from a file system to the intergration server, and configure routing rules so that the messages reaches a proxy.
    Warm regards,
    Venki.

  • Calling a webservice from within Bex Web Application Designer

    Hi
    I have a web-template built with BEx web application designer which also contains textboxes. This text should be stored by calling a webservice (standard BI-documents are not an option).
    Can anyone tell me how I could call a webservice from within the BEx web template to store the text contained in the textbox? The webservice-call should include some of the filter-varialbes of the web application.
    Is this only possible by the use of a JavaScript WebItem? If so - does anyone have an example of such a JavaScript.
    Thanks a lot in advance.
    Kind regards.
    Christoph

    Thanks for your response. The BSP page would work out fine if I only needed to save the data.
    But the next time I call the webtemplate, the textarea should be filled by another webservice call with the stored text (so the text can be modified und saved again). This will not be possible by calling a BSP page.
    Do yoiu have any suggestions how to integrate the text (return value from the webservice call) into the textbox in the webtemplate?
    Kind regards.
    Christoph

  • Calling a WebLogic web service from a WebLogic web application

    We would like to call a WebLogic web service from WebLogic web application. The current architecture looks like:
    LoadBalancer--->iPlanet-1/iPlanet-2--->Firewall--->WebLogic-AppServer-1/WebLogic-AppServer-2
    The web application and web service are in the same WebLogic cluster. We would prefer that the web services do not get published externally.
    Does the WebLogic web application need to make a call back outside the firewall to the load balancer?
    Is there a way the web services can be called locally with load balancing?
    Can web service calls be made over the t3 protocol?
    Thanks,
    Mike

    I think one solution is to use a Java proxy to call the Web services.
    In the Java proxy you can have a method that accepts the user/pass and sets them correctly for the Web service.
    Then you expose that Java proxy as a data control (right click, create data control) - and then create a page that invokes that method.
    (For the basics of working with a POJO data control see: http://blogs.oracle.com/shay/2009/07/java_class_data_control_and_ad.html )

  • Calling SOA composite from ADF BC web application by cretaing Data Control

    Hi ,
    I have deployed my SOA composite on a stand alone server .I have a ADF web application and I hace created a WS data control using the URL of WSDL of the SCA (got it from EM Test page).I have created a jsf page and have created input/output parameter .Now as soon as page loads it gives error in processing Security header. I go and check the policies tab there is a global policiy wss10_saml_token_service_policy that has been attached to the SCA .it cannot be removed(there is no disbale option). Now I try to override it using no_authetication_service_policy but it satrtas giving error .My question is this sca when tested by Test webservice button works fine so this means behind the scene it is sending some username and passsword in the soap request what is that userna me and password how to find that.Because I hope if i Get that then may be whiel creating the Data control in ADF web applciation I can give that username and password as endpoint authectication values and it should.Request some one to please advice what needs to be done for this.
    Thanks

    This got solved .I have created a polciy for the datacontrol and given the username and password same as that of app server.

  • Using a VB Class from a Java Web Application

    Hi,
    I need to instance a VB class, and then to invoke their methods, from a java web apllication. The code is:
    Set object = CreateObject("AS2.OBJECTS")
    If object.PutName(sCadenaError, sEntidad) Then
    Array1 = object.getData(sCadenaError, iEntorno, False)
    End if
    "AS2" is the VB dll library. "OBJECTS" is the class to instance. And "PutName" and "getData" are the methods that the web application has to call.
    Can I instance the class from Java, and use the methods with the same data types? What steps have I to do in JNI?
    Thanks in advance,
    Mary

    You are right, I guess my question is a good candidate for RTFM!
    I should have searched also on help.ondemand.com
    I just looked into SDN and ui5 sdk help.
    Thanks for your help
    Regards
    Vincenzo

  • Getting rep-3002 when calling report from form on web

    i am getting rep-3002 when i call report from a form on web environment. Report is in character mode. It is coming proper if i change it to bitmap. but my requirement is of character mode. pl. give some solution.

    Hello,
    If you are running in WinNT/2000 environment, the NT/2000 user which runs the Report Server service must have a printer defined. In the control panel, look at the properties for the Report Server to see what user it runs as. Log in as that user and make sure a default printer is defined.
    Regards,
    The Oracle Reports Team --skw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Calling report from form in Web environment

    Hi,
    We are in the process of migrating our C/S appication (developed in Developer2k) to intranet using OAS. My question :
    a) Is there any other way to call report from a form other than web.show_document?
    b) When a report is called from the report server(using web.show_document), a log-in screen comes up unless the login and password is passed as parameter. Only problem with this is the password shows in the URL. Is there any other way to make the call so that the login & password does not show and the user won't have to login a second time to run the report?
    Any reply would be appreciated..Thanks

    1. Yes you can use run_product package procedure to call reports on web, Oracle documentation says that run_product command will run in web env.
    2. Yes you can hide username & password from user, it depends on which method you are using to call reports, if you are using web cgi then add username & password in file "cgicmd.dat" and "oascmd.dat" for web catridge or in cartridge parameter setting you will find this files in directory "\orant\report60\server\".
    Darshan Desai
    [email protected]
    null

  • Open a SAPGUI transaction from a Java web application

    Hi all,
       We are in the process of developing a Java based web application with SAP J2EE engine - but not SAP Enterprise Portal. One of the requirements we have is from one of the web screens there needs to be a button which launches SAPGUI and take the user to a particular transaction in SAPGUI. The  user is going to have SAPGUI installed on their desktop.
       We were planning to user SAP Shortcut technique for launching the SAPGUI but the issue with that is the user has to logon each time ( even thought it is possible to have the password stored - even then there will be other messages that the user has to pass through before reaching the final  transaction ). The users are going to have a number of items in the screen and they need to go through this for every item.
       I was wondering if there is anyway this can done so that the user does not have to go through all these steps ( BTW, the user is already authenticated on the web application and so functionally done not have to be authenticated again).
    ANy suggestions will be highly appreciated.
    Regards
    Ravi

    Hello Gregor,
    SAPGui is inatalled on each user box, we can launch the SAPGui thick client from an iview (to run on a seperate window).
    How can I pass (R/3 logon) parameters to the SAPGui command line?
    Thank you
    AAAttar
    eg:
    would a batch file with saplogon then sapgui work?
    DOS command prompt [CMD]
    >saplogon.exe -user=... -password=... -system=QAS123 -client=001 -tcode=session_mananger
    >SAPGui.exe...

  • How to create reports from my existing web application on Java/J2EE with Oracle Client 10g as the backend?? Help sought for

    Our company has developed an  Web Application and we are also looking out for the development of reports using Business Objects Exterprise XI Release 2 and for this purporse I do require some help from the forum who can literally show me how to get on and working on creating the reports.

    Thats why I thought I should make the following chain in the keystore, possibly in this order.
    1. My private key (simply generated in the server)
    2. Import Root certificates from NS
    3. Import Trusted certificate issued by NS
    Then when I sign with my private key surely an association will be formed to the trusted authority certificate. The problem I'm having is when I first made my private key I used openSSL as it was only intended for HTTPS. Now I need to create a keystore so I can use jarsigner to sign the jar file, and I can't see how to create a keystore using my existing private key. Surely if I created a new key and self sign, then import the trusted certificate the association will fail, as the private key will not be the same 1 that I used to make the CSR when applying for the trusted certificate.

  • Embedded Image from different anonymous web application broken

    Hi, 
    I have two web applications, one is NTLM and another will be NTLM & anonymous.
    User uploaded images into anonymous web application and embedded the images in a post (custom html box) from NTLM web application.
    When user try to load the images from the post, image link is broken. After refresh the page, some of the images are loaded and some are not. The image are being loaded randomly.
    I am suspecting on TMG redirection to different web application but i have no further information for that.
    From Sharepoint log, i have the following:
    Unexpected HttpException while client is still connected. System.Web.HttpException: An error occurred while communicating with the remote host. The error code is 0x80070057
    May i know what are the suspected root cause? anyone can help please.

    Hi,
    According to the symptom that issue occurs intermittently, I suspect it is related to coding of web control you added for images. Please provide more information about how you embedded the image in a post.
    I found an article for similar error message, please check if it can be help:
    http://blog.whitesites.com/fixing-The-remote-host-closed-the-connection-The-error-code-is-0x80070057__633882307305519259_blog.htm
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Calling pojo from pojo in diffrent application

    Can i call a pojo in one application from pojo in diffrent application?
    For example:
    Ear 1 had pojo 1
    Ear 2 has pojo 2
    Can i call pojo 2 from pojo 1?
    One option isthat i can make pojo 2 an ejb or servelet can call it from pojo 1.
    Can i call pojos?

    Cross-posted here, where delicious dukes are available.

Maybe you are looking for

  • Why is the sound wavy only through itunes?

    Whenever I play my songs through itunes on the computer, the sound is really wavy! When I play the songs on my ipods they sound just fine. Cd's also sound just fine when I play them through the computer.

  • Colour of the Background Picture and auto correction while typing

    Hey since 2,5 weeks i own an iPad. I really like it, there are only two things i dislike: 1. I changed the background Picture:http://kitecoach.co.uk/images/categories_desc/photos/big/originals/kitesurf5med. jpeg I like the bright colours. But at the

  • Des fenêtres sans block diagramme et prêtes à exécuter

    Bonjour, j'ai un projet qui contient plusieurs IHM. Quand j'ai vouli passer à la construction de l'applciation exécutable, j'ai fait une modification 'que je m'en souviens pas ) du coups j'ai tous mes IHM qui sont dans un état "pret a etre éxécuter "

  • Best Way to Setup Document for Colored Paper Job

    Hi, we're running a business card job that will print on a red-colored paper (well, white & red duplexed for a white front & red back). Curious to know the best way to set this up for both soft-proofing here, and to send the most appropriate files to

  • 7925g have a wireless connection problems

    Hi Everyone, I have a serious problem about 7925G connection via wireless with 1532 outdoor access point. We are using 802.11a for voice connection. While 7925 phones roams to outdoor access point, They cannot even see the SSID. After we checked conf