Where to store Videos in ADF Projects/Applications !?

Hi,
We have ADF Applications, where the UI-Taskflow Jars are used as shared libraries in Web-center Portal Pages,
Now, the Customer has VIDEOS has to be played/streamed inline in the jsff,
We are wondering what is the best location to store these Videos!!?
If we put in our  ADF-UI-Application itself as part of public_html or so! , the the EAR size will go very big/vast and we will end up with many memory/performance issues right!?
Is there any other way/place we can store these videos and make the available to be played/streamed in our applications's jsffs,
Any pointers would be grateful,
Thanks,
Chaitanya.

Well for this you need to use any content management software.
Either Oracle Webcenter content, adobe CQ 5 or Hippo which support web services to provide the data.
But you can use webcenter content (UCM) which support RIDC api , its i best integrated with ADF
http://jonathanhult.com/blog/2012/12/ridc-examples/

Similar Messages

  • How/Where to store current page details in ADF?

    Hi All,
    What is the best way to populate the managedBean while loading the page?
    In my application, I have an page fragment which display the user details from Webservice DataControl. I drag and drop the webservice data control in to the pageFragment. This fragment has mapped in the taskFlow and the taskFlow as attached in to main JSPX page as a region. I need to store this user information to any place (ManagedBean / or anyother best place to store) which I can use throughout my application, since I dont want to reexecute the webservice each time to get the same user information. Also I want to collect and store this info while I render the main page, not after any user action.
    Please advice how & where to store the information in ADF? Can I create an managedBean? If so how to trigger that class method at page load?
    Thanks
    kln

    Hi,
    in this case you configure the managed bean to be in session scope. Then, on the first page, you define a phase listener for the after restore phase (its a tag on the f:view element). This phaselistener references the managed bean using EL (important). It can do so using a method expression in JSF. For example, if the managed bean had a method populateUserInfo then yu could reference #{beanname.populateUserInfo} and execute the method expression using Java. In the managed bean, the method would access the binding layer Using the BindingContext class
    http://download.oracle.com/docs/cd/E15051_01/apirefs.1111/e10653/oracle/adf/model/BindingContext.html
    Call
    BindingContext .getCurrent().getCurrentBindingsEntry() to obtain a handle to the active instance of BindingContainer.
    BindingContainer bindings = BindingContext .getCurrent().getCurrentBindingsEntry();
    Then on the binding container, you invoke the method to query the Web Service for the user info
    //before you can call a method on the ADF binding layer, make sure the ADF binding is created for the method
    OperationBinding opws = (OperationBinding) bindings.get("name of the method exposed on WS");
    //if you need to pass parameters
    opws.getParamsMap().put("argument name",value);
    opws.execute();
    You can use similar code to access the user information from the method iterator in ADF to populate the managed bean fields. You can then access user information from the managed bean through getter and setter methods
    Frank
    Ps.: I know the description is a bit rough. I'll see if I can come up with a blog sample to a later time
    Edited by: Frank Nimphius on Jan 26, 2010 5:43 PM

  • How to move ADF HumanTask (ADF Project) from One BPM Application to ANother

    Good DAy!
    Problem
    We've created huge Project on ADF with difficult form and now we have to create the same (95%) form in another BPM Application
    Is it possible to migrate ADF Project from one BPM Application to Another???

    Hi,
    You can deploy the ADF Project as an ADF Library Jar file and reuse the taskflow from that jar file in another BPM Application.

  • Where to store an API Key - properties or somewhere else.

    I'm developing an ADF Faces application with 10.1.3.3 that uses the Google Maps API. This API requires that you obtain an api key - long indecipherable text string from Google that you use from the Javascript routines that call the API. I stored this key in a properties file in the ViewController project, that I bring into the page with the map with <f:loadBundle /> and I reference the api key with appropriate EL to get it from the file.
    This works fine, but I have a deployment problem. Google produces API keys that are for a specific website, and don't work from any other site. So I have a different key for my deployed application than on my development workstation where I run the embedded OC4J for testing. Every time I redeploy, the API key from development overwrites the copy on the application server (OAS 10.1.3), and of course, since that is a different website, the Google stuff stops working until I fix the properties file on the application server and restart the application. I made a copy of the correct version of the properties file, so I can do this, but it is a pain.
    By the way, because of firewall problems, I redeploy with the Enterprise Manager web console, and an EAR file, not with JDeveloper.
    Is there a better way? Is there a better place to store the key so that it doesn't get updated on the application server when I redeploy? Is there a way I can tell JDeveloper or the application server not to overwrite the properties file when I redeploy?

    Hello Jflack,
    One thing I might suggest you do is to store the value in an application-scoped managed bean property that is initialized from the database. I currently do this for instance-specific (dev/prod/test/etc) values that need to change, such as the URL of a reporting server. In the constructor for this managed bean, I grab an Application Module, find a view object, execute it, and grab the values, stuffing them inside a bean property. You can then refer to the value in the page using an EL expression.
    Not sure if this method is possible for you, but it works well for me.
    John

  • How to deploy a secured ADF 11g application to WebLogic 10.3 server?

    Hi,
    I have just enabled security in our ADF 11g application, as descripbed in [chapter 29|http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/adding_security.htm#insertedID0] of the Fusion Developer's Guide. It works fine in the embedded WebLogic server of JDeveloper.
    Now I'm trying to deploy to our WebLogic 10.3 server, which runs in production mode. I'm running into all sorts of problems. The WebLogic console seems to have hundreds of security related pages, I don't know which one I should use, let alone how to use it. The Fusion Developer's Guide doesn't cover deployment to a production server:
    >
    When the target server is configured for production mode, you typically handle the migration task outside of JDeveloper using tools like Oracle Enterprise Manager. For details about using tools outside of JDeveloper to migrate the policy store to the domain-level in a production environment, see the [Oracle Fusion Middleware Security Guide|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/toc.htm].
    >
    However, this guide is of very little help to me. I found [chapter 7|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/addlsecfea.htm#insertedID0], which says "The recommended tool is Fusion Middleware Control." I have no idea what "Fusion Middleware Control" is, where to get it and how to use it.
    Long story short: I'm totally lost. I'm looking for a step by step guide on how to deploy a secured ADF 11g application to a WegLogic 10.3 server that is running in production mode. Any help is highly appreciated.

    Ok, I found a [very helpful blog post |http://andrejusb.blogspot.com/2009/01/practical-adf-security-deployment-on.html] by [Andrejus Baranovski|http://www.blogger.com/profile/04468230464412457426]. I wish Oracle's documentation was as clear as this...
    The blog post refers to an article by Steve Muench, called [Simplified ADF 11g Application Credential and Policy Migration to Standalone WebLogic Servers|http://www.oracle.com/technology/products/jdev/tips/muench/credmig111100/index.html]. This article presents an Ant script that migrates policies from JDeveloper to WebLogic, using some PFM. (See the last definition here.)
    The problem is that Steve Muench's script assumes that JDeveloper and the standalone WebLogic are on the same machine. However, in a typical environment, such as the one I'm working in currently, this is not the case. In our case the developer stations are Windows machines, while our WebLogic server runs on a HP-UX machine. So the question is: how to perform this migration between two machines with different operating systems?
    Regards,
    Bart Kummel

  • How to store videos and photos in external storage

    Hi,
    May I know how do I store videos and photos into an external hard disk so that I can free up my Macbook storage?
    Hope to receive advice on this.
    Thanks
    Stephen Lim

    Hi Stephen
    Yes there are problems with this
    A. external Hard Disk - MUST BE - Mac OS Extended (hfs) formatted to be used for VIDEO as KLAUS1 writes.
    B. a FireWire or Thunderbolt one is better than USB/USB2 as they performs badly to me especially when filling up.
    C. DO NEVER - move or alter any folders named
    • iMovie Event's - or -
    • iMovie Project's
    on DeskTop/Finder as this will break the connection to iMovie
    ONLY move Event's and Project's from within iMovie Application !
    D. Then the BIG problem - as I have no answer to - Video and Photos in iPhoto or Aperture.
    Moving them to an external hard disk - and at least MY iMovie can not see them any more - resulting in broken Project's - most probably beyond repair.
    and here I run into the wall of ignorance
    Yours Bengt W

  • Best practices for large ADF projects?

    I've heard mention (for example, ADF Large Projects of documentation about dealing with large ADF projects. Where exactly is this documentation? I'm interested in questions like whether Fusion web applications can have more than one ViewController project (different names, of course), more than one Model project, the best way to break up applications for ease of maintenance, etc. Thanks.
    Mark

    I'd like to mention something:
    Better have unix machines for your development.
    Have at least 3 GB of RAM on windows machines.
    Create all your commonly used LOVs & VOs first.
    If you use web services extensively, create it as a seperate app.
    Make use of popups, it's very user friendly and fast too. You no need to deal with browser back button.
    If you want to use common page template, create it at the beginning. It's very difficult if you want to apply it later after you developed pages.
    Use declarative components for commonly used forms like address, etc.
    Search the forum, you will see couple of good util classes.
    When you check-in the code, watch out some of the files don't show up in JDev like connections.xml
    Make use of this forum, you will get answers immediately from great experts.
    http://www.oracle.com/technology/products/jdev/collateral/4gl/papers/Introduction_Best_Practices.pdf

  • Where to store DBCP and what to do next?

    Dear All,
    I would like to use the DBCP(Apache DB pool). I have download (commons-dbcp-1.4-bin.tar.gz) from http://commons.apache.org/dbcp/download_dbcp.cgi. I am using fedora linux and have unzip it too. What should be my next step is where I am stuck because I dont know where to store and how make it applicable for my application? Thank you.

    newbie14 wrote:
    Dear Masijade,
    I dont quite get you. You mean run the command -cp followed by my folder path is it? Then this will be permantently set or I must still go n change somethings inside the .bash profile ? I am not running the java file as project but just as a single java file so any settings for it? Thank you sorry I am very new to all this.Then you should skip DBCP. You should skip JDBC as well. You need to learn the basics of java before you learn JDBC.
    And after you learn both of those then you can look at DBCP.

  • Customize adf components in deployed ADF web applications

    Hi,
    I am using JDeveloper 11.1.1.4 and ADF-BC in my project.
    In my project,I use several jsff pages with some common adf components inside them.[ex:af:panel,af:inputText ,etc].
    For example I use a panel and some adf input and button components inside panel.
    I build a ear/war and ship it to customer.
    My question is in customer environment,if the customer wants to customize the controls in the jsff page [like  adding new adf controls to the existing panel etc],can we achieve this in adf web applications.
    Please suggest.
    Thanks,
    Praveen

    hi,
    My question is in customer environment,if the customer wants to customize the controls in the jsff page [like adding new adf controls to the existing panel etc],can we achieve this in adf web applications.You cannot edit the ear file directly to embed the controls in page,
    So you can have a database table that stores the dynamic configuration of controls, like cntrl_name,type,value,autosubmit,, etc.
    and at runtime render it accordingly dynamically.
    forexample you can have a af:iterator that iterates over vo(table) and has switcher component to determine the type of component and apply properties to it.
    Regards,

  • Deploying a BC4/ADF Swing Application to a JAR File

    Hello,
    what do I exactly have to do, to deploy an ADF/Swing/Business Components-
    Project-Application to a JAR File. I can not start it outside the JDevloper IDE,
    but I created a deployment profile and deployed it to a JAR.
    There is always the error "Could not find the main class", when starting the
    JAR. In the JDeveloper IDE the application is running, and I also defined a "main class" there.
    Could anybody help me please?
    Greetings.

    You need the ADF runtime libraries in your classpath or as part of your JAR.
    Have a look at the command that JDeveloper is using to run your project (it is in the log window) and copy the classpath defenition provided there to the command line you use.

  • Unable to run ADF Project Using with Jdev 10 and Weblogic server 9.2

    Dear All,
    I am unable to run ADF Project on Weblogic Server 9.2. I am created Sample Project with ADF Control. This was when we create jsp at that time i am selected libraries ADF. After created war file. This war i am deploying into Server. At that time i am getting error java.lang.noclassfound error.
    so please tell me how we can run these application.
    Regards,
    Suresh.V

    Hard to help you here. JDev 10 used to work with OAS 10g as application server. This does not mean that you can't use Weblogic9.2, but because it is not the default configuration you may have some problems doing this.
    One problem is that you need to install the ADF runtime libraries in the WLS 9.2 server, but there is no installer I know of. You can try to deploy the needed libraries together with your app, but you have to figure out which libraries you need.
    Next thing is that you should deploy an EAR instead of a WAR.
    Timo

  • There is no space to store video on my computer.  I am am looking at getting 1 terabyte on the cloud in hope i can edit video off of the cloud the same way I can with a hard drive.  Is this possible?

    There is no space to store video on my computer.  I am am looking at getting 1 terabyte on the cloud in hope i can edit video off of the cloud the same way I can with a hard drive.  Is this possible?

    Buy another hard drive.  They're cheap these days.
    In fact, buy a couple of 'em.  I recommend a minimum of five internal hard drives.
    C: Windows and Programs
    D: Project, graphic and audio files
    E: Cache and Scratch
    F: Media
    G: Export

  • I have copied videos onto an external hard drive. to free memory on my macbook. When I try to delete these I am warned that I will not be able to use this video in existing projects   How do I point iMovie to events in my external  hard drive so I can pl

    I have copied videos onto an external hard drive. to free memory on my macbook. When I try to delete these I am woarned that I will not be able to use this video in existing projects
    How do I point iMovie to events in my external  hard drive so I can play projects which use them?
    MacBook, iMovie 9.0.4

    Hi
    You can do this - by not doing it the way You describe as it will not work.
    a. the external hard disk - MUST BE - Mac OS extended (hfs) formatted -
    UNIX/DOS/FAT32/Mac OS Exchange - will work for most things - BUT NOT FOR VIDEO (iMovie, iDVD or FinalCut doesn't matter)
    b. Do not alter or move any folder named
    • iMovie Event's - or -
    • iMovie Project's
    on DeskTop/Finder - at all
    All moving's of Events and Projects must be done within the iMovie Application - then connections will not break.
    (move them back and see if iMovie remembers them - then do move as described above)
    Yours Bengt W

  • Where we store in sap r/3

    Dear sir  we can uploaded old data in sap r/3. by lsmw and bdc. but where we store.
    thanks regards
    jitendra

    Hi,
    LSMW - Helps to transfer data from legacy system to SAP either one time or periodically.
    Steps -
    1. Import data (legacy data in spreadsheet tables and/or sequential files)
    2. Convert data (from source format to target format)
    3. Import data (into the database of the SAP application)
    a. Maintain Structure relations, field mapping and conversion rules.
    b. Data from legacy system is read
    c. Based on step a, the data gets converted
    d. The converted data is imported to R/3 system based onBatch input processing or Direct Input or through IDOC Inbound processing
    Regards,
    R.Brahmankar

  • Video playback in AIR application

    I'm a purely graphic and video producer who has recently had to take on a touchscreen kiosk project at the very last minute. I have a basic (read pitiful) knowledge of actionscript and html, but no practical experience. I'm using Flash CS5, but also have Flash Builder 4 if that makes any difference at all.
    From reference guides and trial and error I have been able to put together a good deal of the project, but a few parts have me quite confused. One is that I need to be able to do two things with HD video in this project;
    1. Run a fullscreen looping sequence, which will fade to the menu screen once the screen is touched
    2. Place a few video clips onto the stage, to run in sequence with the timeline.
    Because of my main experience being video production, I see everything in layers, and I get the feeling that that is part of my issue, because I don't fully understand how the languages interact with objects.
    Has anyone ever done something like this, or have any recommendations as to how best to do this? To be perfectly honest I don't even know where to start here.

    send me an email via my website:  www.kglad.com

Maybe you are looking for

  • ALV LIST/GRID DISPLAY

    Hi, My program output is in ALV format either LIST or GRID based on Sy-batch. In that program they are using table Z1021. They are retreiving data from Z1021 table based on selection screen parameters like werks, bukrs, vkorg, auart and date and pass

  • Module in mobile application

    I'm new to Mobile development but not to Flex development. Here I wanted to know if the Modular approach is available in Flex Mobile application. If not what could be the best way to handle such scenario. We are about to start new mobile project. It

  • Could not upload my app to itune connect.

    I have created an app, and sign it and validated it. But when i try to uplad it itune connect that it will failed to upload whith this error : 1. Communication error. Please use diagnostic mode to check connectivity. You need to have outbound access

  • Can Premiere Mac 6.5 be upgraed to Mac Intel?

    It's time I need to move to Apple Intel Land Mt.Lion from my G5 - Tiger platform.  I am still using Premiere 6.5 for Mac OS, but as soon as I move to Mac Mini 2012, I'm out of business since that Apple is Intel. Is there a way I can purchase an upgra

  • Where is the wince tutorial

    Trying to startup the Windows CE tutorial. The Oracle mobile documentation referrences to the script called create_all.sql in the following dir. <ORACLE_HOME>\mobile\sdk\wince\samples\tutorial\Transport> In my <ORACLE_HOME>\mobile\sdk\wince\samples d