About the recent donation of adf faces

Just recently I read this article:
http://www.oracle.com/corporate/press/2007_may/javatoolspreview.html
It said: "Marking another significant contribution to the open source community, Oracle today open sourced its ADF Faces Rich Client technology, a set of more than 80 rich, AJAX-enabled JSF 1.2 components. Based on this contribution, a new sub-project called Rich Client Framework (RCF) will be created under the Apache MyFaces project. "
And I am getting a little bit confused.
Does this mean that the new ADF Faces bundled with the new JDeveloper(11) will be an open sourced version?

Hi,
this means that ADF Faces RC that ships with JDeveloper 11 will be give to open sourced. JDeveloper 11 will not be open sourced. We did the same for ADF Faces HTML components of 10.1.3..x which are now available in open source as Apache Trinidad.
Also, the current ADF Faces libraries in JDeveloper 11 are not the open source libraries. You can get the open source libraries only through Apache once the project goes prime time.
Frank

Similar Messages

  • Where is the API download for ADF Faces 10.1.3.2?

    I can still download adf-faces-10_1_3_0_4 which contains the API documents in a /doc directory.
    Where is the API download for ADF Faces 10.1.3.2?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                   

    .. will check if we can make it available
    Frank

  • What should I know about the recent virus on apple products?

    To Whom can best help,
    I recently learned about the recent virus that infected more than 500000 computers.  I heard many talk about the software apple uses as the safest software available.  However, now that I own a few products from apple, this recent virus that got ahold of some personal information has me wondering what is the best route to protect cell phones, ipods, ipads,  and macbooks?  is there an AV recomended?  It would be great to get some adivce from apple techies. I tried looking up some information on the recent problem that had happened, I was hoping it would be addressed on the primary page of apple but found it wasn't.  I am just a little paranoid about people accessing my info and try my best to stay ahead of the virus/trojans and stuff.  for these electronics are there any really really amazing security apps people would recommend?
    sincerely, a concerned customer

    First, it's not a virus but a trojan. We mostly recommend ClamXav 2.2.4 as anti-virus software for OS X.
    Two Helpful Links Regarding Flashback Trojan
    A link to a great User Tip about the trojan: Flashback Trojan User Tip
    A related link in the tip to a checker: Malware Checker Dowload Link
    A Google search can reveal a variety of alternatives on how the remove the trojan should your computer get infected. This can get you started.
    The trojan attachs through Java. If you don't have Java installed then you won't be affected. Java is not installed with Lion.

  • How can I obtain information about the recently finished commands?

    How can I get information about the recently finished jobs / bash commands? (eg. date / time of termination)

    $ e echo foo
    foo
    $ type e
    e is a function
    e ()
    $@ && echo $@ - $(date) >> test.txt
    $ cat test.txt
    echo foo - Wed Jan 1 12:10:54 CET 2014
    $ e echo bar
    bar
    $ cat test.txt
    echo foo - Wed Jan 1 12:10:54 CET 2014
    echo bar - Wed Jan 1 12:11:09 CET 2014
    $ e htop
    <here I do something with htop for a little while>
    $ cat test.txt
    echo foo - Wed Jan 1 12:10:54 CET 2014
    echo bar - Wed Jan 1 12:11:09 CET 2014
    htop - Wed Jan 1 12:15:14 CET 2014
    Last edited by karol (2014-01-01 11:20:36)

  • Customizing the Tree Component inn ADF Faces..

    HI,
    I am using the ADF Faces Tree Component and was wondering wheteher we
    can use a specific theme instead of the default one..
    The scenario's i am looking at are
    1) Changing the Style of the Selected Node
    2) Programatically can i assign a different styling for a Specific
    Node (Previously Selected) in the Tree ??
    3) And any info reg Enabling the Drag and Drop functionality ?? As of
    now i don't think it is supported. Are there any plans of it being
    supported in the furture releases??
    Thanks
    Sateesh

    Hi,
    1) See tree skin selectors: http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/skin-selectors.html
    2) You can reference a managed bean for providing the inline style sheet on a component. This however only works when the tree is re-drawn and not dynamically
    3) Drag and drop doesn't work in 10.1.3.x. In 11 this may work - havent tested yet - using a client listener component
    Frank

  • Question about the diff listeners in ADF

    Hi,
    I am using Jdev 11.1.2.3.0
    I am getting confused with the diff listeners in adf. Please suggest me some good books for the below mentioned listener.
    setPropertyLister()
    SetActionListener()
    setPropertyActionListener()
    clientListener() ( what are cclient side components)
    serverListener() ( what are server side compenents)
    ResetListener()
    etc
    Thanks in advance,
    Rakesh

    Some references.
    https://blogs.oracle.com/jdevotnharvest/entry/how_to_configure_an_adf_phase_listener_and_where_to_put_the_file
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/96-invoke-select-listener-1507924.pdf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/23-generic-table-selection-listener-169162.pdf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/11-client-listener-169135.pdf
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/25-generic-tree-selection-listener-169164.pdf

  • What to do about the recent Java security issue?

    I am reading about the Java security issue. Do I need to do something with Safari?

    Open Safari preferences, click on the Security icon in the toolbar. Uncheck the Enable Java option.

  • Query about the filterable tag in ADF Tables

    Hi all,
    We having an issue with the the implicit filtering feature provided by ADF. We have followed all the rules for filtering:
    1. filterable="true" and sortable="true"
    2. headertext is present
    3. filterModel="#{bindings.InstanceDetailsVO11Query.queryDescriptor}"
       queryListener="#{bindings.InstanceDetailsVO11Query.processQuery}"
    Now the filter is working fine. But after we reset the page the filter field still has the previous data entered by the user.
    Is there any way we can refresh the field as well?
    Any suggestions would be very helpfull1
    Thanks.

    Hi,
    You can programmatically clear the filter fields and refresh the table by using the below snippet.
    public void resetTableFilterListener(ActionEvent actionEvent) {
            FilterableQueryDescriptor queryDescriptor = (FilterableQueryDescriptor)getYourTable().getFilterModel();
            if (queryDescriptor != null && queryDescriptor.getFilterCriteria() != null) {
                queryDescriptor.getFilterCriteria().clear();
                getOrdTable().queueEvent(new QueryEvent(getYourTable(), queryDescriptor));
    Try if this works for your requirement.
    Thanks

  • PetaPixel Article about the Recent Outage

    It doesn't give any indication of what the problem was, but has a lot of unhappy people.  Apparently some people lost the use of their CC apps during the outage.  I wonder if we'll ever get an explanation?  I'd appreciate links to other forum threads with any info?
    http://petapixel.com/2014/05/15/adobe-creative-cloud-is-down-rendering-apps-unusable/#disq us_thread

    gener7 wrote:
    What I found interesting in the adobecare topic on Twitter were more than a few wanting compensation for lost business. Even with free and permanent license software, isn't there a disclaimer that the maker is not responsible for lost business if something goes wrong?
    Wow, what a can of worms that would be.  In NZ you can't force a customer to sign away their rights under Consumer law.  That is to say, even if they sign a waver, the service provider still has a duty of care, and is libel if they fall short of providing it.  If it came right down to it, and enough people were inconvenienced to a high enough degree, and could demonstrate loss of earnings, I would bet Adobe would be in a whole lot of trouble regardless of whatever conditions of sale we agreed to when taking out a CC subscription.  One thing is for sure, and that's that we'll never see a comment on the issue from Adobe.
    Speaking of which, I had an email last week advising me that my discounted $20/month CC subscription was about to go up to $50/month.  I was kind of dreaming that the rather nice Photographers bundle deal might be reflected in a lower price for a full CC subscription, but it really was just a dream.    We need a Scott Kelby type champion for the non-PPS and LR CC apps methinks.
    Another thought is that a year up the subscription road, it's about time we saw another major update for Photoshop.  I wonder what goodies we have to look forward to?

  • Confused about the recent BT Infinity upgrades

    Hello, 
    I am a BT Infinity 2 customer. I received a mail about 20 days ago telling me that my speeds are going to be increased (up) to 76/19. 
    Now, I don't have any complaints about my current service as it is quite close to the original 38/9 but, nothing has been upgraded so far. Should I contact BT or is this just an upgrade that is going to happen sometime in the future?
    Note that the BT "speed checker" already claims that my line should be getting up to 76/19.
    Thanks in advance!
    Solved!
    Go to Solution.

    Hey John46, thank you for the update, this one seems to be working better!
    Here are my results :
    Best Effort test: 
     Download speedachieved during the test was - 37.56 Mbps
     For your connection, the acceptable range of speeds is 12 Mbps-0 Mbps.
     IP Profile for your line is - 38.72 Mbps
    Upstream test:
     Upload speed achieved during the test was - 8.17Mbps
     Additional Information:
     Upstream Rate IP profile on your line is - 10 Mbps

  • Af:setActionListener can not work fine in the af:iterator in ADF Faces RC

    Hi all,
    af:setActionListener can not work fine in the af:iterator/af:commandbutton. My code is as below:
    <af:iterator value="#{backing_Bean.testList}"   var="var" >
           <h:panelGrid columns="1">
          <af:commandButton icon="images/system/class.png"
                                              text="#{var.name}" >
             <af:setActionListener from="#{var.name}" to="#{backing_Bean.testText}"/>              
          </af:commandButton>
          </h:panelGrid>
    </af:iterator>The name [var.name] can be shown on the command buttoncorrectly, but when I click the button, the name can not be transferred to the testText in backing bean. why?
    Thanks
    Hart

    Hi,
    works for me. Not sure how you want to access to the value, but if the bean is in request scope then the values are only available during this period.
    Frank

  • Any concerns about the recent SDM v. 1.0 update's security?

    Hello,
    In reading the Permissions section I see that this update can, among other things:
    1. add or modify calendar events,
    2. end email's out without my knowledge,
    3. share content,
    4.modify my contacts
    5. etc,
    6. etc.
    To be honest, this spooks me a lot and I am wondering if all this kind of sharing has been going on on my S3 since I started loading contacts and using the calendar vice an old-school paper Day-Timer.
    I would appreciate an thoughts form the community...

    Friend just got the message that this update was available, he was not sure it was a legitimate update.  however we did some searching and found that the Verizon support web site specifically addresses this update, which put my friend at ease.  Verizon already know's all your business, I do not believe that this new update will change or increase that.

  • About the recent Adobe Flash security problem . . .

    Okay, Flash was trashed and I get along without, using Google instead of
    Safari when necessary. Still, a lot of sites do use Flash.
    Somewhere I got the idea that Adobe has fixed that problem. I'd like to reload Flash but on their site there's no mention of it and I don't see anything elsewhere, so please, what's the present situation?
    Fortes

    My Flash stopped working!
    Harden your Mac against malware attacks

  • ADF Faces open sourced

    Hi everybody,
    There are a lot a news on the Internet related to the Oracle donation of ADF Faces to Apache/My Faces. I was wondering if someone there could give us some precisions such as the ADF Faces (Cherokee?) availability (as an open source library) since it is a great news :)
    Thanks,
    Fabrice.

    Fabrice,
    basically the donated HTML components are work in progress and available in the Apache incubator website from where they will be made available later to MyFaces.
    See: http://www.jsfcentral.com/listings/A10470;jsessionid=1A6E290B6D7575D7391F83AC8AF41BC9?link
    and stay tuned
    Frank

  • Any recent articles about ADF Faces Next ?

    I didn't find any current links about this new version of ADF Faces which will be like Google Web Toolkit.
    Did anybody some new things about it?
    I found only one good link about this new stuff, but it is from year 2005:
    http://www.it-eye.nl/weblog/2005/07/20/jsf-ajax-adffacesnext

    Hi,
    we will provide articles as we get closer to the production or any pre-release state. Once we have the components out we will provide in depth examples and discussions.
    Frank

Maybe you are looking for

  • Music videos arent playng sound on ipod

    i got a music video on my ipod but now it isnt playing sound what do i do

  • How can i save my 1yr history ?

    I have firefox 15.1 on my Mac OSX 10.6 and i need to save the firefox history for 1yr because i will install new OS so i need to save the history, how can i do that?? Thanks

  • External Microphone problem not working.

    I am trying to get a Sony ECM-DS70P Condenser Stereo Microphone with a 3.5mm stereo male plug to work on my MacBook Pro with a Behringer UCA222 USB Audio Interface and I am having no joy at all. Summary of Problem The Microphone will not work when pl

  • Photoshop Failure

    I am having an issue with running Photoshop on my PC. I noticed others having this issue, and was hoping someone out there had new ideas how to make it work. Here's the issue: I have CC 2014, and a Sony Vaio PC (64bit processor). After installing Pho

  • I've tried everything--Firefox simply won't open. I opened the troubleshoot articles, but none of the fixes did the trick?

    Firefox will not open. I tried every single troubleshoot recommendation, and it still won't work. I thought it may be under the "corrupt profile data" troubleshoot article, but when I followed the recommendations to change to a new profile, the profi