Bug: JDev 9052 Build (1618) html:img ... /

The XSS <style selector=...> is not honored in conjunction with the <html:img> tag.
1. Create an xss style:
<style selector=".handIconGroup">
<property name="cursor">hand</property>
<includeStyle name="DarkAccentBackground"/>
</style>
2. Create a UIX page and add the following widgets:
a. <html:img style="handIconGroup" ... />
b. <textInput sytle=handIconGroup" ... />
4. Run the page, and hover over both widgets.
I expected the cursor to turn into a "hand" when hovered over both widgets. The <html:img ... /> tag dose not respect the handIconGroup style.

Typo:
<textInput sytle="handIconGroup" ... />
should read
<textInput styleClass="handIconGroup" ... />

Similar Messages

  • Bug: JDev 9052 Build (1618)

    Start by placing an invalid attribute within one the your tags.
    1. Right click within a UIX file.
    2. Click Validate XML
    3. Click on the error.
    It takes you to the top of the page. I expected to go to the line with the error on it.

    Typo:
    <textInput sytle="handIconGroup" ... />
    should read
    <textInput styleClass="handIconGroup" ... />

  • Password protected JDev10g 9052 build 1618

    I downloaded the jdev9052.zip file from otn yesterday since I like to keep up to date on my development tools.
    When I unpacked it today, I was presented with the message that several files were password protected. What's up with that?
    The files are:
    * javaw.exe
    * hpi.dll
    * ioser12.dll
    * java.dll
    * net.dll
    * jvm.dll
    * verify.dll
    * zip.dll
    Can somebody PLEASE direct me to a passphrase I can use to unpack these files.
    And might I add; If this is a stunt from Oracle to increase the purchase level of it's products, it might be usefull to provide information on this before people start downloading what they think is a fully operational product.

    One impact of extracting on top of an old version of the product is that any extensions you had for the old version will continue to be loaded in the new version. Because the extension API has changed, these may fail at runtime in unexpected ways. Basically, files don't get deleted that have been removed in the new release.
    This of course brings up the old debate about whether JDev should have an installer... with an installer, you wouldn't have to worry about this (it would be the job of the installer to worry about it).
    That said, a lot of people really like the simple zip-and-go approach JDev takes to installation. Just always zip-and-go somewhere fresh... that's the tested and supported configuration, and we've had a few reports of problems when customers have extracted atop old releases.
    Thanks,
    Brian

  • Migrating application from Jdev 9052 to Jdev1012

    Hi,
    I've an application fully developed under Jdev9052, I've migrate it under Jdev1012 but don't run correctly like in the other develop environment. Is possible to have documentation about the difference between both environment? is possible that the new JDev don't support entirely the properties of old version?
    I'm attempt to remain in the old JDev but I'm afraid that in the future this will not supported by Oracle
    thanks
    Francesca Brucciani

    Hi,
    my application was developed in Jdev9052 but migrating it in Jdev1012 I’ve meet problems.
    reading the document “http://www.oracle.com/technology/products/jdev/htdocs/10.1.2.0.0/readme.html“ migration section, I noted that the problems in my applications are because of the new ADF iterator bindings.
    Implementing the AddCriteria function (see bc4j properties) in the Search, adding more than one criteria row, I’ve meet this problem:
    In my jsp, during the search fase, if I want to add a criteria row, I need to replicate the attribute fields for my View Object, then I need to name the fields for example with “row_index_nameField”, so that when I add a criteria row I have to increase the index (ex: the first row will have all the fields with name will be row_1_nameFieldA, row_1_nameFieldB…, the second row will have all the fields wich name will be row_2_nameFieldA, row_2_nameFieldB).
    For this reason my jsp will have this code:
    <c:set var="indexRow" value="1" />
    <c:forEach items=" ${bindings.ViewObject1.rangeSet} " var="Row">
    <tr>
    <th> <c:out value="${bindings. ViewObject1.labels['FieldCode']}"/> </th>
    <td> <input type="text" name="row_<c:out value='${indexRow}' />_FieldCode" value='<c:out value="${Row['FieldCode']}"/>' /></td>
    </tr>
    <tr>
    <th> <c:out value="${bindings. ViewObject1.labels[FieldDesc]}"/> </th>
    <td> <input type="text" name="row_<c:out value='${indexRow}' />_FiledDesc" value='<c:out value="${Row[FieldDesc]}"/>' /></td>
    </tr>
    <c:set var=" indexRow" value="${indexRow + 1}" />
    </c:forEach>
    and my java class is:
    (searching the rows by “String stmtHTMLAttr = "row" + i + "_" + attrDefs[indAttr].getName();”)
    public void onAddCriteria(DataActionContext ctx){
    HttpServletRequest request = ctx.getHttpServletRequest();
    DCIteratorBinding iterBind = ctx.getBindingContainer().findIteratorBinding(this.iteratorName);
    ViewCriteria vc = iterBind.getViewCriteria();
    int countVCRow = vc.size();
    if (countVCRow > 0)vc.clear();
    int indexRow = 0;
    if (countVCRow > 0){
    for (int i = 0; i < countVCRow; i++) {
    Row vcRow = vc.createViewCriteriaRow();
    boolean isPresentCondition = false;
    AttributeDef[] attrDefs = iterBind.getAttributeDefs();
    for (int indAttr = 0; indAttr < attrDefs.length; indAttr++) {
    String stmtHTMLAttr = "row" + i + "_" + attrDefs[indAttr].getName();
    if (request.getParameter(stmtHTMLAttr)!= null){
    String valParam = request.getParameter(stmtHTMLAttr).trim();
    if (!"".equals(valParam)){
    vcRow.setAttribute(attrDefs[indAttr].getName(), valParam);
    isPresentCondition = true;
    if (isPresentCondition){vc.add(vcRow);}
    Row vcRow = vc.createViewCriteriaRow();
    vc.add(vcRow);
    iterBind.getViewObject().applyViewCriteria(vc);
    public void onSubmit(DataActionContext ctx) {
    DCIteratorBinding iterB = ctx.getBindingContainer().findIteratorBinding(iteratorName);
    HttpServletRequest request = ctx.getHttpServletRequest();
    ViewCriteria vc = iterB.getViewCriteria();
    int countVCRow = vc.size();
    if (countVCRow > 0)vc.clear();
    int indexRow = 0;
    if (countVCRow > 0){     
    for (int i = 0; i < countVCRow; i++) {
    Row vcRow = vc.createViewCriteriaRow();
    boolean isPresentCondition = false;
    AttributeDef[] attrDefs = iterB.getAttributeDefs();
    for (int indAttr = 0; indAttr < attrDefs.length; indAttr++) {
    String stmtHTMLAttr = "row" + i + "_" + attrDefs[indAttr].getName();
    if (request.getParameter(stmtHTMLAttr)!= null){
    String valParam = request.getParameter(stmtHTMLAttr).trim();
    if (!"".equals(valParam)){
    vcRow.setAttribute(attrDefs[indAttr].getName(), valParam);
    isPresentCondition = true;
    if (!((!isPresentCondition)&&(countVCRow>1))) {vc.add(vcRow);}
    iterB.getViewObject().applyViewCriteria(vc);
    iterB.executeQuery();
    this application works correctly in Jdev 9052.
    problems meet in jdev1012:
    -During the Search phase:
    1. the first time the fields are empty (work ok in both version of Jdev)
    2. the next searches, in Jdev 9052 the fields contained the previous search criteria inserted (work ok), in Jdev 1012 contained the value of the first row of the rowset found in the previuos search(work ko).
    -When add a criteria row, the first row have the value of the first row of the rowset found in the previous serach and don’t add a new empty row to add the new criteria condition
    - closing the windows and reopen it, during the search phase the foreach of the jsp results empty, because the rangeSet is null!
    how can I change my application for to run it in JDev 1012?
    thanks
    Francesca Brucciani

  • Column with bug when exporting photos to html

    When I select, say, 20 photos and choose file/ export to html document, the default number of
    photos (Columns) per row is three. If I change it to five, the html document keeps a 33% column width
    instead of changing it to 20%. This did not happen in an my older version. Is this a bug that could be corrected in the next update?
    My actual version is iphoto- '08 7.1.4 (371)

    Welcome to the Apple Discussions. Change the thumbnail size and that should get you to a narrower column. I find the build in HTML page builder to be clumsy to use with the thumbnail size always reverting back to the 240 size. Changing the thumbnail size will let you adjust the column width.
    Have you tired the free iPhoto plugins, Flash Album Exporter or SimpleViewer which create flash based galleries and slideshows? They are a lot nicer than the build in web page builder in iPhoto. Or iWeb?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Error: java.lang.NoClassDefFoundError in Jdeveloper 9.0.5.2.(Build 1618)

    Error: java.lang.NoClassDefFoundError org.apache.struts.taglib.BaseHandlerTag
    Hi,
    We are using Jdeveloper10g version 9.0.5.2(Build 1618) as our IDE. We have a struts based controller architecture in our project. So we frequently use struts tags in our jsp pages. The application is working fine but sometimes when i do some changes in one of or a number of the jsp files in Jdeveloper , after recompiling i get the above error in number of jsps though i haven't touched those jsps at all.
    I found a work around for this problem by just shutting down the Jdeveloper and again starting it.
    It gives such kind of errors for only stuts based tag containing jsps.
    Do anybody has any solution for this persistent problem.
    My whole team is facing this problem.
    With Warm Regards,
    Datta.

    No anyone knows?

  • Content Server pcs:html:img tag

    I am attempting to create custom news article presentation & data entry templates. The data entry template includes a text field where the user would specify the filename of an image that will be included in the presentation of the news article. I am having trouble with syntax for the filename property in the presentation image. I found an example the looks like this
    <pcs:html:img expr:src="itemByPath('images/logo.gif').location" attr:border="0" attr:align="absmiddle" style="UNARY" ></pcs:html:img>
    This works great, however I need to use the filename property something like this
    <pcs:html:img expr:src="itemByPath('images/<pcs:value expr="imageName"></pcs:value>').location" attr:border="0" attr:align="absmiddle" style="UNARY" ></pcs:html:img>
    Any suggestion on how to do this is greatly appreciated!

    Hi!
    I get the same error. I think it is a class loading problem. I noticed that both pdkjava.jar and pdkstruts.jar contains the class oracle.webdb.provider.v2.struts.StrutsUtils, but only pdkstruts.jar implements the method isPortalRequest(). The classloader has obviously loaded the other version of the class already.
    Both jar files is in the WEB-INF\lib directory of my war file. Has anyone else found a solution to this problem?

  • How to set value for html:img

    i am using <html:img tag to render image and i need to set some value to that image when selected and that value need to be checked in java code.
    How i can set the value for that image.
    Thanks,

    use javascript and hidden input to do this:
    <html:img src="your_img.gif"     ononclick="document.getElementById('your_hidden_input_id').value='your_value' ">
    <input type="hidden" name="your_hidden_input_name" id = "your_hidden_input_id" value="" />Hope that Helps

  • Jdev-drop5 build 29- webservice wizard (WSDL to JAVA)

    Hello folks,
    We have have encountered a situation with Jdeveloper – webservices wizard.
    This happens when we try to generate the java classes from the wsdl and schemas
    To generate the javaTypes from the xsd we use the JDEV wizard.
    Here’s what we see:
    EquipmentType.java is supposed to be generated by the wizard from EquipmentType.xsd (schema) when it processes the
    wsdl, which has an operation with parameters pertaining to EquipmentType
    1. With JDEV TP4, it works fine. The java types are generated with no issues.
    2. Om using JDEV – Drop5 (Build 26 and Build 29)
    The java types are not generated and the wizard errors of saying that ‘EquipmentType.java’
    does not exist, when actually it is supposed to generate this file.
    Please help.
    thanks
    -Prashant

    Prashant,
    As you are obviously an oracle employee using oracle internal builds, it seems you should ask this in an internal forum.
    None of us in the "wild" have access to drop5 - at any rate, check Frank's reply on the other place you crossposted this to.
    John

  • Jdeveloper(9.0.5.2 build 1618 )connect standalone OC4J server error

    Using Jdeveloper(Version: 9.0.5.2 build 1618 )connect to standalone OC4J server(Version:pdk_oc4j_extended 9.0.4.0.0 download from OTN) , test success , but connect occur following errors :
    java.lang.NullPointerException     at
    oracle.jdevimpl.cm.dt.ConnectionController$ConnectionExpander.selectConnection(ConnectionController.java:547)
    at
    oracle.jdevimpl.cm.dt.ConnectionController$ConnectionExpander.access$1000071(ConnectionController.java:514)
    at
    oracle.jdevimpl.cm.dt.ConnectionController.runNewConnectionDialog(ConnectionController.java:508)     
    at oracle.jdevimpl.cm.dt.ConnectionController.runNewConnectionDialog(ConnectionController.java:484)     
    at oracle.jdevimpl.cm.dt.NewAppServerConnectionWizard.invoke(NewAppServerConnectionWizard.java:71)     
    at oracle.ide.WizardManager.invokeWizard(WizardManager.java:484)     at
    oracle.ide.WizardManager$1.run(WizardManager.java:538)     at
    java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)     at
    java.awt.EventQueue.dispatchEvent(EventQueue.java:454)     at
    java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)     at
    java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)     at
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)     at
    java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)     at
    java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    No anyone knows?

  • JDev 10g build 1811 Bug

    I follow viewlet whitch provided from oracle ADF.
    But I cann't make Business Components Diagram with this Error. My OS is Window XP and I use JDev full version.
    java.lang.NoClassDefFoundError: oracle.bm.uml.metamodel.MMModelElement
         at oracle.bm.addinUtil.ModelWizard.buildAndTestUrl(ModelWizard.java:272)
         at oracle.bm.addinUtil.ModelWizard.invoke(ModelWizard.java:458)
         at oracle.ide.WizardManager.invokeWizard(WizardManager.java:484)
         at oracle.ide.WizardManager$1.run(WizardManager.java:538)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

    Hi Larry,
    Thanks a lot for bringing to our notice. I will test it and report it to appropriate team, so that it gets fixed.
    Regards,
    Vijay Venkataraman

  • Error #1037 Bug Report, Flash Builder 4.6

    I tried reporting this bug through the proper channels, but the link on the page at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform for filing Flash Builder bugs is not working.  The page it links to is "taking too long to respond".
    I'm using Flash Builder 4.6, and I'm getting error #1037.  According to the documentation at http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/runtimeErrors.html, this isn't something that should be happening, and when the programmer doesn't believe the swf has been corrupted, Adobe has requested that they report it.  Even though I feel something like this always justifies the word "corrupted", I don't believe it's been corrupted in this strict of a sense; I'm just building the swf in Flash Builder.  The project itself is fairly simple and doesn't have any out-of-the way configurations.
    Take the following line of code in the start class:
    m_com.onBWDone = rnd.handleBWDoneResults;
    the following code in m_com's class:
    private var m_fOnBWDone:Function;
    public function set onBWDone(pValue:Function):void
        m_fOnBWDone = pValue;
    and the following code in rnd's class:
    public function handleBWDoneResults(... pRest):void
    The line of code in the starting class is what's throwing the error.  If I comment that line of code out, the error goes away.  If I simply make m_fOnBWDone a public variable, delete the setter, and set the variable's value directly in the starting class, that works too.  But if I try to make it private and then use a trivial public property to set it like that, the error is raised.
    @Adobe Please fix this.  Thanks.

    The docs say it could be a few things, just one of which is the corrupt portion.
    You shouldn't have a method and property with the same name either. In any get/set situation for a private value your private value is typically prefaced just to avoid the collision with the public get/set. For the same reason, colliding, methods and properties should be unique and I am also confused as to how it compiled (although FB just warns you there's an issue and still allows you to proceed).
    What you're doing there appears to be highly dynamic, so I really can't say what kind of method names you're assigning with pValue. Nor can the compiler until you send 2 different functions with the same name there and it errors on you. Only you know what functions are being assigned in there, or what you do with it after that.

  • BUG: Jdev 11.1.1.0.0 -- DB table data export column order is not preserved

    Hello,
    I've ran into a problem with Jdeveloper 11g, public release, Build JDEVADF_MAIN.BOXER_GENERIC_081002.2127.5156. Oracle IDE version is 11.1.1.0.31.51.56
    When I connect to Oracle database, get the table list, right click on the table and select 'Export Data'->csv. The dialog box opens with three tabs: Format, Columns, Where. The column order displayed in both tabs Columns and Where is alphabetic. Because alphabetic ordering re-arranges columns from their initial ordering in the table, this screws up the export because columns are not in their intended order. This same problem occurs when I try to export data from views to generate a CSV file with a particular column order for our vendor. Since Jdev scrambles the column order I have to rely on SQLdeveloper to generate CSV exports, since SQLdeveloper has the same functionality but it preserves the column order.
    It would be nice if Jdeveloper preserved the column order on export.
    Thanks!

    Update:
    This bug is now also present in the SQL Developer 1.5.3.
    I've posted a bug report on the appropriate forum: BUG: SQL Developer 1.5.3 CSV export column order broken

  • Error while runtime customization for task flows in jdev drop6 build 11

    Hi,
    I am using jdev drop 6 build 11. I am trying to build a webcenter application in which I want to drag and drop task flows at runtime. I am able to add the ADF components at runtime. I am also able to expose the task flow at runtime on the UI after creating my own catalog. But if I try to add the task flow by dragging it, it gives an unhandled exception and it shows that no metadata found for metadata object for the task flow. And after this error I am not able to add the ADF components as well. It gives the same error. This is the error I get:
    oracle.adf.controller.ControllerException: ADFC-06002: Unhandled exception.
         at oracle.adfinternal.controller.util.Utils.createAndLogControllerException(Utils.java:193)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.handleException(ControlFlowEngine.java:588)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.invokeTaskFlow(ControlFlowEngine.java:181)
         at oracle.adfinternal.controller.state.ChildViewPortContextImpl.invokeTaskFlow(ChildViewPortContextImpl.java:63)
         at oracle.adfinternal.controller.state.ControllerState.createChildViewPort(ControllerState.java:1236)
         at oracle.adfinternal.controller.ControllerContextImpl.createChildViewPort(ControllerContextImpl.java:69)
         at oracle.adf.controller.internal.binding.DCTaskFlowBinding.createRegionViewPortContext(DCTaskFlowBinding.java:255)
         at oracle.adf.controller.internal.binding.DCTaskFlowBinding.getViewPort(DCTaskFlowBinding.java:198)
         at oracle.adf.controller.internal.binding.TaskFlowRegionModel.doProcessBeginRegion(TaskFlowRegionModel.java:127)
         at oracle.adf.controller.internal.binding.TaskFlowRegionModel.processBeginRegion(TaskFlowRegionModel.java:87)
         at oracle.adf.view.rich.component.fragment.UIXRegion$RegionContextChange.doChangeImpl(UIXRegion.java:1006)
         at oracle.adf.view.rich.context.DoableContextChange.doChange(DoableContextChange.java:91)
         at oracle.adf.view.rich.component.fragment.UIXRegion._beginInterruptibleRegion(UIXRegion.java:707)
         at oracle.adf.view.rich.component.fragment.UIXRegion.processRegion(UIXRegion.java:454)
         at oracle.adfinternal.view.faces.taglib.region.RegionTag.doStartTag(RegionTag.java:120)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:50)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspIterationTagNode.executeHandler(OracleJspIterationTagNode.java:45)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:261)
         at oracle.jsp.runtime.tree.OracleJspNode.execute(OracleJspNode.java:76)
         at oracle.jsp.runtimev2.ShortCutServlet._jspService(ShortCutServlet.java:77)
         at com.orionserver[Oracle Containers for J2EE 11g (11.1.1.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:758)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:441)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:706)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:627)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:116)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:432)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:309)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:450)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:351)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:257)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:174)
         at oracle.oc4j.security.OC4JPrivilegedAction.run(OC4JPrivilegedAction.java:41)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.oc4j.security.OC4JSecurity.internalDoPrivileged(OC4JSecurity.java:374)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:389)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.OC4JRequestDispatcher.executeAction(OC4JRequestDispatcher.java:161)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:178)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:415)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:475)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:143)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:188)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:652)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:243)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:203)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:185)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:278)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:87)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:278)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:238)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:195)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:138)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:116)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:432)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:309)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:450)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:351)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:977)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:878)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:676)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:644)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:436)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:185)
         at com.evermind[Oracle Containers for J2EE 11g (11.1.1.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:153)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:276)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.adf.controller.ControllerException: ADFC-02001: ADF Controller cannot find '/WEB-INF/one_task-flow-definition.xml'.
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.getMetadataObjects(MdsMetadataResourceProvider.java:448)
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.loadUnmutalbeMetadataResources(MdsMetadataResourceProvider.java:358)
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.getResources(MdsMetadataResourceProvider.java:170)
         at oracle.adf.controller.internal.metadata.MetadataService.getTaskFlowDefinition(MetadataService.java:214)
         at oracle.adfinternal.controller.activity.TaskFlowCallActivityLogic.findTaskFlowDefinition(TaskFlowCallActivityLogic.java:928)
         at oracle.adfinternal.controller.activity.TaskFlowCallActivityLogic.invokeTaskFlow(TaskFlowCallActivityLogic.java:180)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.invokeTaskFlow(ControlFlowEngine.java:161)
         ... 107 more
    Caused by: oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/WEB-INF/one_task-flow-definition.xml"
         at oracle.mds.core.MetadataObject.getBaseMOFromCache(MetadataObject.java:1567)
         at oracle.mds.core.MetadataObject.getBaseMO(MetadataObject.java:898)
         at oracle.mds.core.MDSSession.getBaseMO(MDSSession.java:2361)
         at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1025)
         at oracle.mds.core.MOResolver.getMetadataObjects(MOResolver.java:185)
         at oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider.getMetadataObjects(MdsMetadataResourceProvider.java:402)
         ... 113 more
    Any information on this?
    Thanks for the help in advance.

    This isn't really the appropriate forum for ADF questions. You should have better luck with the JDev forum:
    JDeveloper and ADF

  • Bug jdev 10.1.3 production: sequences showing up as tables

    Hello,
    A bug I have found: when I generate a script to create database objects (tables & sequences) and choose in the wizard to execute against the DB connection, the sequences are showing up under the "tables" folder in the connection browser (Oracle DB). After I disconnect and re-browse, they are in the correct "sequences" folder.
    Regards,
    John

    Hi John,
    Could you provide more detailed steps to reproduce?
    Thanks,
    Lisa
    JDev QA

Maybe you are looking for