Myfaces on JDeveloper 10.13 Early Access

Hello,
I´m using JDev 10.13 EA, and I have an application that is using myfaces, when I deploy it to Tomcat it works fine, but when I click Run on JDev for deploying it to OC4J it opens the browser, but don´t shows anything on the URL, no error message, and no page.
Does somebody have any idea about what can be the problem?
Thank you very much,

I had similiar problems too, but I finally managed to get a page up after fussing around with the includes. Make sure you have the following libs and tags in your project:
Included libs:
adf-faces-impl.jar
commons-beanutils.jar
commons-codec.jar
commons-collections.jar
commons-digester.jar
commons-el.jar
commons-fileupload.jar
commons-lang.jar
commons-loggin.jar
commons-validator.jar
myfaces-api.jar
myfaces-impl.jar
tomahawk.jar
Included Tag libs:
af.tld
afh.tld
myfaces_core.tld
myfaces_html.tld
myfaces_ext.tld
tomahawk.tld

Similar Messages

  • Oracle ADF Faces Components, Early Access Release 8 is now available

    Oracle ADF Faces is a rich set of user interface components based on the new JavaServer Faces JSR (JSR-127). Oracle has been actively involved in this JSR since its beginning. The Oracle ADF Faces Components provide various user-interface components with built-in functionality - such as data tables, hierarchical tables, and color and date pickers - that can be customized and re-used in your application.
    ADF Faces also includes many of the framework features most needed by JSF developers today:
    * File upload support is integrated at a component level.
    * Client-side validation is automatically derived from Validators and Converters for an improved user experience.
    * A pageFlow scope makes it easier to pass values from one page to another.
    * A new hybrid state saving strategy gives developers the best of both client and server-side state saving.
    ADF Faces ensures a consistent look and feel for your application, allowing you to focus more on user interface interaction rather than look and feel compliance. The components support multi-language and translation implementation as well as accessibility features. ADF Faces Components use Partial Page Rendering (PPR) offering superior runtime interactivity. PPR allow the browser to just render a piece of a page instead of the entire page.
    The intention with this early access release is to give developers/architects an opportunity to evaluate JSF and Oracle's JSF component offering.
    Oracle ADF Faces Components can be used in any IDE that support JSF, including Oracle JDeveloper 10g.
    Oracle ADF Faces Components, EA8

    Jonas,
    It works if I include the following:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    The source is now:
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA8" prefix="af"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <f:view>
    <af:outputText value="hello ADF Faces!"/>
    </f:view>
    </body>
    </html>
    Did I feel out something in my library entry?
    Thanks.

  • 11 Early Access version

    Hi ,
    Very nice First impression , When "Oracle" plans to release at least the Early Access of it , iam using JDeveloper 10.1.3.2 currently and i really suffer from the performance issue , so if it can be available soon then we might consider shifting ,
    Thanks
    Best Regards ,

    Hi,
    we don't have a date for a second preview yet. Note that we don't recommend building any production application using any JDeveloper non-production software (unless you have a written statement from Oracle that this is going to be okay) as we are not planning to provide a migration path from early access / or tech preview to production
    Frank

  • Creator Early Access SDK Level

    Hi
    I downloaded Sun Java Studio Creator 2 Early Access 2. Now I tried to set the source level to 1.5 to support tiger but it always go back to 1.4. Below is how I set the source level to JDK 1.5:
    I select the project and right click to select properties. I select Source from categories (left pane) and select 1.5 from the Source Level drop down in the bottom section of the right pane.
    However, it does not seems to accept that selection and the tool keeps defaulting to Source Level 1.4. And I still get error highlight for 1.5 code syntax support in my Java class.
    Any help to resolve this will be appreciated. Or is it that Sun Java Studio Creator 2 Early Access 2 does not support Source Level 1.5?
    Bisi

    You might want to post that to the Creator 2 EA forum instead of here.
    That forum is at: https://feedbackprograms.sun.com/login.html?ref=%2Fhome%2Ehtml%3F

  • Project Conventions for J2EE Apps Early Access...

    Hi
    I am trying to set up a standardized directory structure for J2EE apps that is flexible enough from a simple webapp to a complex J2EE App with multiple EJB components, WARs...etc..etc...
    For this, I turned to Java Blueprints Guidelines, Project Conventions for Enterprise Applications Early Access 1 posted on the Sun's web site...
    This document states among follwoing that (quote)
    -----(quote)
    These conventions, which the Java BluePrints team has followed with its applications (which can be accessed from http://java.sun.com/blueprints/code/index.html), assume that developers use the Ant tool for building projects. Developers using other build tools may have to make slight modifications to the conventions.
    ----(end quote)
    I have downloaded the latest J2EE SDk which has samples directory containing the famous , Adventure BUilder, Petstore, etc, etc.....But they do not follow project directory structure as outlined in this document...Moreover, I found each app has different project directory structure even for the same functional part..
    1. Are the J2EE sample apps bundeled with J2EE SDK different than the ones available as separate download?
    2. If they are not, where can I download sample apps that demonstrate project conventions outlined in the guidelines document...
    Any comments are welcome...
    Thanks
    zambak

    Hi,
    The project conventions are new and early access version1. So it will be changing a little bit and as a result the apps may get a little out of sync. We are currently switching the apps over to match with the project conventions. For an app that dempnstrates project conventions, please see the adventure builder on java.net at https://adventurebuilder.dev.java.net/
    We are working on a revised version of the project conventions, so your feedback/comments would be highly appreciated.
    -Smitha
    Hi
    I am trying to set up a standardized directory
    structure for J2EE apps that is flexible enough from a
    simple webapp to a complex J2EE App with multiple EJB
    components, WARs...etc..etc...
    For this, I turned to Java Blueprints Guidelines,
    Project Conventions for Enterprise Applications Early
    Access 1 posted on the Sun's web site...
    This document states among follwoing that (quote)
    -----(quote)
    These conventions, which the Java BluePrints team has
    followed with its applications (which can be accessed
    from http://java.sun.com/blueprints/code/index.html),
    assume that developers use the Ant tool for building
    projects. Developers using other build tools may have
    to make slight modifications to the conventions.
    ----(end quote)
    I have downloaded the latest J2EE SDk which has
    samples directory containing the famous , Adventure
    BUilder, Petstore, etc, etc.....But they do not
    follow project directory structure as outlined in this
    document...Moreover, I found each app has
    different project directory structure even for the
    same functional part..
    1. Are the J2EE sample apps bundeled with J2EE SDK
    different than the ones available as separate
    download?
    2. If they are not, where can I download sample apps
    that demonstrate project conventions outlined in the
    guidelines document...
    Any comments are welcome...
    Thanks
    zambak

  • [ANNOUNCEMENT] Hetman 1.0 Early Access  - powerful Java file manager

    SoftAge has launched the Early Access Program for Hetman 1.0.
    Handy Java desktop application Hetman is a dual-panel file manager for the huge Java community.
    Hetman is powered by Fusion framework (based on SWT), it has a decent responsive cross platform GUI and impressive overall performance.
    Tabbed rich design interface, native cross platform widgets implementation, powerful text editor, advanced console and much more make Hetman the indispensable and full-featured programmer�s tool.
    The following features are currently almost complete:
    - two panel file management UI
    - powerful incremental file navigation
    - built-in text editor with syntax highlight
    - advanced console
    - Windows networking support
    - Zip archives
    - FTP
    - Open API
    Planned features:
    - Linux and Mac OS X implementations
    - Enhancements for Java developers
    - just ask � and we'll do it :)
    The most important keys to start:
    Alt-F1, Alt-F2 � change drive
    Ctrl-T � open new file tab
    Ctrl-O � open new console
    F4 � edit file under cursor
    Ctrl-W � close tab
    <any symbol in file panel> � start incremental search
    Ctrl-F � start incremental search in editor and console output
    Alt-Up, Alt-Down � go to next/previous item in selection, search results etc.
    Alt-Left, Alt-Right � go to next/previous tab
    You can use Button Bar at the bottom to figure out the most important key combinations yourself. It automatically changes state according to current location and modifier key pressed (Ctrl, Alt, Ctrl+Alt),
    Hetman�s Open API has been designed to enable adding features easily and quickly. You can develop your own implementation of the file system that will be fully supported by Hetman.
    We are focused to bring Java applications to desktop. Hetman is our first attempt in this direction. We invite you to download EAP (Early Access Program) Hetman�s version for testing and evaluation. Your opinion is what matters most to us.
    You can read more about Hetman at http://www.myhetman.com.
    Early Acess Program page: http://www.myhetman.com/download/eap.html
    Should you have any questions or comments, please don�t hesitate to contact us at [email protected].
    Best regards,
    Hetman Team

    You know, I think I'll make it a personal policy to never look at anything that someone dumps an ad for in the formums.

  • Updates to solaris 8 x86 early access?

    I have finally updated my solaris 7 to solaris 8 and I am unable
    to find any updates on the net. I have the early access version from
    November, 99 and its causing me some pain (a lot more pain than
    solaris 7).
    There doesn't seem to be a recommended patch cluster, but I have to
    believe there have been many changes since November.
    Any pointers would be helpfull.

    The final product is available since march 2000. There's also a
    june 2000 release now. The media costs 75$, the licence to run it
    on as many systems as you like is free (for systems with <= 8 cpus).
    http://www.sun.com/software/solaris/binaries/
    It's true that there's no (public) recommended patch cluster for
    solaris 8, although there are patches for solaris 8. It seems
    as if the patch process for solaris 8 is somewhat broken: patch
    reports are not updated since april, required patches for some
    products not available, like http://java.sun.com/j2se/1.3/install-solaris-patches.html#2.8,
    etc...

  • JDK 8u40 Early Access Release - Build b12 - java.util.MissingResourceException

    Hi guys,
    we are developing a Java Web Start application which uses SOAP services and we get the following exception if we try to start our application with the current JDK 8u40 Early Access Release.
    java.lang.ExceptionInInitializerError
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
      at java.lang.reflect.Constructor.newInstance(Unknown Source)
      at java.lang.Class.newInstance(Unknown Source)
      at javax.xml.soap.FactoryFinder.newInstance(Unknown Source)
      at javax.xml.soap.FactoryFinder.find(Unknown Source)
      at javax.xml.soap.FactoryFinder.find(Unknown Source)
      at javax.xml.soap.SAAJMetaFactory.getInstance(Unknown Source)
      at javax.xml.soap.MessageFactory.newInstance(Unknown Source)
      at com.sun.xml.internal.ws.api.SOAPVersion.<init>(Unknown Source)
      at com.sun.xml.internal.ws.api.SOAPVersion.<clinit>(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseBinding(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseImport(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseImport(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.parseWSDL(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.spi.ProviderImpl.createServiceDelegate(Unknown Source)
      at javax.xml.ws.Service.<init>(Unknown Source)
    Caused by: java.util.MissingResourceException: Can't find com.sun.xml.internal.messaging.saaj.soap.LocalStrings bundle
      at java.util.logging.Logger.setupResourceInfo(Unknown Source)
      at java.util.logging.Logger.<init>(Unknown Source)
      at java.util.logging.LogManager$SystemLoggerContext.demandLogger(Unknown Source)
      at java.util.logging.LogManager.demandSystemLogger(Unknown Source)
      at java.util.logging.Logger.demandLogger(Unknown Source)
      at java.util.logging.Logger.getLogger(Unknown Source)
      at com.sun.xml.internal.messaging.saaj.soap.SAAJMetaFactoryImpl.<clinit>(Unknown Source)
      ... 45 more
    As you can see, the exception will be thrown when we try to initialize our Service class which uses the Service(java.net.URL paramURL, javax.xml.namespace.QName paramQName) constructor of the javax.xml.ws.Service class.
    The problem exists only in case of Java Web Start and since Java 8u40. The exception will not be thrown if I start our application in eclipse.
    Is this a known bug? I haven't found a related bug in the bug-database.
    Thanks in advance!
    Best Regards Steve

    Am I the only one with that problem?

  • Kodo 4.0.0 Early Access 1 Now Available

    Kodo 4 Early Access 1 is now available at
    http://solarmetric.com/kodo/beta/4.0.0EA1/ . You can find release notes
    at
    http://solarmetric.com/kodo/Documentation/4.0.0EA1/docs/full/html/relnotes.html
    Kodo 4 EA1 includes support for the majority of the JDO2 and EJB3
    specifications, and introduces some new mapping capabilities that
    simplify the development of efficient mappings.
    As the name implies, this release is an early access release. As such,
    many parts of the release are not yet implemented, including Kodo's IDE
    integration support. Additionally, this release provides roughly zero
    backwards-compatibility with the 3.x Kodo interfaces. Future Kodo 4
    releases will provide backwards-compatibility with the relevant Kodo 3 APIs.
    Thanks,
    Neelan Choksi
    SolarMetric
    [email protected]
    202-595-2064 (main)
    512-542-9707 (direct)
    Vote for Kodo JDO as the Best DB Tool or Driver (Category 2), the Best Java
    Data Access Tool (Category 7), and the Best Java Persistence Architecture
    (Category 11) in the JDJ Readers Choice Awards at
    http://jdj.sys-con.com/general/readerschoice.htm.

    Patrick Linskey wrote:
    Kodo 4 Early Access 1 is now available at
    http://solarmetric.com/kodo/beta/4.0.0EA1/ . You can find release notes
    at
    http://solarmetric.com/kodo/Documentation/4.0.0EA1/docs/full/html/relnotes.html
    Kodo 4 EA1 includes support for the majority of the JDO2 and EJB3
    specifications, and introduces some new mapping capabilities that
    simplify the development of efficient mappings.
    As the name implies, this release is an early access release. As such,
    many parts of the release are not yet implemented, including Kodo's IDE
    integration support. Additionally, this release provides roughly zero
    backwards-compatibility with the 3.x Kodo interfaces. Future Kodo 4
    releases will provide backwards-compatibility with the relevant Kodo 3
    APIs.
    -PatrickWill there be a one-page html doku soon ?
    I'd like to read all the pages on a printout rather than on monitor

  • Early Access Tutorial

    I install JCreator to evaluate. I want to use the following sample from the tutorial website
    Java Studio Creator 2 � Early Access
    Tutorials & Sample Applications :
    Single Page Database Create, Update, and Delete
    But the readme install instruction are not working. I unzip the sample to a direcotory C:\Jcreatorsample
    But how do I get JCreator to load the project.

    Hi,
    Please post messages related to Creator 2 EA at the feedbacks programs portal. The URL is:
    https://feedbackprograms.sun.com/login.html
    Thanks,
    Creator Team

  • Early Access Program Ends Successfully

    As a follow-up to John's previous posting ...
    The Sun Java Studio Creator 2 Early Access Program ends with the multilanguage release of the IDE. Longer than a typical EA program, it was joined by over 21,500 enthusiastic developers who posted over 3000 discussion messages and contributed hundreds of bug reports and enhancement requests. Early Access participants can still login and access the EA Discussion at
    https://feedbackprograms.sun.com/login.html.
    Motivated by the high level of participation, Sun engineers took the time to craft a solid IDE that gave users what they asked for. To get Java Studio Creator 2 now, click the Downloads tab at http://developers.sun.com/jscreator/, or go directly to
    http://developers.sun.com/prodtech/javatools/jscreator/downloads/.
    To migrate Early Access applications for further development with the new release of the IDE, see the FAQ "How can I migrate to Java Studio Creator 2 applications developed with earlier versions of the IDE?" at
    http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/configuration/jsc2_migration.html.
    If you'd like to share some kind words about your experience with the Early Access release of Java Studio Creator 2, we'd love to hear from you. Just post your remarks to this forum thread.
    Thank you!

    -

  • Early Access support

    What kind of support is available for users of the Creator Early Access?

    There are a couple of ways for developers using the Java Studio Creator Early Access software to get help. To report a problem, please use the Bug Report and Feature Request Form at:
    http://developers.sun.com/prodtech/javatools/jscreator/bugreport.jsp
    Another option is to use this community forum to ask technical questions.
    For more information, please visit the Java Studio Creator Early Access Support Page: http://developers.sun.com/prodtech/javatools/jscreator/support.jsp

  • ADF early access + portlets

    Hi,
    I downloaded the early access release with excitement and have been trying to get it working within a portlet. I am the lead developer of GridSphere www.gridsphere.org, a JSR 168 compliant container.
    A few weeks ago, the Sun JSF RI was fixed and includes a FacesPortlet as well as a "guess number" example which I have working now--
    I tried the same magic by taking the ADF ea and repackaging the web.xml file but it does not seem to work. I'm getting the following stack trace:
    java.lang.NullPointerException at com.sun.faces.portlet.ExternalContextImpl.dispatch(ExternalContextImpl.java:113) at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130) at com.sun.faces.portlet.ViewHandlerImpl.renderView(ViewHandlerImpl.java:122) at oracle.adfimpl.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:100) at com.sun.faces.portlet.LifecycleImpl$RenderResponsePhase.execute(LifecycleImpl.java:543) at com.sun.faces.portlet.LifecycleImpl.phase(LifecycleImpl.java:249) at com.sun.faces.portlet.LifecycleImpl.render(LifecycleImpl.java:191) at com.sun.faces.portlet.FacesPortlet.render(FacesPortlet.java:270) at
    I would like to work with a UIX developer to get this working, it shouldn't be too hard-- I can send you the JSF portlet sample WAR to look at it if it would help....
    Thanks, Jason

    Hi
    I've been trying to find info on how to create an ADF/UIX portlet - no luck so far.
    Could you let me know if you have any examples etc.
    Cheers
    Ian

  • Premium Members:Get Early Access to the SL12B Commemorative Avatar at a Tiki-tastic Party!

    Second Life’s 12th birthday is fast approaching and we’re kicking things off with a special treat for Premium members. There will be more fun for all members to enjoy throughout the month - so stay tuned to this blog for the details as we all celebrate a dozen years of Second Life.
    Splish Splash - it’s a Tiki Beach Bash!
    Premium members - this one is just for you, so be sure to save the date! We’ve lit the tiki torches and brushed up on our fruity drink-mixing skills to host a casual gathering with the added bonus of early access to our Official Second Life 12th Birthday commemorative avatar.
    That’s right - come to the SL12B Premium Meetup on Thursday June 11th from 10:30 to 11:30 AM SLT, hang out with us, and be one of the first to glimpse and grab the celebratory 12th anniversary avatar. The nature of this particular avatar required us to select a remote island for our gathering as well as implement a strict quarantine on the subject, so you’re going to have to drop by our tropical jungle destination to find out what it is.
    While we hope you can make it to the meetup, we understand that schedules, timezones, and such make it impossible for everyone to make every meetup. With this in mind, the avatar kiosk will be available until midnight SLT on June 12th for you to stop by and pick up your prerelease avatar. That means, even if you can’t come to the Tiki party, you can still get early access to the avatar.
    So, get ready to slip into your flip flops and gigantic floppy hat and join us for some fun in the sun at this Premium exclusive inworld meetup - honest to goodness, it should be the ginchiest!
    SL12B Premium Meetup
    Join the party! You're invited to a Tiki Beach Bash, just for Premium members! Join us inworld from 10:30-11:30 a.m. (SLT) on Thursday, June 11. You'll get early access to a free SL12B avatar, too! Be sure to claim it before 11:59 p.m. on the 12th or you’ll have to wait until it’s available for everyone.
    Visit in Second Life

    Hello Mdolla650,
    The official release date for The Sims 4 is 9/2/14. We are currently working to update BestBuy.com to reflect that date and hope to have that up soon.
    Thanks for posting!
    Matt|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • JDevloper 10g Early Access 10.1.3.0.3

    I worked in JDevloper 10g Early Access 10.1.3.0.3 but I don’t found any full example display the toplink else one but also is not complete Please help me about the toplink, I noticed that when I save the database as object then add, modify or delete the original DB the object will Automatically will be change, this is true or not….

    Thnak you but
    Drag the findAllLocations() - Locations data control to the start facet and Select Trees - ADF Tree in the pop-up menu. will appear but the next step will not execute
    please help me

Maybe you are looking for

  • Problem in SQL Server 2000 Driver for Java Database Connectivity

    Hi, I have problem with MS SQL 2000 JDBC driver. I am using Type-4 driver for my application. I can able to connect through DSN. If I use Type-4 Driver to connect database means it gives the following exception. java.sql.SQLException: [Microsoft][SQL

  • Unable to launch File sync and to update Adobe Exchange panel in Illustrator CC 2014

    I suppose that these two problems might be related, as I need the file sync to sync the extensions? Anyway, I'm unable to launch a file sync, and when I update the Adobe Exchange panel in Illustrator, it asks for a reboot, and after the reboot, it as

  • On maverick 10.9.4 adobe indesign cc 2014 crash at open

    i make every thing Sandee Cohen say in her comunication but my indesign cc still crash and the installation destroy my adobe creative suite CS6 that lives in my another macosx 10.6.8 partition,  Adobe CC begins to drive me crazy. i restore my 10.6.8

  • Flex language questions should go in the General Discussion Forum

    This forum is intended for Flex Builder questions. Of course you can post wherever you like, but if you want help, go where the helpers are. Tracy

  • Graph Legend

    It must be me, it must be because this is fundemental in an graphing application. Across the top row of data I have what I would expect to appear as the legend. In this case 2006, 2007 and 2008 Down the first column the months, jan feb etc And in the